Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
Public Member Functions | |
void | JavaScriptWindowObjectCleared () |
| |
void | ProvisionalLoad () |
void | TitleChanged (string title) |
| |
void | UrlChanged (QUrl url) |
| |
void | InitialLayoutCompleted () |
| |
void | IconChanged () |
| |
void | ContentsSizeChanged (QSize size) |
| |
void | LoadStarted () |
| |
void | LoadFinished (bool ok) |
| |
void | PageChanged () |
| |
Public Member Functions inherited from QtCore.IQObjectSignals | |
void | Destroyed (QObject arg1) |
void | Destroyed () |
| |
void QtWebKit.IQWebFrameSignals.ContentsSizeChanged | ( | QSize | size | ) |
This signal is emitted when the frame's contents size changes to size.
This function was introduced in Qt 4.6.
See also contentsSize().
void QtWebKit.IQWebFrameSignals.IconChanged | ( | ) |
This signal is emitted when the icon ("favicon") associated with the frame has been loaded.
See also icon().
void QtWebKit.IQWebFrameSignals.InitialLayoutCompleted | ( | ) |
This signal is emitted when the frame is laid out the first time. This is the first time you will see contents displayed on the frame.
Note: A frame can be laid out multiple times.
void QtWebKit.IQWebFrameSignals.JavaScriptWindowObjectCleared | ( | ) |
This signal is emitted whenever the global window object of the JavaScript environment is cleared, e.g., before starting a new load.
If you intend to add QObjects to a QWebFrame using addToJavaScriptWindowObject(), you should add them in a slot connected to this signal. This ensures that your objects remain accessible when loading new URLs.
void QtWebKit.IQWebFrameSignals.LoadFinished | ( | bool | ok | ) |
This signal is emitted when a load of this frame is finished. ok will indicate whether the load was successful or any error occurred.
This function was introduced in Qt 4.6.
See also loadStarted().
void QtWebKit.IQWebFrameSignals.LoadStarted | ( | ) |
This signal is emitted when a new load of this frame is started.
This function was introduced in Qt 4.6.
See also loadFinished().
void QtWebKit.IQWebFrameSignals.PageChanged | ( | ) |
This signal is emitted when this frame has been moved to a different QWebPage.
This function was introduced in Qt 4.7.
See also page().
void QtWebKit.IQWebFrameSignals.ProvisionalLoad | ( | ) |
void QtWebKit.IQWebFrameSignals.TitleChanged | ( | string | title | ) |
This signal is emitted whenever the title of the frame changes. The title string specifies the new title.
See also title().
void QtWebKit.IQWebFrameSignals.UrlChanged | ( | QUrl | url | ) |
This signal is emitted with the URL of the frame when the frame's title is received. The new URL is specified by url.
See also url().