+ void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString);
+ wxString GetPageURL(){ return m_currentURL; }
+ void SetPageTitle(const wxString& title) { m_pageTitle = title; }
+ wxString GetPageTitle(){ return m_pageTitle; }
+
+ // since these worked in 2.6, add wrappers
+ void SetTitle(const wxString& title) { SetPageTitle(title); }
+ wxString GetTitle() { return GetPageTitle(); }
+
+ wxString GetSelection();
+
+ bool CanIncreaseTextSize();
+ void IncreaseTextSize();
+ bool CanDecreaseTextSize();
+ void DecreaseTextSize();
+
+ void Print(bool showPrompt = false);
+
+ void MakeEditable(bool enable = true);
+ bool IsEditable();
+
+ wxString RunScript(const wxString& javascript);
+
+ void SetScrollPos(int pos);
+ int GetScrollPos();
+
+ // don't hide base class virtuals
+ virtual void SetScrollPos( int orient, int pos, bool refresh = true )
+ { return wxControl::SetScrollPos(orient, pos, refresh); }
+ virtual int GetScrollPos( int orient ) const
+ { return wxControl::GetScrollPos(orient); }