+ wxString GetPageURL() { return wxEmptyString; }
+ wxString GetPageTitle() { return wxEmptyString; }
+
+ wxString GetSelection() { return wxEmptyString; }
+
+ bool CanIncreaseTextSize() { return false; }
+ void IncreaseTextSize() { }
+ bool CanDecreaseTextSize() { return false; }
+ void DecreaseTextSize() { }
+
+ void Print(bool showPrompt=false) { }
+
+ void MakeEditable(bool enable=true) { }
+ bool IsEditable() { return false; }
+
+ wxString RunScript(const wxString& javascript) { return wxEmptyString; }
+
+ void SetScrollPos(int pos) { }
+ int GetScrollPos() { return 0; }
+
+};
+
+
+enum {
+ wxWEBKIT_STATE_START = 0,
+ wxWEBKIT_STATE_NEGOTIATING = 0,
+ wxWEBKIT_STATE_REDIRECTING = 0,
+ wxWEBKIT_STATE_TRANSFERRING = 0,
+ wxWEBKIT_STATE_STOP = 0,
+ wxWEBKIT_STATE_FAILED = 0,
+
+ wxEVT_WEBKIT_STATE_CHANGED = 0,
+ wxEVT_WEBKIT_BEFORE_LOAD = 0
+};
+
+enum {
+ wxWEBKIT_NAV_LINK_CLICKED = 0,
+ wxWEBKIT_NAV_BACK_NEXT = 0,
+ wxWEBKIT_NAV_FORM_SUBMITTED = 0,
+ wxWEBKIT_NAV_RELOAD = 0,
+ wxWEBKIT_NAV_FORM_RESUBMITTED = 0,
+ wxWEBKIT_NAV_OTHER = 0
+
+};
+
+class wxWebKitStateChangedEvent : public wxCommandEvent
+{
+public:
+ wxWebKitStateChangedEvent( wxWindow* win = NULL )
+ { wxPyRaiseNotImplemented(); }
+
+ int GetState() { return 0; }
+ void SetState(const int state) {}
+ wxString GetURL() { return wxEmptyString; }
+ void SetURL(const wxString& url) {}
+};
+
+class wxWebKitBeforeLoadEvent : public wxCommandEvent
+{
+public:
+ bool IsCancelled() { return false; }
+ void Cancel(bool cancel = true) { }
+ wxString GetURL() { return wxEmptyString; }
+ void SetURL(const wxString& url) { }
+ void SetNavigationType(int navType) { }
+ int GetNavigationType() { return 0; }
+
+ wxWebKitBeforeLoadEvent( wxWindow* win = (wxWindow*) NULL ) { wxPyRaiseNotImplemented(); }