WebView.Clear() is a new method that resets the view.

[GB.QT4.WEBVIEW]
* NEW: WebView: Clear() is a new method that resets the view.
This commit is contained in:
gambas 2020-11-14 03:50:01 +01:00
parent 4e1b6921d9
commit 429e373c91

View file

@ -306,6 +306,12 @@ BEGIN_PROPERTY(WebView_Link)
END_PROPERTY
BEGIN_METHOD_VOID(WebView_Clear)
WIDGET->setPage(new QWebPage(WIDGET));
END_METHOD
//-------------------------------------------------------------------------
static QWebHistoryItem get_item(QWebHistory *history, int index)
@ -432,6 +438,7 @@ GB_DESC WebViewDesc[] =
GB_PROPERTY_READ("Link", "s", WebView_Link),
GB_METHOD("SetHtml", NULL, WebView_SetHtml, "(Html)s[(Root)s]"),
GB_METHOD("Clear", NULL, WebView_Clear, NULL),
GB_METHOD("Back", NULL, WebView_Back, NULL),
GB_METHOD("Forward", NULL, WebView_Forward, NULL),