A navigation event holds information about events associated with wx.html2.WebView objects.
Handlers bound for the following event types will receive a wx.html2.WebViewEvent parameter.
wxEVT_WEBVIEW_NAVIGATING
event, generated before trying to get a resource. This event may be vetoed to prevent navigating to this resource. Note that if the displayed HTML document has several frames, one such event will be generated per frame.wxEVT_WEBVIEW_NAVIGATED
event generated after it was confirmed that a resource would be requested. This event may not be vetoed. Note that if the displayed HTML document has several frames, one such event will be generated per frame.wxEVT_WEBVIEW_LOADED
event generated when the document is fully loaded and displayed. Note that if the displayed HTML document has several frames, one such event will be generated per frame.wxEVT_WEBVIEW_ERROR
event generated when a navigation error occurs. The integer associated with this event will be a wx.html2.WebViewNavigationError item. The string associated with this event may contain a backend-specific more precise error message/code.wxEVT_WEBVIEW_NEWWINDOW
event, generated when a new window is created. You must handle this event if you want anything to happen, for example to load the page in a new window or tab.wxEVT_WEBVIEW_TITLE_CHANGED
event, generated when the page title changes. Use GetString to get the title.New in version 2.9.3.
See also
__init__ |
|
GetTarget |
Get the name of the target frame which the url of this event has been or will be loaded into. |
GetURL |
Get the URL being visited. |
wx.html2.
WebViewEvent
(NotifyEvent)¶Possible constructors:
WebViewEvent()
WebViewEvent(type, id, href, target)
A navigation event holds information about events associated with WebView objects.
__init__
(self, *args, **kw)¶__init__ (self)
__init__ (self, type, id, href, target)
Parameters: |
|
---|
GetTarget
(self)¶Get the name of the target frame which the url of this event has been or will be loaded into.
This may return an empty string if the frame is not available.
Return type: | string |
---|
GetURL
(self)¶Get the URL being visited.
Return type: | string |
---|