1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/textentry.h
3 // Purpose: declares wxTextEntry interface defining a simple text entry
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_TEXTENTRY_H_
12 #define _WX_TEXTENTRY_H_
14 // wxTextPos is the position in the text (currently it's hardly used anywhere
15 // and should probably be replaced with int anyhow)
16 typedef long wxTextPos
;
18 // ----------------------------------------------------------------------------
20 // ----------------------------------------------------------------------------
22 class WXDLLIMPEXP_CORE wxTextEntryBase
25 wxTextEntryBase() { m_eventsBlock
= 0; }
26 virtual ~wxTextEntryBase() { }
29 // accessing the value
30 // -------------------
32 // SetValue() generates a text change event, ChangeValue() doesn't
33 virtual void SetValue(const wxString
& value
)
34 { DoSetValue(value
, SetValue_SendEvent
); }
35 virtual void ChangeValue(const wxString
& value
)
36 { DoSetValue(value
, SetValue_NoEvent
); }
38 // writing text inserts it at the current position replacing any current
39 // selection, appending always inserts it at the end and doesn't remove any
40 // existing text (but it will reset the selection if there is any)
41 virtual void WriteText(const wxString
& text
) = 0;
42 virtual void AppendText(const wxString
& text
);
44 virtual wxString
GetValue() const = 0;
45 virtual wxString
GetRange(long from
, long to
) const;
46 bool IsEmpty() const { return GetValue().empty(); }
52 virtual void Replace(long from
, long to
, const wxString
& value
);
53 virtual void Remove(long from
, long to
) = 0;
54 virtual void Clear() { SetValue(wxString()); }
57 // clipboard operations
58 // --------------------
60 virtual void Copy() = 0;
61 virtual void Cut() = 0;
62 virtual void Paste() = 0;
64 virtual bool CanCopy() const;
65 virtual bool CanCut() const;
66 virtual bool CanPaste() const;
71 virtual void Undo() = 0;
72 virtual void Redo() = 0;
74 virtual bool CanUndo() const = 0;
75 virtual bool CanRedo() const = 0;
81 // note that moving insertion point removes any current selection
82 virtual void SetInsertionPoint(long pos
) = 0;
83 virtual void SetInsertionPointEnd() { SetInsertionPoint(-1); }
84 virtual long GetInsertionPoint() const = 0;
85 virtual long GetLastPosition() const = 0;
91 virtual void SetSelection(long from
, long to
) = 0;
92 virtual void SelectAll() { SetSelection(0, GetLastPosition()); }
93 virtual void GetSelection(long *from
, long *to
) const = 0;
94 bool HasSelection() const;
95 virtual wxString
GetStringSelection() const;
100 virtual bool IsEditable() const = 0;
101 virtual void SetEditable(bool editable
) = 0;
104 // set the max number of characters which may be entered in a single line
106 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) { }
110 // flags for DoSetValue(): common part of SetValue() and ChangeValue() and
111 // also used to implement WriteText() in wxMSW
114 SetValue_NoEvent
= 0,
115 SetValue_SendEvent
= 1,
116 SetValue_SelectionOnly
= 2
119 virtual void DoSetValue(const wxString
& value
, int flags
);
121 // class which should be used to temporarily disable text change events
123 // if suppress argument in ctor is false, nothing is done
124 class EventsSuppressor
127 EventsSuppressor(wxTextEntryBase
*text
, bool suppress
= true)
129 m_suppress
= suppress
;
133 m_text
->SuppressTextChangedEvents();
140 m_text
->ResumeTextChangedEvents();
144 wxTextEntryBase
*m_text
;
148 // return true if the events are currently not suppressed
149 bool EventsAllowed() const { return m_eventsBlock
== 0; }
152 // suppress or resume the text changed events generation: don't use these
153 // functions directly, use EventsSuppressor class above instead
154 void SuppressTextChangedEvents()
156 if ( !m_eventsBlock
++ )
157 EnableTextChangedEvents(false);
160 void ResumeTextChangedEvents()
162 if ( !--m_eventsBlock
)
163 EnableTextChangedEvents(true);
167 // this must be overridden in the derived classes if our implementation of
168 // SetValue() or Replace() is used to disable (and enable back) generation
169 // of the text changed events
171 // initially the generation of the events is enabled
172 virtual void EnableTextChangedEvents(bool WXUNUSED(enable
)) { }
175 friend class EventsSuppressor
;
177 // if this counter is non-null, events are blocked
178 unsigned m_eventsBlock
;
182 #include "wx/gtk/textentry.h"
184 // no platform-specific implementation of wxTextEntry yet
185 class WXDLLIMPEXP_CORE wxTextEntry
: public wxTextEntryBase
190 #endif // _WX_TEXTENTRY_H_