X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/47a8a4d5cc3e8fcb2efee4787cb9d244104beea5..8e77fd8bca165aab9709649d79a7cbc6a172d4e1:/include/wx/gtk1/textctrl.h diff --git a/include/wx/gtk1/textctrl.h b/include/wx/gtk1/textctrl.h index 5abad1b57b..de6a4034f1 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,22 +137,12 @@ 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); // implementation only from now on - // wxGTK-specific: called recursively by Enable, - // to give widgets an oppprtunity to correct their colours after they - // have been changed by Enable - virtual void OnEnabled( bool enabled ) ; - // tell the control to ignore next text changed signal void IgnoreNextTextUpdate(); @@ -170,6 +158,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 +174,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