void SetUpdateFont(bool WXUNUSED(update)) { }
- // 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();
-
// implementation only from now on
// tell the control to ignore next text changed signal
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
- // has the control been frozen by Freeze()?
- bool IsFrozen() const { return m_freezeCount > 0; }
-
protected:
// wxGTK-specific: called recursively by Enable,
// to give widgets an oppprtunity to correct their colours after they
virtual void DoApplyWidgetStyle(GtkRcStyle *style);
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
+ virtual void DoFreeze();
+ virtual void DoThaw();
+
// common part of all ctors
void Init();
// set the given characteristic)
void GTKSetEditable();
void GTKSetVisibility();
+ void GTKSetActivatesDefault();
void GTKSetWrapMode();
void GTKSetJustification();
// a dummy one when frozen
GtkTextBuffer *m_buffer;
- // number of calls to Freeze() minus number of calls to Thaw()
- unsigned m_freezeCount;
GtkTextMark* m_showPositionOnThaw;
// For wxTE_AUTO_URL