]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/textctrl.h
define this, wxSIZE_T_IS_UINT, for OS/2.
[wxWidgets.git] / include / wx / gtk1 / textctrl.h
index 714222ae0cb785aa65d2b5be107461228db15500..727e7741f9340c4d9b436716eebb7467c65debc0 100644 (file)
@@ -28,7 +28,7 @@ class wxTextCtrl;
 class wxTextCtrl: public wxTextCtrlBase
 {
 public:
-    wxTextCtrl();
+    wxTextCtrl() { Init(); }
     wxTextCtrl(wxWindow *parent,
                wxWindowID id,
                const wxString &value = wxEmptyString,
@@ -112,6 +112,8 @@ public:
     virtual void SetSelection(long from, long to);
     virtual void SetEditable(bool editable);
 
+    virtual bool Enable( bool enable );
+
     // Implementation from now on
     void OnDropFiles( wxDropFilesEvent &event );
     void OnChar( wxKeyEvent &event );
@@ -129,7 +131,6 @@ public:
     void OnUpdateRedo(wxUpdateUIEvent& event);
 
     bool SetFont( const wxFont &font );
-    bool SetForegroundColour(const wxColour &colour);
     bool SetBackgroundColour(const wxColour &colour);
 
     GtkWidget* GetConnectWidget();
@@ -137,17 +138,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);