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();