X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5a3ef19432acb30174a8b7eb5c8c56e568fb8a3a..0dd9b9e2be1809f484b6447ad9525fa5b404ad95:/include/wx/gtk/textctrl.h diff --git a/include/wx/gtk/textctrl.h b/include/wx/gtk/textctrl.h index 510cdbd91e..28554b1f96 100644 --- a/include/wx/gtk/textctrl.h +++ b/include/wx/gtk/textctrl.h @@ -44,6 +44,7 @@ public: // implement base class pure virtuals // ---------------------------------- + virtual void WriteText(const wxString& text); virtual wxString GetValue() const; virtual bool IsEmpty() const; @@ -54,30 +55,13 @@ public: virtual bool IsModified() const; virtual bool IsEditable() const; - // If the return values from and to are the same, there is no selection. virtual void GetSelection(long* from, long* to) const; - // operations - // ---------- - - // editing - virtual void Clear(); - virtual void Replace(long from, long to, const wxString& value); virtual void Remove(long from, long to); - // sets/clears the dirty flag virtual void MarkDirty(); virtual void DiscardEdits(); - virtual void SetMaxLength(unsigned long len); - - // writing text inserts it at the current position, appending always - // inserts it at the end - 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 @@ -101,16 +85,8 @@ public: virtual void Cut(); virtual void Paste(); - // Undo/redo - virtual void Undo(); - virtual void Redo(); - - virtual bool CanUndo() const; - virtual bool CanRedo() const; - // Insertion point virtual void SetInsertionPoint(long pos); - virtual void SetInsertionPointEnd(); virtual long GetInsertionPoint() const; virtual wxTextPos GetLastPosition() const; @@ -152,11 +128,6 @@ public: // implementation only from now on - // wxGTK-specific: called recursively by Enable, - // to give widgets an oppprtunity to correct their colours after they - // have been changed by Enable - virtual void OnParentEnable( bool enable ) ; - // tell the control to ignore next text changed signal void IgnoreNextTextUpdate(int n = 1) { m_countUpdatesToIgnore = n; } @@ -181,6 +152,12 @@ public: bool IsFrozen() const { return m_freezeCount > 0; } protected: + // wxGTK-specific: called recursively by Enable, + // to give widgets an oppprtunity to correct their colours after they + // have been changed by Enable + virtual void OnEnabled(bool enable); + + // overridden wxWindow virtual methods virtual wxSize DoGetBestSize() const; virtual void DoApplyWidgetStyle(GtkRcStyle *style); virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; @@ -199,10 +176,16 @@ protected: // set the given characteristic) void GTKSetEditable(); void GTKSetVisibility(); + void GTKSetActivatesDefault(); void GTKSetWrapMode(); void GTKSetJustification(); private: + // overridden wxTextEntry virtual methods + virtual const wxWindow *GetEditableWindow() const { return this; } + virtual GtkEditable *GetEditable() const; + virtual void EnableTextChangedEvents(bool enable); + // change the font for everything in this control void ChangeFontGlobally(); @@ -212,7 +195,17 @@ private: // encoding wxFontEncoding GetTextEncoding() const; + // returns either m_text or m_buffer depending on whether the control is + // single- or multi-line; convenient for the GTK+ functions which work with + // both + void *GetTextObject() const + { + return IsMultiLine() ? wx_static_cast(void *, m_buffer) + : wx_static_cast(void *, m_text); + } + + // the widget used for single line controls GtkWidget *m_text; bool m_modified:1;