Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtWebKit.IQWebViewSignals Interface Reference
Inheritance diagram for QtWebKit.IQWebViewSignals:
Collaboration diagram for QtWebKit.IQWebViewSignals:

Public Member Functions

void LoadStarted ()
 
 
void LoadProgress (int progress)
 
 
void LoadFinished (bool arg1)
 
 
void TitleChanged (string title)
 
 
void StatusBarMessage (string text)
 
 
void LinkClicked (QUrl arg1)
 
 
void SelectionChanged ()
 
 
void IconChanged ()
 
 
void UrlChanged (QUrl arg1)
 
 
- Public Member Functions inherited from QtGui.IQWidgetSignals
void CustomContextMenuRequested (QPoint pos)
 
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject arg1)
 
void Destroyed ()
 
 

Member Function Documentation

void QtWebKit.IQWebViewSignals.IconChanged ( )

This signal is emitted whenever the icon of the page is loaded or changes.

In order for icons to be loaded, you will need to set an icon database path using QWebSettings::setIconDatabasePath().

See also icon() and QWebSettings::setIconDatabasePath().

void QtWebKit.IQWebViewSignals.LinkClicked ( QUrl  arg1)

This signal is emitted whenever the user clicks on a link and the page's linkDelegationPolicy property is set to delegate the link handling for the specified url.

See also QWebPage::linkDelegationPolicy().

void QtWebKit.IQWebViewSignals.LoadFinished ( bool  arg1)

This signal is emitted when a load of the page is finished. ok will indicate whether the load was successful or any error occurred.

See also loadStarted().

void QtWebKit.IQWebViewSignals.LoadProgress ( int  progress)

This signal is emitted every time an element in the web page completes loading and the overall loading progress advances.

This signal tracks the progress of all child frames.

The current value is provided by progress and scales from 0 to 100, which is the default range of QProgressBar.

See also loadStarted() and loadFinished().

void QtWebKit.IQWebViewSignals.LoadStarted ( )

This signal is emitted when a new load of the page is started.

See also loadProgress() and loadFinished().

void QtWebKit.IQWebViewSignals.SelectionChanged ( )

This signal is emitted whenever the selection changes.

See also selectedText().

void QtWebKit.IQWebViewSignals.StatusBarMessage ( string  text)

This signal is emitted when the status bar text is changed by the page.

void QtWebKit.IQWebViewSignals.TitleChanged ( string  title)

This signal is emitted whenever the title of the main frame changes.

See also title().

void QtWebKit.IQWebViewSignals.UrlChanged ( QUrl  arg1)

This signal is emitted when the url of the view changes.

See also url() and load().