]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/textctrl.h
started once again from stubs
[wxWidgets.git] / include / wx / gtk1 / textctrl.h
index 525b11808fa6041292bd5abeefe37e406aea8d93..061e82e3bd0e86f48a66fd5c94d31fe770e63420 100644 (file)
@@ -101,17 +101,22 @@ class wxTextCtrl: public wxControl, public streambuf
     wxTextCtrl& operator<<(const char c);
 
     void SetFont( const wxFont &font );
-    virtual void SetBackgroundColour(const wxColour &colour);
+    void SetForegroundColour(const wxColour &colour);
+    void SetBackgroundColour(const wxColour &colour);
 
   // implementation    
     
-    GtkWidget* GetConnectWidget(void);
+    GtkWidget* GetConnectWidget();
     bool IsOwnGtkWindow( GdkWindow *window );
+    void ApplyWidgetStyle();
+    void CalculateScrollbar();
     
   private:
   
     bool        m_modified;
     GtkWidget  *m_text;
+    GtkWidget  *m_vScrollbar;
+    bool        m_vScrollbarVisible;
 };
 
 #endif // __GTKTEXTCTRLH__