X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fdca68a6708f970cdff275d1dafc1622e23dc4f8..6e264973e636cc41915d166cb7eddf2a7e72cf9b:/include/wx/gtk1/textctrl.h diff --git a/include/wx/gtk1/textctrl.h b/include/wx/gtk1/textctrl.h index 0a529c6a27..10b4dcce0e 100644 --- a/include/wx/gtk1/textctrl.h +++ b/include/wx/gtk1/textctrl.h @@ -79,6 +79,10 @@ public: virtual void WriteText(const wxString& text); virtual void AppendText(const wxString& text); + // apply text attribute to the range of text (only works with richedit + // controls) + virtual bool SetStyle(long start, long end, const wxTextAttr& style); + // translate between the position (which is just an index in the text ctrl // considering all its contents as a single strings) and (x, y) coordinates // which represent column and line. @@ -92,10 +96,6 @@ public: virtual void Cut(); virtual void Paste(); - virtual bool CanCopy() const; - virtual bool CanCut() const; - virtual bool CanPaste() const; - // Undo/redo virtual void Undo(); virtual void Redo(); @@ -130,9 +130,9 @@ public: void OnUpdateUndo(wxUpdateUIEvent& event); void OnUpdateRedo(wxUpdateUIEvent& event); - bool SetFont( const wxFont &font ); - bool SetForegroundColour(const wxColour &colour); - bool SetBackgroundColour(const wxColour &colour); + bool SetFont(const wxFont& font); + bool SetForegroundColour(const wxColour& colour); + bool SetBackgroundColour(const wxColour& colour); GtkWidget* GetConnectWidget(); bool IsOwnGtkWindow( GdkWindow *window );