X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/13289f04aee52cae316f984163f4f38d32d2eaf4..a60c99e6a919bad02f33ee1429a831f00b0df819:/include/wx/gtk1/textctrl.h diff --git a/include/wx/gtk1/textctrl.h b/include/wx/gtk1/textctrl.h index 99f76a3305..e4bdb022c3 100644 --- a/include/wx/gtk1/textctrl.h +++ b/include/wx/gtk1/textctrl.h @@ -48,14 +48,16 @@ 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, - int style = 0, const wxString &name = wxTextCtrlNameStr ); + int style = 0, const wxValidator& validator = wxDefaultValidator, + const wxString &name = wxTextCtrlNameStr ); bool Create( wxWindow *parent, wxWindowID id, const wxString &value = "", const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, - int style = 0, const wxString &name = wxTextCtrlNameStr ); + int style = 0, const wxValidator& validator = wxDefaultValidator, + const wxString &name = wxTextCtrlNameStr ); wxString GetValue() const; void SetValue( const wxString &value ); void WriteText( const wxString &text ); @@ -99,10 +101,17 @@ public: wxTextCtrl& operator<<(double d); wxTextCtrl& operator<<(const char c); -private: - bool m_modified; - - GtkWidget *m_text; + void SetFont( const wxFont &font ); + + // implementation + + GtkWidget* GetConnectWidget(void); + bool IsOwnGtkWindow( GdkWindow *window ); + + private: + + bool m_modified; + GtkWidget *m_text; }; #endif // __GTKTEXTCTRLH__