Obsolete Members for WebView

The following members of QML type WebView are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.

Properties

Signals

Methods

Property Documentation

canGoBack : bool

This property will be true if the application can navigate the webview back by calling goBack. Else it will be false.

Note: The notification signal for this is navigationHistoryChanged.

See also goBack.


canGoForward : bool

This property will be true if the application can navigate the webview forward by calling goForward. Else it will be false.

Note: The notification signal for this is navigationHistoryChanged.

See also goForward.


contentHeight : real


contentWidth : real


contentX : real


contentY : real


viewportHeight : real


viewportWidth : real


Signal Documentation

void loadingChanged(LoadEvent event)


Method Documentation

void goBack()

Navigate to the previous entry in the navigation history. If there isn't one, then calling this function will do nothing.

See also canGoBack.


void goForward()

Navigate to the next entry in the navigation history. If there isn't one, then calling this function will do nothing.

See also canGoForward.