declare and define wxEVT_COMMAND_TEXT_UPDATED even if wxUSE_TEXTCTRL == 0
[wxWidgets.git] / include / wx / textctrl.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: textctrl.h
3 // Purpose: wxTextCtrlBase class - the interface of wxTextCtrl
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 13.07.99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_TEXTCTRL_H_BASE_
13 #define _WX_TEXTCTRL_H_BASE_
14
15 // ----------------------------------------------------------------------------
16 // headers
17 // ----------------------------------------------------------------------------
18
19 #ifdef __GNUG__
20 #pragma interface "textctrlbase.h"
21 #endif
22
23 #include "wx/defs.h"
24
25 #if wxUSE_TEXTCTRL
26
27 #include "wx/control.h" // the base class
28
29 // 16-bit Borland 4.0 doesn't seem to allow multiple inheritance with wxWindow
30 // and streambuf: it complains about deriving a huge class from the huge class
31 // streambuf. !! Also, can't use streambuf if making or using a DLL :-(
32
33 #if (defined(__BORLANDC__)) || defined(__MWERKS__) || defined(_WINDLL) || defined(WXUSINGDLL) || defined(WXMAKINGDLL)
34 #define NO_TEXT_WINDOW_STREAM
35 #endif
36
37 // the streambuf which is used in the declaration of wxTextCtrlBase below is not compatible
38 // with the standard-conforming implementation found in newer egcs versions
39 // (that is, the libstdc++ v3 that is shipped with it)
40 #if defined(__GNUC__)&&( (__GNUC__>2) ||( (__GNUC__==2)&&(__GNUC_MINOR__>97) ) )
41 #define NO_TEXT_WINDOW_STREAM
42 #endif
43
44 #ifndef NO_TEXT_WINDOW_STREAM
45 #if wxUSE_STD_IOSTREAM
46 #include "wx/ioswrap.h" // for iostream classes if we need them
47 #else // !wxUSE_STD_IOSTREAM
48 // can't compile this feature in if we don't use streams at all
49 #define NO_TEXT_WINDOW_STREAM
50 #endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM
51 #endif
52
53 class WXDLLEXPORT wxTextCtrl;
54
55 // ----------------------------------------------------------------------------
56 // constants
57 // ----------------------------------------------------------------------------
58
59 WXDLLEXPORT_DATA(extern const wxChar*) wxTextCtrlNameStr;
60 WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
61
62 // ----------------------------------------------------------------------------
63 // wxTextCtrl style flags
64 // ----------------------------------------------------------------------------
65
66 // the flag bits 0x0001, 2, 4 and 8 are free but should be used only for the
67 // things which don't make sense for a text control used by wxTextEntryDialog
68 // because they would otherwise conflict with wxOK, wxCANCEL, wxCENTRE
69 #define wxTE_READONLY 0x0010
70 #define wxTE_MULTILINE 0x0020
71 #define wxTE_PROCESS_TAB 0x0040
72
73 // this style means to use RICHEDIT control and does something only under wxMSW
74 // and Win32 and is silently ignored under all other platforms
75 #define wxTE_RICH 0x0080
76 #define wxTE_NO_VSCROLL 0x0100
77 #define wxTE_AUTO_SCROLL 0x0200
78 #define wxTE_PROCESS_ENTER 0x0400
79 #define wxTE_PASSWORD 0x0800
80
81 // automatically detect the URLs and generate the events when mouse is
82 // moved/clicked over an URL
83 //
84 // this is for Win32 richedit controls only so far
85 #define wxTE_AUTO_URL 0x1000
86
87 // ----------------------------------------------------------------------------
88 // wxTextAttr: a structure containing the visual attributes of a text
89 // ----------------------------------------------------------------------------
90
91 class WXDLLEXPORT wxTextAttr
92 {
93 public:
94 // ctors
95 wxTextAttr() { }
96 wxTextAttr(const wxColour& colText,
97 const wxColour& colBack = wxNullColour,
98 const wxFont& font = wxNullFont)
99 : m_colText(colText), m_colBack(colBack), m_font(font) { }
100
101 // setters
102 void SetTextColour(const wxColour& colText) { m_colText = colText; }
103 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
104 void SetFont(const wxFont& font) { m_font = font; }
105
106 // accessors
107 bool HasTextColour() const { return m_colText.Ok(); }
108 bool HasBackgroundColour() const { return m_colBack.Ok(); }
109 bool HasFont() const { return m_font.Ok(); }
110
111 // setters
112 const wxColour& GetTextColour() const { return m_colText; }
113 const wxColour& GetBackgroundColour() const { return m_colBack; }
114 const wxFont& GetFont() const { return m_font; }
115
116 // returns false if we have any attributes set, true otherwise
117 bool IsDefault() const
118 {
119 return !HasTextColour() && !HasBackgroundColour() && !HasFont();
120 }
121
122 private:
123 wxColour m_colText,
124 m_colBack;
125 wxFont m_font;
126 };
127
128 // ----------------------------------------------------------------------------
129 // wxTextCtrl: a single or multiple line text zone where user can enter and
130 // edit text
131 // ----------------------------------------------------------------------------
132
133 class WXDLLEXPORT wxTextCtrlBase : public wxControl
134 #ifndef NO_TEXT_WINDOW_STREAM
135 , public streambuf
136 #endif
137
138 {
139 public:
140 // creation
141 // --------
142
143 wxTextCtrlBase();
144 ~wxTextCtrlBase();
145
146 // accessors
147 // ---------
148
149 virtual wxString GetValue() const = 0;
150 virtual void SetValue(const wxString& value) = 0;
151
152 virtual int GetLineLength(long lineNo) const = 0;
153 virtual wxString GetLineText(long lineNo) const = 0;
154 virtual int GetNumberOfLines() const = 0;
155
156 virtual bool IsModified() const = 0;
157 virtual bool IsEditable() const = 0;
158
159 // If the return values from and to are the same, there is no selection.
160 virtual void GetSelection(long* from, long* to) const = 0;
161
162 // operations
163 // ----------
164
165 // editing
166 virtual void Clear() = 0;
167 virtual void Replace(long from, long to, const wxString& value) = 0;
168 virtual void Remove(long from, long to) = 0;
169
170 // load/save the controls contents from/to the file
171 virtual bool LoadFile(const wxString& file);
172 virtual bool SaveFile(const wxString& file = wxEmptyString);
173
174 // clears the dirty flag
175 virtual void DiscardEdits() = 0;
176
177 // writing text inserts it at the current position, appending always
178 // inserts it at the end
179 virtual void WriteText(const wxString& text) = 0;
180 virtual void AppendText(const wxString& text) = 0;
181
182 // text control under some platforms supports the text styles: these
183 // methods allow to apply the given text style to the given selection or to
184 // set/get the style which will be used for all appended text
185 virtual bool SetStyle(long start, long end, const wxTextAttr& style);
186 virtual bool SetDefaultStyle(const wxTextAttr& style);
187 virtual const wxTextAttr& GetDefaultStyle() const;
188
189 // translate between the position (which is just an index in the text ctrl
190 // considering all its contents as a single strings) and (x, y) coordinates
191 // which represent column and line.
192 virtual long XYToPosition(long x, long y) const = 0;
193 virtual bool PositionToXY(long pos, long *x, long *y) const = 0;
194
195 virtual void ShowPosition(long pos) = 0;
196
197 // Clipboard operations
198 virtual void Copy() = 0;
199 virtual void Cut() = 0;
200 virtual void Paste() = 0;
201
202 virtual bool CanCopy() const;
203 virtual bool CanCut() const;
204 virtual bool CanPaste() const;
205
206 // Undo/redo
207 virtual void Undo() = 0;
208 virtual void Redo() = 0;
209
210 virtual bool CanUndo() const = 0;
211 virtual bool CanRedo() const = 0;
212
213 // Insertion point
214 virtual void SetInsertionPoint(long pos) = 0;
215 virtual void SetInsertionPointEnd() = 0;
216 virtual long GetInsertionPoint() const = 0;
217 virtual long GetLastPosition() const = 0;
218
219 virtual void SetSelection(long from, long to) = 0;
220 virtual void SelectAll();
221 virtual void SetEditable(bool editable) = 0;
222
223 // streambuf methods
224 #ifndef NO_TEXT_WINDOW_STREAM
225 int overflow(int i);
226 int sync();
227 int underflow();
228 #endif // NO_TEXT_WINDOW_STREAM
229
230 // stream-like insertion operators: these are always available, whether we
231 // were, or not, compiled with streambuf support
232 wxTextCtrl& operator<<(const wxString& s);
233 wxTextCtrl& operator<<(int i);
234 wxTextCtrl& operator<<(long i);
235 wxTextCtrl& operator<<(float f);
236 wxTextCtrl& operator<<(double d);
237 wxTextCtrl& operator<<(const wxChar c);
238
239 // obsolete functions
240 #if WXWIN_COMPATIBILITY
241 bool Modified() const { return IsModified(); }
242 #endif
243
244 protected:
245 // the name of the last file loaded with LoadFile() which will be used by
246 // SaveFile() by default
247 wxString m_filename;
248
249 // the text style which will be used for any new text added to the control
250 wxTextAttr m_defaultStyle;
251
252 private:
253 #ifndef NO_TEXT_WINDOW_STREAM
254 #if !wxUSE_IOSTREAMH
255 char *m_streambuf;
256 #endif
257 #endif
258 };
259
260 // ----------------------------------------------------------------------------
261 // include the platform-dependent class definition
262 // ----------------------------------------------------------------------------
263
264 #if defined(__WXUNIVERSAL__)
265 #include "wx/univ/textctrl.h"
266 #elif defined(__WXMSW__)
267 #include "wx/msw/textctrl.h"
268 #elif defined(__WXMOTIF__)
269 #include "wx/motif/textctrl.h"
270 #elif defined(__WXGTK__)
271 #include "wx/gtk/textctrl.h"
272 #elif defined(__WXQT__)
273 #include "wx/qt/textctrl.h"
274 #elif defined(__WXMAC__)
275 #include "wx/mac/textctrl.h"
276 #elif defined(__WXPM__)
277 #include "wx/os2/textctrl.h"
278 #elif defined(__WXSTUBS__)
279 #include "wx/stubs/textctrl.h"
280 #endif
281
282 // ----------------------------------------------------------------------------
283 // wxTextCtrl events
284 // ----------------------------------------------------------------------------
285
286 #if !WXWIN_COMPATIBILITY_EVENT_TYPES
287
288 BEGIN_DECLARE_EVENT_TYPES()
289 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED, 7)
290 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER, 8)
291 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL, 13)
292 END_DECLARE_EVENT_TYPES()
293
294 #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
295
296 class WXDLLEXPORT wxTextUrlEvent : public wxCommandEvent
297 {
298 public:
299 wxTextUrlEvent(int id, const wxMouseEvent& evtMouse,
300 long start, long end)
301 : wxCommandEvent(wxEVT_COMMAND_TEXT_URL, id),
302 m_evtMouse(evtMouse)
303 { m_start = start; m_end = end; }
304
305 // get the mouse event which happend over the URL
306 const wxMouseEvent& GetMouseEvent() const { return m_evtMouse; }
307
308 // get the start of the URL
309 long GetURLStart() const { return m_start; }
310
311 // get the end of the URL
312 long GetURLEnd() const { return m_end; }
313
314 protected:
315 // the corresponding mouse event
316 wxMouseEvent m_evtMouse;
317
318 // the start and end indices of the URL in the text control
319 long m_start,
320 m_end;
321
322 private:
323 DECLARE_DYNAMIC_CLASS(wxTextUrlEvent)
324
325 public:
326 // for wxWin RTTI only, don't use
327 wxTextUrlEvent() { }
328 };
329
330 typedef void (wxEvtHandler::*wxTextUrlEventFunction)(wxTextUrlEvent&);
331
332 #define EVT_TEXT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
333 #define EVT_TEXT_ENTER(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
334 #define EVT_TEXT_URL(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TEXT_URL, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxTextUrlEventFunction) & fn, (wxObject *) NULL ),
335
336 #endif // wxUSE_TEXTCTRL
337
338 #endif
339 // _WX_TEXTCTRL_H_BASE_