]>
Commit | Line | Data |
---|---|---|
a1b82138 VZ |
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 | ||
34138703 JS |
12 | #ifndef _WX_TEXTCTRL_H_BASE_ |
13 | #define _WX_TEXTCTRL_H_BASE_ | |
c801d85f | 14 | |
a1b82138 VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
4bc1afd5 | 18 | |
bf3e0fbd KB |
19 | #ifdef __GNUG__ |
20 | #pragma interface "textctrlbase.h" | |
4bc1afd5 | 21 | #endif |
a1b82138 VZ |
22 | |
23 | #include "wx/defs.h" | |
1e6feb95 VZ |
24 | |
25 | #if wxUSE_TEXTCTRL | |
26 | ||
a1b82138 VZ |
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 | ||
d73e6791 VZ |
33 | #if (defined(__BORLANDC__)) || defined(__MWERKS__) || \ |
34 | defined(WXUSINGDLL) || defined(WXMAKINGDLL) | |
dd107c50 VZ |
35 | #define NO_TEXT_WINDOW_STREAM |
36 | #endif | |
37 | ||
a1b82138 | 38 | #ifndef NO_TEXT_WINDOW_STREAM |
324dbfec | 39 | #if wxUSE_STD_IOSTREAM |
bac507e0 | 40 | #include "wx/ioswrap.h" // for iostream classes if we need them |
a1b82138 VZ |
41 | #else // !wxUSE_STD_IOSTREAM |
42 | // can't compile this feature in if we don't use streams at all | |
43 | #define NO_TEXT_WINDOW_STREAM | |
44 | #endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM | |
45 | #endif | |
46 | ||
0efe5ba7 VZ |
47 | class WXDLLEXPORT wxTextCtrl; |
48 | ||
a1b82138 VZ |
49 | // ---------------------------------------------------------------------------- |
50 | // constants | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | WXDLLEXPORT_DATA(extern const wxChar*) wxTextCtrlNameStr; | |
54 | WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString; | |
55 | ||
c57e3339 VZ |
56 | // ---------------------------------------------------------------------------- |
57 | // wxTextCtrl style flags | |
58 | // ---------------------------------------------------------------------------- | |
59 | ||
60 | // the flag bits 0x0001, 2, 4 and 8 are free but should be used only for the | |
61 | // things which don't make sense for a text control used by wxTextEntryDialog | |
62 | // because they would otherwise conflict with wxOK, wxCANCEL, wxCENTRE | |
63 | #define wxTE_READONLY 0x0010 | |
64 | #define wxTE_MULTILINE 0x0020 | |
65 | #define wxTE_PROCESS_TAB 0x0040 | |
66 | ||
67 | // this style means to use RICHEDIT control and does something only under wxMSW | |
68 | // and Win32 and is silently ignored under all other platforms | |
69 | #define wxTE_RICH 0x0080 | |
70 | #define wxTE_NO_VSCROLL 0x0100 | |
71 | #define wxTE_AUTO_SCROLL 0x0200 | |
72 | #define wxTE_PROCESS_ENTER 0x0400 | |
73 | #define wxTE_PASSWORD 0x0800 | |
74 | ||
75 | // automatically detect the URLs and generate the events when mouse is | |
76 | // moved/clicked over an URL | |
77 | // | |
78 | // this is for Win32 richedit controls only so far | |
79 | #define wxTE_AUTO_URL 0x1000 | |
80 | ||
5a8f04e3 VZ |
81 | // by default, the Windows text control doesn't show the selection when it |
82 | // doesn't have focus - use this style to force it to always show it | |
83 | #define wxTE_NOHIDESEL 0x2000 | |
84 | ||
4bc1afd5 VZ |
85 | // ---------------------------------------------------------------------------- |
86 | // wxTextAttr: a structure containing the visual attributes of a text | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
89 | class WXDLLEXPORT wxTextAttr | |
90 | { | |
91 | public: | |
92 | // ctors | |
93 | wxTextAttr() { } | |
94 | wxTextAttr(const wxColour& colText, | |
95 | const wxColour& colBack = wxNullColour, | |
96 | const wxFont& font = wxNullFont) | |
97 | : m_colText(colText), m_colBack(colBack), m_font(font) { } | |
98 | ||
99 | // setters | |
100 | void SetTextColour(const wxColour& colText) { m_colText = colText; } | |
101 | void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; } | |
102 | void SetFont(const wxFont& font) { m_font = font; } | |
103 | ||
104 | // accessors | |
105 | bool HasTextColour() const { return m_colText.Ok(); } | |
106 | bool HasBackgroundColour() const { return m_colBack.Ok(); } | |
107 | bool HasFont() const { return m_font.Ok(); } | |
108 | ||
17665a2b | 109 | // setters |
4bc1afd5 VZ |
110 | const wxColour& GetTextColour() const { return m_colText; } |
111 | const wxColour& GetBackgroundColour() const { return m_colBack; } | |
112 | const wxFont& GetFont() const { return m_font; } | |
113 | ||
17665a2b VZ |
114 | // returns false if we have any attributes set, true otherwise |
115 | bool IsDefault() const | |
116 | { | |
117 | return !HasTextColour() && !HasBackgroundColour() && !HasFont(); | |
118 | } | |
119 | ||
4bc1afd5 VZ |
120 | private: |
121 | wxColour m_colText, | |
122 | m_colBack; | |
123 | wxFont m_font; | |
124 | }; | |
125 | ||
a1b82138 VZ |
126 | // ---------------------------------------------------------------------------- |
127 | // wxTextCtrl: a single or multiple line text zone where user can enter and | |
128 | // edit text | |
129 | // ---------------------------------------------------------------------------- | |
130 | ||
131 | class WXDLLEXPORT wxTextCtrlBase : public wxControl | |
132 | #ifndef NO_TEXT_WINDOW_STREAM | |
a90ec4ab | 133 | , public wxSTD streambuf |
a1b82138 VZ |
134 | #endif |
135 | ||
136 | { | |
137 | public: | |
138 | // creation | |
139 | // -------- | |
140 | ||
141 | wxTextCtrlBase(); | |
fa40e7a1 | 142 | ~wxTextCtrlBase(); |
a1b82138 VZ |
143 | |
144 | // accessors | |
145 | // --------- | |
146 | ||
147 | virtual wxString GetValue() const = 0; | |
148 | virtual void SetValue(const wxString& value) = 0; | |
149 | ||
150 | virtual int GetLineLength(long lineNo) const = 0; | |
151 | virtual wxString GetLineText(long lineNo) const = 0; | |
152 | virtual int GetNumberOfLines() const = 0; | |
153 | ||
154 | virtual bool IsModified() const = 0; | |
155 | virtual bool IsEditable() const = 0; | |
156 | ||
157 | // If the return values from and to are the same, there is no selection. | |
158 | virtual void GetSelection(long* from, long* to) const = 0; | |
159 | ||
160 | // operations | |
161 | // ---------- | |
162 | ||
163 | // editing | |
164 | virtual void Clear() = 0; | |
165 | virtual void Replace(long from, long to, const wxString& value) = 0; | |
166 | virtual void Remove(long from, long to) = 0; | |
167 | ||
168 | // load/save the controls contents from/to the file | |
169 | virtual bool LoadFile(const wxString& file); | |
170 | virtual bool SaveFile(const wxString& file = wxEmptyString); | |
171 | ||
172 | // clears the dirty flag | |
173 | virtual void DiscardEdits() = 0; | |
174 | ||
d7eee191 VZ |
175 | // set the max number of characters which may be entered in a single line |
176 | // text control | |
177 | virtual void SetMaxLength(unsigned long WXUNUSED(len)) { } | |
178 | ||
a1b82138 VZ |
179 | // writing text inserts it at the current position, appending always |
180 | // inserts it at the end | |
181 | virtual void WriteText(const wxString& text) = 0; | |
182 | virtual void AppendText(const wxString& text) = 0; | |
183 | ||
4bc1afd5 VZ |
184 | // text control under some platforms supports the text styles: these |
185 | // methods allow to apply the given text style to the given selection or to | |
186 | // set/get the style which will be used for all appended text | |
187 | virtual bool SetStyle(long start, long end, const wxTextAttr& style); | |
188 | virtual bool SetDefaultStyle(const wxTextAttr& style); | |
189 | virtual const wxTextAttr& GetDefaultStyle() const; | |
190 | ||
a1b82138 VZ |
191 | // translate between the position (which is just an index in the text ctrl |
192 | // considering all its contents as a single strings) and (x, y) coordinates | |
193 | // which represent column and line. | |
194 | virtual long XYToPosition(long x, long y) const = 0; | |
0efe5ba7 | 195 | virtual bool PositionToXY(long pos, long *x, long *y) const = 0; |
a1b82138 VZ |
196 | |
197 | virtual void ShowPosition(long pos) = 0; | |
198 | ||
199 | // Clipboard operations | |
200 | virtual void Copy() = 0; | |
201 | virtual void Cut() = 0; | |
202 | virtual void Paste() = 0; | |
203 | ||
1e6feb95 VZ |
204 | virtual bool CanCopy() const; |
205 | virtual bool CanCut() const; | |
206 | virtual bool CanPaste() const; | |
a1b82138 VZ |
207 | |
208 | // Undo/redo | |
209 | virtual void Undo() = 0; | |
210 | virtual void Redo() = 0; | |
211 | ||
212 | virtual bool CanUndo() const = 0; | |
213 | virtual bool CanRedo() const = 0; | |
214 | ||
215 | // Insertion point | |
216 | virtual void SetInsertionPoint(long pos) = 0; | |
217 | virtual void SetInsertionPointEnd() = 0; | |
218 | virtual long GetInsertionPoint() const = 0; | |
219 | virtual long GetLastPosition() const = 0; | |
220 | ||
221 | virtual void SetSelection(long from, long to) = 0; | |
1e6feb95 | 222 | virtual void SelectAll(); |
a1b82138 VZ |
223 | virtual void SetEditable(bool editable) = 0; |
224 | ||
d73e6791 | 225 | // override streambuf method |
a1b82138 VZ |
226 | #ifndef NO_TEXT_WINDOW_STREAM |
227 | int overflow(int i); | |
a1b82138 VZ |
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); | |
a324a7bc | 237 | wxTextCtrl& operator<<(const wxChar c); |
a1b82138 VZ |
238 | |
239 | // obsolete functions | |
240 | #if WXWIN_COMPATIBILITY | |
241 | bool Modified() const { return IsModified(); } | |
242 | #endif | |
243 | ||
5bd3a2da | 244 | protected: |
a1b82138 VZ |
245 | // the name of the last file loaded with LoadFile() which will be used by |
246 | // SaveFile() by default | |
247 | wxString m_filename; | |
fa40e7a1 | 248 | |
4bc1afd5 VZ |
249 | // the text style which will be used for any new text added to the control |
250 | wxTextAttr m_defaultStyle; | |
a1b82138 VZ |
251 | }; |
252 | ||
253 | // ---------------------------------------------------------------------------- | |
254 | // include the platform-dependent class definition | |
255 | // ---------------------------------------------------------------------------- | |
256 | ||
1e6feb95 VZ |
257 | #if defined(__WXUNIVERSAL__) |
258 | #include "wx/univ/textctrl.h" | |
259 | #elif defined(__WXMSW__) | |
a1b82138 | 260 | #include "wx/msw/textctrl.h" |
2049ba38 | 261 | #elif defined(__WXMOTIF__) |
a1b82138 | 262 | #include "wx/motif/textctrl.h" |
2049ba38 | 263 | #elif defined(__WXGTK__) |
a1b82138 | 264 | #include "wx/gtk/textctrl.h" |
34138703 | 265 | #elif defined(__WXMAC__) |
a1b82138 | 266 | #include "wx/mac/textctrl.h" |
1777b9bb DW |
267 | #elif defined(__WXPM__) |
268 | #include "wx/os2/textctrl.h" | |
34138703 | 269 | #elif defined(__WXSTUBS__) |
a1b82138 | 270 | #include "wx/stubs/textctrl.h" |
c801d85f KB |
271 | #endif |
272 | ||
c57e3339 VZ |
273 | // ---------------------------------------------------------------------------- |
274 | // wxTextCtrl events | |
275 | // ---------------------------------------------------------------------------- | |
276 | ||
ad0bae85 VZ |
277 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES |
278 | ||
c57e3339 VZ |
279 | BEGIN_DECLARE_EVENT_TYPES() |
280 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED, 7) | |
281 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER, 8) | |
282 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL, 13) | |
d7eee191 | 283 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_MAXLEN, 14) |
c57e3339 VZ |
284 | END_DECLARE_EVENT_TYPES() |
285 | ||
ad0bae85 VZ |
286 | #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES |
287 | ||
c57e3339 VZ |
288 | class WXDLLEXPORT wxTextUrlEvent : public wxCommandEvent |
289 | { | |
290 | public: | |
291 | wxTextUrlEvent(int id, const wxMouseEvent& evtMouse, | |
292 | long start, long end) | |
293 | : wxCommandEvent(wxEVT_COMMAND_TEXT_URL, id), | |
294 | m_evtMouse(evtMouse) | |
295 | { m_start = start; m_end = end; } | |
296 | ||
297 | // get the mouse event which happend over the URL | |
298 | const wxMouseEvent& GetMouseEvent() const { return m_evtMouse; } | |
299 | ||
300 | // get the start of the URL | |
301 | long GetURLStart() const { return m_start; } | |
302 | ||
303 | // get the end of the URL | |
304 | long GetURLEnd() const { return m_end; } | |
305 | ||
306 | protected: | |
307 | // the corresponding mouse event | |
308 | wxMouseEvent m_evtMouse; | |
309 | ||
310 | // the start and end indices of the URL in the text control | |
311 | long m_start, | |
312 | m_end; | |
313 | ||
314 | private: | |
315 | DECLARE_DYNAMIC_CLASS(wxTextUrlEvent) | |
316 | ||
317 | public: | |
318 | // for wxWin RTTI only, don't use | |
319 | wxTextUrlEvent() { } | |
320 | }; | |
321 | ||
322 | typedef void (wxEvtHandler::*wxTextUrlEventFunction)(wxTextUrlEvent&); | |
323 | ||
324 | #define EVT_TEXT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
325 | #define EVT_TEXT_ENTER(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
326 | #define EVT_TEXT_URL(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TEXT_URL, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxTextUrlEventFunction) & fn, (wxObject *) NULL ), | |
d7eee191 | 327 | #define EVT_TEXT_MAXLEN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TEXT_MAXLEN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
c57e3339 | 328 | |
d73e6791 VZ |
329 | #ifndef NO_TEXT_WINDOW_STREAM |
330 | ||
331 | // ---------------------------------------------------------------------------- | |
332 | // wxStreamToTextRedirector: this class redirects all data sent to the given | |
333 | // C++ stream to the wxTextCtrl given to its ctor during its lifetime. | |
334 | // ---------------------------------------------------------------------------- | |
335 | ||
336 | class WXDLLEXPORT wxStreamToTextRedirector | |
337 | { | |
338 | public: | |
339 | wxStreamToTextRedirector(wxTextCtrl *text, wxSTD ostream *ostr = NULL) | |
d20a079e | 340 | : m_ostr(ostr ? *ostr : wxSTD cout) |
d73e6791 VZ |
341 | { |
342 | m_sbufOld = m_ostr.rdbuf(); | |
343 | m_ostr.rdbuf(text); | |
344 | } | |
345 | ||
346 | ~wxStreamToTextRedirector() | |
347 | { | |
348 | m_ostr.rdbuf(m_sbufOld); | |
349 | } | |
350 | ||
351 | private: | |
352 | // the stream we're redirecting | |
353 | wxSTD ostream& m_ostr; | |
354 | ||
355 | // the old streambuf (before we changed it) | |
356 | wxSTD streambuf *m_sbufOld; | |
357 | }; | |
358 | ||
359 | #endif // !NO_TEXT_WINDOW_STREAM | |
360 | ||
1e6feb95 VZ |
361 | #endif // wxUSE_TEXTCTRL |
362 | ||
c801d85f | 363 | #endif |
34138703 | 364 | // _WX_TEXTCTRL_H_BASE_ |