X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/68df5777c7f72890dccef9dd9160397f2a834bb4..ae090fdb7f4be47466b5728ad37065923b48c8c3:/include/wx/gtk1/textctrl.h?ds=sidebyside diff --git a/include/wx/gtk1/textctrl.h b/include/wx/gtk1/textctrl.h index 5faee033c6..0a529c6a27 100644 --- a/include/wx/gtk1/textctrl.h +++ b/include/wx/gtk1/textctrl.h @@ -28,7 +28,7 @@ class wxTextCtrl; class wxTextCtrl: public wxTextCtrlBase { public: - wxTextCtrl(); + wxTextCtrl() { Init(); } wxTextCtrl(wxWindow *parent, wxWindowID id, const wxString &value = wxEmptyString, @@ -139,17 +139,30 @@ public: void ApplyWidgetStyle(); void CalculateScrollbar(); void OnInternalIdle(); + void UpdateFontIfNeeded(); void SetModified() { m_modified = TRUE; } + // wxGTK-specific: called recursively by Enable, + // to give widgets an oppprtunity to correct their colours after they + // have been changed by Enable + virtual void OnParentEnable( bool enable ) ; + protected: virtual wxSize DoGetBestSize() const; + // common part of all ctors + void Init(); + private: + // change the font for everything in this control + void ChangeFontGlobally(); + bool m_modified; GtkWidget *m_text; GtkWidget *m_vScrollbar; bool m_vScrollbarVisible; + bool m_updateFont; DECLARE_EVENT_TABLE() DECLARE_DYNAMIC_CLASS(wxTextCtrl);