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