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

Public Member Functions

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

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  url)

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  ok)

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  url)

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

See also url() and load().