From: Steve Lamerton Date: Tue, 5 Jul 2011 17:06:12 +0000 (+0000) Subject: Add stubs to osx webkit backend to allow compilation. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0e37936eb41252308ac66571d2189f66dc99d911 Add stubs to osx webkit backend to allow compilation. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68170 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/osx/webview_webkit.h b/include/wx/osx/webview_webkit.h index 8442e6aac6..212eec306a 100644 --- a/include/wx/osx/webview_webkit.h +++ b/include/wx/osx/webview_webkit.h @@ -74,6 +74,21 @@ public: virtual bool CanSetZoomType(wxWebViewZoomType type) const; virtual bool IsBusy() { return m_busy; } + + //History functions + virtual void ClearHistory() {} + virtual void EnableHistory(bool enable = true) {} + virtual wxVector > GetBackwardHistory() + { return wxVector >() } + virtual wxVector > GetForwardHistory() + { return wxVector >() } + virtual void LoadHistoryItem(wxSharedPtr item) {} + + //Undo / redo functionality + virtual bool CanUndo() {} + virtual bool CanRedo() {} + virtual void Undo() {} + virtual void Redo() {} // ---- methods not from the parent (common) interface wxString GetSelectedText();