X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1c7e7d5b1e9085e6afcfac8e914a2cdeb3bc405c..2b96d0fb4be7d684c17987d74f8f92d0cfe345b5:/include/wx/gtk/textctrl.h diff --git a/include/wx/gtk/textctrl.h b/include/wx/gtk/textctrl.h index 727e7741f9..10b4dcce0e 100644 --- a/include/wx/gtk/textctrl.h +++ b/include/wx/gtk/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,8 +130,9 @@ public: void OnUpdateUndo(wxUpdateUIEvent& event); void OnUpdateRedo(wxUpdateUIEvent& event); - bool SetFont( const wxFont &font ); - 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 );