diff options
Diffstat (limited to 'WebKit/wx/bindings/python')
| -rw-r--r-- | WebKit/wx/bindings/python/samples/simple.py | 6 | ||||
| -rw-r--r-- | WebKit/wx/bindings/python/webview.i | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/WebKit/wx/bindings/python/samples/simple.py b/WebKit/wx/bindings/python/samples/simple.py index 52d4e1b..2756760 100644 --- a/WebKit/wx/bindings/python/samples/simple.py +++ b/WebKit/wx/bindings/python/samples/simple.py @@ -92,11 +92,11 @@ class TestPanel(wx.Panel): def OnStateChanged(self, event): statusbar = self.GetParent().GetStatusBar() if statusbar: - if event.GetState() == wx.webview.WEBVIEW_STATE_NEGOTIATING: + if event.GetState() == wx.webview.WEBVIEW_LOAD_NEGOTIATING: statusbar.SetStatusText("Contacting " + event.GetURL()) - elif event.GetState() == wx.webview.WEBVIEW_STATE_TRANSFERRING: + elif event.GetState() == wx.webview.WEBVIEW_LOAD_TRANSFERRING: statusbar.SetStatusText("Loading " + event.GetURL()) - elif event.GetState() == wx.webview.WEBVIEW_STATE_STOP: + elif event.GetState() == wx.webview.WEBVIEW_LOAD_DOC_COMPLETED: statusbar.SetStatusText("") self.location.SetValue(event.GetURL()) self.GetParent().SetTitle("wxWebView - " + self.webview.GetPageTitle()) diff --git a/WebKit/wx/bindings/python/webview.i b/WebKit/wx/bindings/python/webview.i index 44b38ab..410191a 100644 --- a/WebKit/wx/bindings/python/webview.i +++ b/WebKit/wx/bindings/python/webview.i @@ -28,6 +28,7 @@ %{ #include "wx/wxPython/wxPython.h" #include "wx/wxPython/pyclasses.h" +#include "WebFrame.h" #include "WebView.h" #include "WebBrowserShell.h" %} @@ -38,9 +39,11 @@ MAKE_CONST_WXSTRING(WebViewNameStr); +MustHaveApp(wxWebFrame); MustHaveApp(wxWebView); MustHaveApp(wxWebBrowserShell); +%include WebFrame.h %include WebView.h %include WebBrowserShell.h |
