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 class WXDLLIMPEXP_FWD_BASE wxArrayString
;
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 class WXDLLIMPEXP_CORE wxTextEntryBase
27 wxTextEntryBase() { m_eventsBlock
= 0; }
28 virtual ~wxTextEntryBase() { }
31 // accessing the value
32 // -------------------
34 // SetValue() generates a text change event, ChangeValue() doesn't
35 virtual void SetValue(const wxString
& value
)
36 { DoSetValue(value
, SetValue_SendEvent
); }
37 virtual void ChangeValue(const wxString
& value
)
38 { DoSetValue(value
, SetValue_NoEvent
); }
40 // writing text inserts it at the current position replacing any current
41 // selection, appending always inserts it at the end and doesn't remove any
42 // existing text (but it will reset the selection if there is any)
43 virtual void WriteText(const wxString
& text
) = 0;
44 virtual void AppendText(const wxString
& text
);
46 virtual wxString
GetValue() const = 0;
47 virtual wxString
GetRange(long from
, long to
) const;
48 bool IsEmpty() const { return GetLastPosition() <= 0; }
54 virtual void Replace(long from
, long to
, const wxString
& value
);
55 virtual void Remove(long from
, long to
) = 0;
56 virtual void Clear() { SetValue(wxString()); }
57 void RemoveSelection();
60 // clipboard operations
61 // --------------------
63 virtual void Copy() = 0;
64 virtual void Cut() = 0;
65 virtual void Paste() = 0;
67 virtual bool CanCopy() const;
68 virtual bool CanCut() const;
69 virtual bool CanPaste() const;
74 virtual void Undo() = 0;
75 virtual void Redo() = 0;
77 virtual bool CanUndo() const = 0;
78 virtual bool CanRedo() const = 0;
84 // note that moving insertion point removes any current selection
85 virtual void SetInsertionPoint(long pos
) = 0;
86 virtual void SetInsertionPointEnd() { SetInsertionPoint(-1); }
87 virtual long GetInsertionPoint() const = 0;
88 virtual long GetLastPosition() const = 0;
94 virtual void SetSelection(long from
, long to
) = 0;
95 virtual void SelectAll() { SetSelection(-1, -1); }
96 virtual void GetSelection(long *from
, long *to
) const = 0;
97 bool HasSelection() const;
98 virtual wxString
GetStringSelection() const;
104 // these functions allow to auto-complete the text already entered into the
105 // control using either the given fixed list of strings, the paths from the
106 // file system or, in the future, an arbitrary user-defined completer
108 // they all return true if completion was enabled or false on error (most
109 // commonly meaning that this functionality is not available under the
112 virtual bool AutoComplete(const wxArrayString
& WXUNUSED(choices
))
117 virtual bool AutoCompleteFileNames() { return false; }
123 virtual bool IsEditable() const = 0;
124 virtual void SetEditable(bool editable
) = 0;
127 // set the max number of characters which may be entered in a single line
129 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) { }
133 // flags for DoSetValue(): common part of SetValue() and ChangeValue() and
134 // also used to implement WriteText() in wxMSW
137 SetValue_NoEvent
= 0,
138 SetValue_SendEvent
= 1,
139 SetValue_SelectionOnly
= 2
142 virtual void DoSetValue(const wxString
& value
, int flags
);
144 // class which should be used to temporarily disable text change events
146 // if suppress argument in ctor is false, nothing is done
147 class EventsSuppressor
150 EventsSuppressor(wxTextEntryBase
*text
, bool suppress
= true)
155 m_text
->SuppressTextChangedEvents();
161 m_text
->ResumeTextChangedEvents();
165 wxTextEntryBase
*m_text
;
169 friend class EventsSuppressor
;
171 // return true if the events are currently not suppressed
172 bool EventsAllowed() const { return m_eventsBlock
== 0; }
175 // suppress or resume the text changed events generation: don't use these
176 // functions directly, use EventsSuppressor class above instead
177 void SuppressTextChangedEvents()
179 if ( !m_eventsBlock
++ )
180 EnableTextChangedEvents(false);
183 void ResumeTextChangedEvents()
185 if ( !--m_eventsBlock
)
186 EnableTextChangedEvents(true);
190 // this must be overridden in the derived classes if our implementation of
191 // SetValue() or Replace() is used to disable (and enable back) generation
192 // of the text changed events
194 // initially the generation of the events is enabled
195 virtual void EnableTextChangedEvents(bool WXUNUSED(enable
)) { }
197 // if this counter is non-null, events are blocked
198 unsigned m_eventsBlock
;
201 #ifdef __WXUNIVERSAL__
202 // TODO: we need to use wxTextEntryDelegate here, but for now just prevent
203 // the GTK/MSW classes from being used in wxUniv build
204 class WXDLLIMPEXP_CORE wxTextEntry
: public wxTextEntryBase
207 #elif defined(__WXGTK20__)
208 #include "wx/gtk/textentry.h"
209 #elif defined(__WXMSW__)
210 #include "wx/msw/textentry.h"
211 #elif defined(__WXMOTIF__)
212 #include "wx/motif/textentry.h"
213 #elif defined(__WXPM__)
214 #include "wx/os2/textentry.h"
216 // no platform-specific implementation of wxTextEntry yet
217 class WXDLLIMPEXP_CORE wxTextEntry
: public wxTextEntryBase
222 #endif // _WX_TEXTENTRY_H_