X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/903f689bf7c3c379cba45881373aa9bdd15d6e70..b4277bbc2531994afa3c467fb6e630822c8b6284:/include/wx/gtk/textctrl.h?ds=sidebyside diff --git a/include/wx/gtk/textctrl.h b/include/wx/gtk/textctrl.h index 034f218b7b..eb7fe290ff 100644 --- a/include/wx/gtk/textctrl.h +++ b/include/wx/gtk/textctrl.h @@ -21,7 +21,7 @@ #include "wx/string.h" #include "wx/control.h" -#if USE_IOSTREAMH +#if wxUSE_IOSTREAMH #include #else #include @@ -67,13 +67,12 @@ class wxTextCtrl: public wxControl, public streambuf bool IsModified() const { return m_modified; } void SetModified() { m_modified = TRUE; } void DiscardEdits() { m_modified = FALSE; } -/* wxString GetLineText( long lineNo ) const; void OnDropFiles( wxDropFilesEvent &event ); long PositionToXY( long pos, long *x, long *y ) const; - long XYToPosition( long x, long y ); - int GetNumberOfLines(); -*/ + long XYToPosition( long x, long y ) const; + int GetLineLength(long lineNo) const; + int GetNumberOfLines() const; virtual void SetInsertionPoint( long pos ); virtual void SetInsertionPointEnd(); virtual void SetEditable( bool editable ); @@ -86,7 +85,7 @@ class wxTextCtrl: public wxControl, public streambuf void Cut(); void Copy(); void Paste(); - void Delete(); + void Clear(); void OnChar( wxKeyEvent &event ); @@ -101,8 +100,15 @@ class wxTextCtrl: public wxControl, public streambuf wxTextCtrl& operator<<(double d); wxTextCtrl& operator<<(const char c); - virtual GtkWidget* GetConnectWidget(void); - virtual bool IsOwnGtkWindow( GdkWindow *window ); + void SetFont( const wxFont &font ); + void SetForegroundColour(const wxColour &colour); + void SetBackgroundColour(const wxColour &colour); + + // implementation + + GtkWidget* GetConnectWidget(void); + bool IsOwnGtkWindow( GdkWindow *window ); + void ApplyWidgetStyle(); private: