]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/textctrl.h
"const" added to wxAccelTable ctor
[wxWidgets.git] / include / wx / gtk1 / textctrl.h
index 06d1fa8b6b5e61dea3eeac897390a96598601ee5..e477a54675d87fd5b07b3de81e30e9f666116a96 100644 (file)
@@ -48,7 +48,7 @@ class wxTextCtrl: public wxControl, public streambuf
   DECLARE_EVENT_TABLE()
   DECLARE_DYNAMIC_CLASS(wxTextCtrl);
 
-public:
+  public:
     wxTextCtrl();
     wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value = "",
       const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
@@ -101,12 +101,17 @@ public:
     wxTextCtrl& operator<<(double d);
     wxTextCtrl& operator<<(const char c);
 
+    void SetFont( const wxFont &font );
+    
+  // implementation    
+    
     virtual GtkWidget* GetConnectWidget(void);
+    virtual bool IsOwnGtkWindow( GdkWindow *window );
     
-private:
-  bool  m_modified;
-
-  GtkWidget *m_text;
+  private:
+  
+    bool        m_modified;
+    GtkWidget  *m_text;
 };
 
 #endif // __GTKTEXTCTRLH__