X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/47a8a4d5cc3e8fcb2efee4787cb9d244104beea5..726cc8697cd44a41b43257f05ca8cdd42b71a711:/include/wx/gtk1/textctrl.h diff --git a/include/wx/gtk1/textctrl.h b/include/wx/gtk1/textctrl.h index 5abad1b57b..c594bc46b2 100644 --- a/include/wx/gtk1/textctrl.h +++ b/include/wx/gtk1/textctrl.h @@ -42,8 +42,6 @@ public: // implement base class pure virtuals // ---------------------------------- - virtual wxString GetValue() const; - virtual int GetLineLength(long lineNo) const; virtual wxString GetLineText(long lineNo) const; virtual int GetNumberOfLines() const; @@ -139,11 +137,6 @@ public: void SetModified() { m_modified = true; } - // GTK+ textctrl is so dumb that you need to freeze/thaw it manually to - // avoid horrible flicker/scrolling back and forth - virtual void Freeze(); - virtual void Thaw(); - // textctrl specific scrolling virtual bool ScrollLines(int lines); virtual bool ScrollPages(int pages); @@ -170,6 +163,10 @@ protected: // common part of all ctors void Init(); + // overridden wxWindow methods + virtual void DoFreeze(); + virtual void DoThaw(); + // get the vertical adjustment, if any, NULL otherwise GtkAdjustment *GetVAdj() const; @@ -182,6 +179,7 @@ protected: virtual bool UseGTKStyleBase() const { return true; } virtual void DoSetValue(const wxString &value, int flags = 0); + virtual wxString DoGetValue() const; private: // change the font for everything in this control