]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
be5a51fb | 2 | // Program: wxWidgets Widgets Sample |
32b8ec41 VZ |
3 | // Name: textctrl.cpp |
4 | // Purpose: part of the widgets sample showing wxTextCtrl | |
5 | // Author: Vadim Zeitlin | |
6 | // Created: 27.03.01 | |
32b8ec41 | 7 | // Copyright: (c) 2001 Vadim Zeitlin |
526954c5 | 8 | // Licence: wxWindows licence |
32b8ec41 VZ |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | // for compilers that support precompilation, includes "wx/wx.h". | |
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
26 | // for all others, include the necessary headers | |
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/log.h" | |
29 | #include "wx/timer.h" | |
30 | ||
3bb70c40 | 31 | #include "wx/bitmap.h" |
32b8ec41 VZ |
32 | #include "wx/button.h" |
33 | #include "wx/checkbox.h" | |
34 | #include "wx/radiobox.h" | |
35 | #include "wx/statbox.h" | |
36 | #include "wx/stattext.h" | |
37 | #include "wx/textctrl.h" | |
286ff306 | 38 | #include "wx/msgdlg.h" |
32b8ec41 VZ |
39 | #endif |
40 | ||
41 | #include "wx/sizer.h" | |
15cdc341 | 42 | #include "wx/ioswrap.h" |
32b8ec41 VZ |
43 | |
44 | #include "widgets.h" | |
45 | ||
46 | #include "icons/text.xpm" | |
47 | ||
48 | // ---------------------------------------------------------------------------- | |
49 | // constants | |
50 | // ---------------------------------------------------------------------------- | |
51 | ||
52 | // control ids | |
53 | enum | |
54 | { | |
f0fa4312 | 55 | TextPage_Reset = wxID_HIGHEST, |
32b8ec41 VZ |
56 | |
57 | TextPage_Set, | |
58 | TextPage_Add, | |
59 | TextPage_Insert, | |
60 | TextPage_Clear, | |
61 | TextPage_Load, | |
62 | ||
286ff306 WS |
63 | TextPage_StreamRedirector, |
64 | ||
32b8ec41 VZ |
65 | TextPage_Password, |
66 | TextPage_WrapLines, | |
67 | TextPage_Textctrl | |
68 | }; | |
69 | ||
70 | // textctrl line number radiobox values | |
71 | enum TextLines | |
72 | { | |
73 | TextLines_Single, | |
fb4888a6 VZ |
74 | TextLines_Multi, |
75 | TextLines_Max | |
76 | }; | |
77 | ||
78 | // wrap style radio box | |
79 | enum WrapStyle | |
80 | { | |
81 | WrapStyle_None, | |
82 | WrapStyle_Word, | |
83 | WrapStyle_Char, | |
84 | WrapStyle_Best, | |
85 | WrapStyle_Max | |
32b8ec41 VZ |
86 | }; |
87 | ||
64b54de8 VZ |
88 | #ifdef __WXMSW__ |
89 | ||
90 | // textctrl kind values | |
91 | enum TextKind | |
92 | { | |
93 | TextKind_Plain, | |
94 | TextKind_Rich, | |
fb4888a6 VZ |
95 | TextKind_Rich2, |
96 | TextKind_Max | |
64b54de8 VZ |
97 | }; |
98 | ||
99 | #endif // __WXMSW__ | |
100 | ||
32b8ec41 VZ |
101 | // default values for the controls |
102 | static const struct ControlValues | |
103 | { | |
104 | TextLines textLines; | |
fb4888a6 | 105 | |
32b8ec41 | 106 | bool password; |
32b8ec41 | 107 | bool readonly; |
2d1e63c0 | 108 | bool processEnter; |
5f6475c1 | 109 | bool filename; |
fb4888a6 VZ |
110 | |
111 | WrapStyle wrapStyle; | |
112 | ||
64b54de8 VZ |
113 | #ifdef __WXMSW__ |
114 | TextKind textKind; | |
115 | #endif // __WXMSW__ | |
32b8ec41 VZ |
116 | } DEFAULTS = |
117 | { | |
118 | TextLines_Multi, // multiline | |
206d3a16 | 119 | false, // not password |
206d3a16 | 120 | false, // not readonly |
2d1e63c0 | 121 | true, // do process enter |
5f6475c1 | 122 | false, // not filename |
fb4888a6 | 123 | WrapStyle_Word, // wrap on word boundaries |
64b54de8 VZ |
124 | #ifdef __WXMSW__ |
125 | TextKind_Plain // plain EDIT control | |
126 | #endif // __WXMSW__ | |
32b8ec41 VZ |
127 | }; |
128 | ||
129 | // ---------------------------------------------------------------------------- | |
130 | // TextWidgetsPage | |
131 | // ---------------------------------------------------------------------------- | |
132 | ||
133 | // Define a new frame type: this is going to be our main frame | |
134 | class TextWidgetsPage : public WidgetsPage | |
135 | { | |
136 | public: | |
137 | // ctor(s) and dtor | |
f2fdc4d5 | 138 | TextWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist); |
8f6eaec9 | 139 | virtual ~TextWidgetsPage(){}; |
32b8ec41 | 140 | |
195df7a7 | 141 | virtual wxControl *GetWidget() const { return m_text; } |
6a8d7937 | 142 | virtual wxTextEntryBase *GetTextEntry() const { return m_text; } |
1301e228 | 143 | virtual void RecreateWidget() { CreateText(); } |
195df7a7 | 144 | |
453535a7 WS |
145 | // lazy creation of the content |
146 | virtual void CreateContent(); | |
147 | ||
32b8ec41 VZ |
148 | protected: |
149 | // create an info text contorl | |
150 | wxTextCtrl *CreateInfoText(); | |
151 | ||
152 | // create a horz sizer holding a static text and this text control | |
153 | wxSizer *CreateTextWithLabelSizer(const wxString& label, | |
154 | wxTextCtrl *text, | |
155 | const wxString& label2 = wxEmptyString, | |
156 | wxTextCtrl *text2 = NULL); | |
157 | ||
158 | // event handlers | |
159 | void OnButtonReset(wxCommandEvent& event); | |
160 | void OnButtonClearLog(wxCommandEvent& event); | |
161 | ||
162 | void OnButtonSet(wxCommandEvent& event); | |
163 | void OnButtonAdd(wxCommandEvent& event); | |
164 | void OnButtonInsert(wxCommandEvent& event); | |
165 | void OnButtonClear(wxCommandEvent& event); | |
166 | void OnButtonLoad(wxCommandEvent& event); | |
167 | ||
286ff306 | 168 | void OnStreamRedirector(wxCommandEvent& event); |
32b8ec41 VZ |
169 | void OnButtonQuit(wxCommandEvent& event); |
170 | ||
171 | void OnText(wxCommandEvent& event); | |
172 | void OnTextEnter(wxCommandEvent& event); | |
10434560 | 173 | void OnTextPasted(wxClipboardTextEvent& event); |
32b8ec41 VZ |
174 | |
175 | void OnCheckOrRadioBox(wxCommandEvent& event); | |
176 | ||
177 | void OnUpdateUIClearButton(wxUpdateUIEvent& event); | |
178 | ||
179 | void OnUpdateUIPasswordCheckbox(wxUpdateUIEvent& event); | |
180 | void OnUpdateUIWrapLinesCheckbox(wxUpdateUIEvent& event); | |
181 | ||
182 | void OnUpdateUIResetButton(wxUpdateUIEvent& event); | |
183 | ||
184 | void OnIdle(wxIdleEvent& event); | |
185 | ||
186 | // reset the textctrl parameters | |
187 | void Reset(); | |
188 | ||
189 | // (re)create the textctrl | |
190 | void CreateText(); | |
191 | ||
192 | // is the control currently single line? | |
193 | bool IsSingleLine() const | |
194 | { | |
195 | return m_radioTextLines->GetSelection() == TextLines_Single; | |
196 | } | |
197 | ||
198 | // the controls | |
199 | // ------------ | |
200 | ||
201 | // the radiobox to choose between single and multi line | |
202 | wxRadioBox *m_radioTextLines; | |
203 | ||
fb4888a6 VZ |
204 | // and another one to choose the wrapping style |
205 | wxRadioBox *m_radioWrap; | |
206 | ||
32b8ec41 VZ |
207 | // the checkboxes controlling text ctrl styles |
208 | wxCheckBox *m_chkPassword, | |
5f6475c1 | 209 | *m_chkReadonly, |
2d1e63c0 | 210 | *m_chkProcessEnter, |
5f6475c1 | 211 | *m_chkFilename; |
32b8ec41 | 212 | |
64b54de8 VZ |
213 | // under MSW we test rich edit controls as well here |
214 | #ifdef __WXMSW__ | |
215 | wxRadioBox *m_radioKind; | |
216 | #endif // __WXMSW__ | |
217 | ||
32b8ec41 VZ |
218 | // the textctrl itself and the sizer it is in |
219 | wxTextCtrl *m_text; | |
220 | wxSizer *m_sizerText; | |
221 | ||
222 | // the information text zones | |
223 | wxTextCtrl *m_textPosCur, | |
224 | *m_textRowCur, | |
225 | *m_textColCur, | |
226 | *m_textPosLast, | |
227 | *m_textLineLast, | |
228 | *m_textSelFrom, | |
64b54de8 VZ |
229 | *m_textSelTo, |
230 | *m_textRange; | |
32b8ec41 VZ |
231 | |
232 | // and the data to show in them | |
233 | long m_posCur, | |
234 | m_posLast, | |
235 | m_selFrom, | |
236 | m_selTo; | |
237 | ||
626117f7 VZ |
238 | wxString m_range10_20; |
239 | ||
32b8ec41 | 240 | private: |
be5a51fb | 241 | // any class wishing to process wxWidgets events must use this macro |
5e173f35 GD |
242 | DECLARE_EVENT_TABLE() |
243 | DECLARE_WIDGETS_PAGE(TextWidgetsPage) | |
32b8ec41 VZ |
244 | }; |
245 | ||
efe66bbc VZ |
246 | // ---------------------------------------------------------------------------- |
247 | // WidgetsTextCtrl | |
248 | // ---------------------------------------------------------------------------- | |
249 | ||
250 | class WidgetsTextCtrl : public wxTextCtrl | |
251 | { | |
252 | public: | |
253 | WidgetsTextCtrl(wxWindow *parent, | |
254 | wxWindowID id, | |
255 | const wxString& value, | |
256 | int flags) | |
257 | : wxTextCtrl(parent, id, value, wxDefaultPosition, wxDefaultSize, flags) | |
258 | { | |
259 | } | |
260 | ||
261 | protected: | |
262 | void OnRightClick(wxMouseEvent& event) | |
263 | { | |
264 | wxString where; | |
265 | wxTextCoord x, y; | |
266 | switch ( HitTest(event.GetPosition(), &x, &y) ) | |
267 | { | |
268 | default: | |
9a83f860 | 269 | wxFAIL_MSG( wxT("unexpected HitTest() result") ); |
efe66bbc VZ |
270 | // fall through |
271 | ||
272 | case wxTE_HT_UNKNOWN: | |
273 | x = y = -1; | |
9a83f860 | 274 | where = wxT("nowhere near"); |
efe66bbc VZ |
275 | break; |
276 | ||
277 | case wxTE_HT_BEFORE: | |
9a83f860 | 278 | where = wxT("before"); |
efe66bbc VZ |
279 | break; |
280 | ||
281 | case wxTE_HT_BELOW: | |
9a83f860 | 282 | where = wxT("below"); |
efe66bbc VZ |
283 | break; |
284 | ||
285 | case wxTE_HT_BEYOND: | |
9a83f860 | 286 | where = wxT("beyond"); |
efe66bbc VZ |
287 | break; |
288 | ||
289 | case wxTE_HT_ON_TEXT: | |
9a83f860 | 290 | where = wxT("at"); |
efe66bbc VZ |
291 | break; |
292 | } | |
293 | ||
9a83f860 | 294 | wxLogMessage(wxT("Mouse is %s (%ld, %ld)"), where.c_str(), x, y); |
efe66bbc VZ |
295 | |
296 | event.Skip(); | |
297 | } | |
298 | ||
299 | private: | |
300 | DECLARE_EVENT_TABLE() | |
301 | }; | |
302 | ||
32b8ec41 VZ |
303 | // ---------------------------------------------------------------------------- |
304 | // event tables | |
305 | // ---------------------------------------------------------------------------- | |
306 | ||
307 | BEGIN_EVENT_TABLE(TextWidgetsPage, WidgetsPage) | |
308 | EVT_IDLE(TextWidgetsPage::OnIdle) | |
309 | ||
310 | EVT_BUTTON(TextPage_Reset, TextWidgetsPage::OnButtonReset) | |
311 | ||
286ff306 WS |
312 | EVT_BUTTON(TextPage_StreamRedirector, TextWidgetsPage::OnStreamRedirector) |
313 | ||
32b8ec41 VZ |
314 | EVT_BUTTON(TextPage_Clear, TextWidgetsPage::OnButtonClear) |
315 | EVT_BUTTON(TextPage_Set, TextWidgetsPage::OnButtonSet) | |
316 | EVT_BUTTON(TextPage_Add, TextWidgetsPage::OnButtonAdd) | |
317 | EVT_BUTTON(TextPage_Insert, TextWidgetsPage::OnButtonInsert) | |
318 | EVT_BUTTON(TextPage_Load, TextWidgetsPage::OnButtonLoad) | |
319 | ||
320 | EVT_UPDATE_UI(TextPage_Clear, TextWidgetsPage::OnUpdateUIClearButton) | |
321 | ||
322 | EVT_UPDATE_UI(TextPage_Password, TextWidgetsPage::OnUpdateUIPasswordCheckbox) | |
323 | EVT_UPDATE_UI(TextPage_WrapLines, TextWidgetsPage::OnUpdateUIWrapLinesCheckbox) | |
324 | ||
325 | EVT_UPDATE_UI(TextPage_Reset, TextWidgetsPage::OnUpdateUIResetButton) | |
326 | ||
327 | EVT_TEXT(TextPage_Textctrl, TextWidgetsPage::OnText) | |
328 | EVT_TEXT_ENTER(TextPage_Textctrl, TextWidgetsPage::OnTextEnter) | |
10434560 | 329 | EVT_TEXT_PASTE(TextPage_Textctrl, TextWidgetsPage::OnTextPasted) |
32b8ec41 | 330 | |
206d3a16 JS |
331 | EVT_CHECKBOX(wxID_ANY, TextWidgetsPage::OnCheckOrRadioBox) |
332 | EVT_RADIOBOX(wxID_ANY, TextWidgetsPage::OnCheckOrRadioBox) | |
32b8ec41 VZ |
333 | END_EVENT_TABLE() |
334 | ||
efe66bbc VZ |
335 | BEGIN_EVENT_TABLE(WidgetsTextCtrl, wxTextCtrl) |
336 | EVT_RIGHT_UP(WidgetsTextCtrl::OnRightClick) | |
337 | END_EVENT_TABLE() | |
338 | ||
32b8ec41 VZ |
339 | // ============================================================================ |
340 | // implementation | |
341 | // ============================================================================ | |
342 | ||
f0fa4312 WS |
343 | #if defined(__WXX11__) |
344 | #define FAMILY_CTRLS NATIVE_CTRLS | |
345 | #elif defined(__WXUNIVERSAL__) | |
346 | #define FAMILY_CTRLS UNIVERSAL_CTRLS | |
347 | #else | |
348 | #define FAMILY_CTRLS NATIVE_CTRLS | |
349 | #endif | |
350 | ||
9a83f860 | 351 | IMPLEMENT_WIDGETS_PAGE(TextWidgetsPage, wxT("Text"), |
f0fa4312 | 352 | FAMILY_CTRLS | EDITABLE_CTRLS |
f2fdc4d5 | 353 | ); |
32b8ec41 VZ |
354 | |
355 | // ---------------------------------------------------------------------------- | |
356 | // TextWidgetsPage creation | |
357 | // ---------------------------------------------------------------------------- | |
358 | ||
f2fdc4d5 | 359 | TextWidgetsPage::TextWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist) |
261357eb | 360 | : WidgetsPage(book, imaglist, text_xpm) |
32b8ec41 | 361 | { |
32b8ec41 | 362 | // init everything |
64b54de8 VZ |
363 | #ifdef __WXMSW__ |
364 | m_radioKind = | |
365 | #endif // __WXMSW__ | |
fb4888a6 | 366 | m_radioWrap = |
32b8ec41 VZ |
367 | m_radioTextLines = (wxRadioBox *)NULL; |
368 | ||
369 | m_chkPassword = | |
5f6475c1 | 370 | m_chkReadonly = |
2d1e63c0 | 371 | m_chkProcessEnter = |
5f6475c1 | 372 | m_chkFilename = (wxCheckBox *)NULL; |
32b8ec41 VZ |
373 | |
374 | m_text = | |
375 | m_textPosCur = | |
376 | m_textRowCur = | |
377 | m_textColCur = | |
378 | m_textPosLast = | |
379 | m_textLineLast = | |
380 | m_textSelFrom = | |
64b54de8 VZ |
381 | m_textSelTo = |
382 | m_textRange = (wxTextCtrl *)NULL; | |
383 | ||
32b8ec41 VZ |
384 | m_sizerText = (wxSizer *)NULL; |
385 | ||
386 | m_posCur = | |
387 | m_posLast = | |
388 | m_selFrom = | |
389 | m_selTo = -2; // not -1 which means "no selection" | |
453535a7 | 390 | } |
32b8ec41 | 391 | |
453535a7 WS |
392 | void TextWidgetsPage::CreateContent() |
393 | { | |
32b8ec41 VZ |
394 | // left pane |
395 | static const wxString modes[] = | |
396 | { | |
9a83f860 VZ |
397 | wxT("single line"), |
398 | wxT("multi line"), | |
32b8ec41 VZ |
399 | }; |
400 | ||
9a83f860 VZ |
401 | wxStaticBox *box = new wxStaticBox(this, wxID_ANY, wxT("&Set textctrl parameters")); |
402 | m_radioTextLines = new wxRadioBox(this, wxID_ANY, wxT("&Number of lines:"), | |
32b8ec41 VZ |
403 | wxDefaultPosition, wxDefaultSize, |
404 | WXSIZEOF(modes), modes, | |
405 | 1, wxRA_SPECIFY_COLS); | |
406 | ||
407 | wxSizer *sizerLeft = new wxStaticBoxSizer(box, wxVERTICAL); | |
408 | ||
409 | sizerLeft->Add(m_radioTextLines, 0, wxGROW | wxALL, 5); | |
fb4888a6 | 410 | sizerLeft->AddSpacer(5); |
32b8ec41 VZ |
411 | |
412 | m_chkPassword = CreateCheckBoxAndAddToSizer( | |
9a83f860 | 413 | sizerLeft, wxT("&Password control"), TextPage_Password |
32b8ec41 | 414 | ); |
32b8ec41 | 415 | m_chkReadonly = CreateCheckBoxAndAddToSizer( |
9a83f860 | 416 | sizerLeft, wxT("&Read-only mode") |
32b8ec41 | 417 | ); |
2d1e63c0 VZ |
418 | m_chkProcessEnter = CreateCheckBoxAndAddToSizer( |
419 | sizerLeft, wxT("Process &Enter") | |
420 | ); | |
5f6475c1 | 421 | m_chkFilename = CreateCheckBoxAndAddToSizer( |
9a83f860 | 422 | sizerLeft, wxT("&Filename control") |
5f6475c1 | 423 | ); |
55b43eaa | 424 | m_chkFilename->Disable(); // not implemented yet |
fb4888a6 VZ |
425 | sizerLeft->AddSpacer(5); |
426 | ||
427 | static const wxString wrap[] = | |
428 | { | |
9a83f860 VZ |
429 | wxT("no wrap"), |
430 | wxT("word wrap"), | |
431 | wxT("char wrap"), | |
432 | wxT("best wrap"), | |
fb4888a6 VZ |
433 | }; |
434 | ||
9a83f860 | 435 | m_radioWrap = new wxRadioBox(this, wxID_ANY, wxT("&Wrap style:"), |
fb4888a6 VZ |
436 | wxDefaultPosition, wxDefaultSize, |
437 | WXSIZEOF(wrap), wrap, | |
438 | 1, wxRA_SPECIFY_COLS); | |
439 | sizerLeft->Add(m_radioWrap, 0, wxGROW | wxALL, 5); | |
32b8ec41 | 440 | |
64b54de8 VZ |
441 | #ifdef __WXMSW__ |
442 | static const wxString kinds[] = | |
443 | { | |
9a83f860 VZ |
444 | wxT("plain edit"), |
445 | wxT("rich edit"), | |
446 | wxT("rich edit 2.0"), | |
64b54de8 VZ |
447 | }; |
448 | ||
9a83f860 | 449 | m_radioKind = new wxRadioBox(this, wxID_ANY, wxT("Control &kind"), |
64b54de8 VZ |
450 | wxDefaultPosition, wxDefaultSize, |
451 | WXSIZEOF(kinds), kinds, | |
452 | 1, wxRA_SPECIFY_COLS); | |
453 | ||
fb4888a6 | 454 | sizerLeft->AddSpacer(5); |
64b54de8 VZ |
455 | sizerLeft->Add(m_radioKind, 0, wxGROW | wxALL, 5); |
456 | #endif // __WXMSW__ | |
457 | ||
9a83f860 | 458 | wxButton *btn = new wxButton(this, TextPage_Reset, wxT("&Reset")); |
7b127900 | 459 | sizerLeft->Add(2, 2, 0, wxGROW | wxALL, 1); // spacer |
32b8ec41 VZ |
460 | sizerLeft->Add(btn, 0, wxALIGN_CENTRE_HORIZONTAL | wxALL, 15); |
461 | ||
462 | // middle pane | |
9a83f860 | 463 | wxStaticBox *box2 = new wxStaticBox(this, wxID_ANY, wxT("&Change contents:")); |
32b8ec41 VZ |
464 | wxSizer *sizerMiddleUp = new wxStaticBoxSizer(box2, wxVERTICAL); |
465 | ||
9a83f860 | 466 | btn = new wxButton(this, TextPage_Set, wxT("&Set text value")); |
7b127900 | 467 | sizerMiddleUp->Add(btn, 0, wxALL | wxGROW, 1); |
32b8ec41 | 468 | |
9a83f860 | 469 | btn = new wxButton(this, TextPage_Add, wxT("&Append text")); |
7b127900 | 470 | sizerMiddleUp->Add(btn, 0, wxALL | wxGROW, 1); |
32b8ec41 | 471 | |
9a83f860 | 472 | btn = new wxButton(this, TextPage_Insert, wxT("&Insert text")); |
7b127900 | 473 | sizerMiddleUp->Add(btn, 0, wxALL | wxGROW, 1); |
32b8ec41 | 474 | |
9a83f860 | 475 | btn = new wxButton(this, TextPage_Load, wxT("&Load file")); |
7b127900 | 476 | sizerMiddleUp->Add(btn, 0, wxALL | wxGROW, 1); |
32b8ec41 | 477 | |
9a83f860 | 478 | btn = new wxButton(this, TextPage_Clear, wxT("&Clear")); |
7b127900 | 479 | sizerMiddleUp->Add(btn, 0, wxALL | wxGROW, 1); |
32b8ec41 | 480 | |
9a83f860 | 481 | btn = new wxButton(this, TextPage_StreamRedirector, wxT("St&ream redirection")); |
286ff306 WS |
482 | sizerMiddleUp->Add(btn, 0, wxALL | wxGROW, 1); |
483 | ||
9a83f860 | 484 | wxStaticBox *box4 = new wxStaticBox(this, wxID_ANY, wxT("&Info:")); |
32b8ec41 VZ |
485 | wxSizer *sizerMiddleDown = new wxStaticBoxSizer(box4, wxVERTICAL); |
486 | ||
487 | m_textPosCur = CreateInfoText(); | |
488 | m_textRowCur = CreateInfoText(); | |
489 | m_textColCur = CreateInfoText(); | |
490 | ||
491 | wxSizer *sizerRow = new wxBoxSizer(wxHORIZONTAL); | |
492 | sizerRow->Add(CreateTextWithLabelSizer | |
493 | ( | |
9a83f860 | 494 | wxT("Current pos:"), |
32b8ec41 VZ |
495 | m_textPosCur |
496 | ), | |
497 | 0, wxRIGHT, 5); | |
498 | sizerRow->Add(CreateTextWithLabelSizer | |
499 | ( | |
9a83f860 | 500 | wxT("Col:"), |
32b8ec41 VZ |
501 | m_textColCur |
502 | ), | |
503 | 0, wxLEFT | wxRIGHT, 5); | |
504 | sizerRow->Add(CreateTextWithLabelSizer | |
505 | ( | |
9a83f860 | 506 | wxT("Row:"), |
32b8ec41 VZ |
507 | m_textRowCur |
508 | ), | |
509 | 0, wxLEFT, 5); | |
510 | sizerMiddleDown->Add(sizerRow, 0, wxALL, 5); | |
511 | ||
512 | m_textLineLast = CreateInfoText(); | |
513 | m_textPosLast = CreateInfoText(); | |
514 | sizerMiddleDown->Add | |
515 | ( | |
516 | CreateTextWithLabelSizer | |
517 | ( | |
9a83f860 | 518 | wxT("Number of lines:"), |
32b8ec41 | 519 | m_textLineLast, |
9a83f860 | 520 | wxT("Last position:"), |
32b8ec41 VZ |
521 | m_textPosLast |
522 | ), | |
523 | 0, wxALL, 5 | |
524 | ); | |
525 | ||
526 | m_textSelFrom = CreateInfoText(); | |
527 | m_textSelTo = CreateInfoText(); | |
528 | sizerMiddleDown->Add | |
529 | ( | |
530 | CreateTextWithLabelSizer | |
531 | ( | |
9a83f860 | 532 | wxT("Selection: from"), |
32b8ec41 | 533 | m_textSelFrom, |
9a83f860 | 534 | wxT("to"), |
32b8ec41 VZ |
535 | m_textSelTo |
536 | ), | |
537 | 0, wxALL, 5 | |
538 | ); | |
64b54de8 | 539 | |
206d3a16 | 540 | m_textRange = new wxTextCtrl(this, wxID_ANY, wxEmptyString, |
64b54de8 VZ |
541 | wxDefaultPosition, wxDefaultSize, |
542 | wxTE_READONLY); | |
543 | sizerMiddleDown->Add | |
544 | ( | |
545 | CreateTextWithLabelSizer | |
546 | ( | |
9a83f860 | 547 | wxT("Range 10..20:"), |
64b54de8 VZ |
548 | m_textRange |
549 | ), | |
550 | 0, wxALL, 5 | |
551 | ); | |
552 | ||
32b8ec41 VZ |
553 | wxSizer *sizerMiddle = new wxBoxSizer(wxVERTICAL); |
554 | sizerMiddle->Add(sizerMiddleUp, 0, wxGROW); | |
555 | sizerMiddle->Add(sizerMiddleDown, 1, wxGROW | wxTOP, 5); | |
556 | ||
557 | // right pane | |
9a83f860 | 558 | wxStaticBox *box3 = new wxStaticBox(this, wxID_ANY, wxT("&Text:")); |
32b8ec41 VZ |
559 | m_sizerText = new wxStaticBoxSizer(box3, wxHORIZONTAL); |
560 | Reset(); | |
561 | CreateText(); | |
7b127900 | 562 | m_sizerText->SetMinSize(150, 0); |
32b8ec41 VZ |
563 | |
564 | // the 3 panes panes compose the upper part of the window | |
565 | wxSizer *sizerTop = new wxBoxSizer(wxHORIZONTAL); | |
566 | sizerTop->Add(sizerLeft, 0, wxGROW | (wxALL & ~wxLEFT), 10); | |
567 | sizerTop->Add(sizerMiddle, 0, wxGROW | wxALL, 10); | |
568 | sizerTop->Add(m_sizerText, 1, wxGROW | (wxALL & ~wxRIGHT), 10); | |
569 | ||
32b8ec41 | 570 | SetSizer(sizerTop); |
32b8ec41 VZ |
571 | } |
572 | ||
32b8ec41 VZ |
573 | // ---------------------------------------------------------------------------- |
574 | // creation helpers | |
575 | // ---------------------------------------------------------------------------- | |
576 | ||
577 | wxTextCtrl *TextWidgetsPage::CreateInfoText() | |
578 | { | |
579 | static int s_maxWidth = 0; | |
580 | if ( !s_maxWidth ) | |
581 | { | |
582 | // calc it once only | |
9a83f860 | 583 | GetTextExtent(wxT("9999999"), &s_maxWidth, NULL); |
32b8ec41 VZ |
584 | } |
585 | ||
206d3a16 | 586 | wxTextCtrl *text = new wxTextCtrl(this, wxID_ANY, wxEmptyString, |
32b8ec41 | 587 | wxDefaultPosition, |
15cdc341 | 588 | wxSize(s_maxWidth, wxDefaultCoord), |
32b8ec41 VZ |
589 | wxTE_READONLY); |
590 | return text; | |
591 | } | |
592 | ||
593 | wxSizer *TextWidgetsPage::CreateTextWithLabelSizer(const wxString& label, | |
594 | wxTextCtrl *text, | |
595 | const wxString& label2, | |
596 | wxTextCtrl *text2) | |
597 | { | |
598 | wxSizer *sizerRow = new wxBoxSizer(wxHORIZONTAL); | |
206d3a16 | 599 | sizerRow->Add(new wxStaticText(this, wxID_ANY, label), 0, |
32b8ec41 VZ |
600 | wxALIGN_CENTRE_VERTICAL | wxRIGHT, 5); |
601 | sizerRow->Add(text, 0, wxALIGN_CENTRE_VERTICAL); | |
602 | if ( text2 ) | |
603 | { | |
206d3a16 | 604 | sizerRow->Add(new wxStaticText(this, wxID_ANY, label2), 0, |
32b8ec41 VZ |
605 | wxALIGN_CENTRE_VERTICAL | wxLEFT | wxRIGHT, 5); |
606 | sizerRow->Add(text2, 0, wxALIGN_CENTRE_VERTICAL); | |
607 | } | |
608 | ||
609 | return sizerRow; | |
610 | } | |
611 | ||
612 | // ---------------------------------------------------------------------------- | |
613 | // operations | |
614 | // ---------------------------------------------------------------------------- | |
615 | ||
616 | void TextWidgetsPage::Reset() | |
617 | { | |
618 | m_radioTextLines->SetSelection(DEFAULTS.textLines); | |
fb4888a6 | 619 | |
32b8ec41 | 620 | m_chkPassword->SetValue(DEFAULTS.password); |
32b8ec41 | 621 | m_chkReadonly->SetValue(DEFAULTS.readonly); |
2d1e63c0 | 622 | m_chkProcessEnter->SetValue(DEFAULTS.processEnter); |
5f6475c1 | 623 | m_chkFilename->SetValue(DEFAULTS.filename); |
fb4888a6 VZ |
624 | |
625 | m_radioWrap->SetSelection(DEFAULTS.wrapStyle); | |
626 | ||
64b54de8 VZ |
627 | #ifdef __WXMSW__ |
628 | m_radioKind->SetSelection(DEFAULTS.textKind); | |
629 | #endif // __WXMSW__ | |
32b8ec41 VZ |
630 | } |
631 | ||
632 | void TextWidgetsPage::CreateText() | |
633 | { | |
1301e228 | 634 | int flags = ms_defaultFlags; |
32b8ec41 VZ |
635 | switch ( m_radioTextLines->GetSelection() ) |
636 | { | |
637 | default: | |
9a83f860 | 638 | wxFAIL_MSG( wxT("unexpected lines radio box selection") ); |
32b8ec41 VZ |
639 | |
640 | case TextLines_Single: | |
641 | break; | |
642 | ||
643 | case TextLines_Multi: | |
644 | flags |= wxTE_MULTILINE; | |
206d3a16 | 645 | m_chkPassword->SetValue(false); |
32b8ec41 VZ |
646 | break; |
647 | } | |
648 | ||
649 | if ( m_chkPassword->GetValue() ) | |
650 | flags |= wxTE_PASSWORD; | |
651 | if ( m_chkReadonly->GetValue() ) | |
652 | flags |= wxTE_READONLY; | |
2d1e63c0 VZ |
653 | if ( m_chkProcessEnter->GetValue() ) |
654 | flags |= wxTE_PROCESS_ENTER; | |
fb4888a6 VZ |
655 | |
656 | switch ( m_radioWrap->GetSelection() ) | |
657 | { | |
658 | default: | |
9a83f860 | 659 | wxFAIL_MSG( wxT("unexpected wrap style radio box selection") ); |
fb4888a6 VZ |
660 | |
661 | case WrapStyle_None: | |
662 | flags |= wxTE_DONTWRAP; // same as wxHSCROLL | |
663 | break; | |
664 | ||
665 | case WrapStyle_Word: | |
666 | flags |= wxTE_WORDWRAP; | |
667 | break; | |
668 | ||
669 | case WrapStyle_Char: | |
40ff126a | 670 | flags |= wxTE_CHARWRAP; |
fb4888a6 VZ |
671 | break; |
672 | ||
673 | case WrapStyle_Best: | |
674 | // this is default but use symbolic file name for consistency | |
675 | flags |= wxTE_BESTWRAP; | |
676 | break; | |
677 | } | |
32b8ec41 | 678 | |
64b54de8 VZ |
679 | #ifdef __WXMSW__ |
680 | switch ( m_radioKind->GetSelection() ) | |
681 | { | |
682 | default: | |
9a83f860 | 683 | wxFAIL_MSG( wxT("unexpected kind radio box selection") ); |
64b54de8 VZ |
684 | |
685 | case TextKind_Plain: | |
686 | break; | |
687 | ||
688 | case TextKind_Rich: | |
689 | flags |= wxTE_RICH; | |
690 | break; | |
691 | ||
692 | case TextKind_Rich2: | |
693 | flags |= wxTE_RICH2; | |
694 | break; | |
695 | } | |
696 | #endif // __WXMSW__ | |
697 | ||
32b8ec41 VZ |
698 | wxString valueOld; |
699 | if ( m_text ) | |
700 | { | |
701 | valueOld = m_text->GetValue(); | |
702 | ||
12a3f227 | 703 | m_sizerText->Detach( m_text ); |
32b8ec41 VZ |
704 | delete m_text; |
705 | } | |
706 | else | |
707 | { | |
9a83f860 | 708 | valueOld = wxT("Hello, Universe!"); |
32b8ec41 VZ |
709 | } |
710 | ||
efe66bbc | 711 | m_text = new WidgetsTextCtrl(this, TextPage_Textctrl, valueOld, flags); |
72383a72 | 712 | |
55b43eaa VZ |
713 | #if 0 |
714 | if ( m_chkFilename->GetValue() ) | |
715 | ; | |
716 | #endif // TODO | |
717 | ||
72383a72 | 718 | // cast to int needed to silence gcc warning about different enums |
32b8ec41 | 719 | m_sizerText->Add(m_text, 1, wxALL | |
72383a72 | 720 | (flags & wxTE_MULTILINE ? (int)wxGROW |
32b8ec41 VZ |
721 | : wxALIGN_TOP), 5); |
722 | m_sizerText->Layout(); | |
723 | } | |
724 | ||
725 | // ---------------------------------------------------------------------------- | |
726 | // event handlers | |
727 | // ---------------------------------------------------------------------------- | |
728 | ||
729 | void TextWidgetsPage::OnIdle(wxIdleEvent& WXUNUSED(event)) | |
730 | { | |
731 | // update all info texts | |
732 | ||
733 | if ( m_textPosCur ) | |
734 | { | |
735 | long posCur = m_text->GetInsertionPoint(); | |
736 | if ( posCur != m_posCur ) | |
737 | { | |
738 | m_textPosCur->Clear(); | |
739 | m_textRowCur->Clear(); | |
740 | m_textColCur->Clear(); | |
741 | ||
742 | long col, row; | |
743 | m_text->PositionToXY(posCur, &col, &row); | |
744 | ||
745 | *m_textPosCur << posCur; | |
746 | *m_textRowCur << row; | |
747 | *m_textColCur << col; | |
748 | ||
749 | m_posCur = posCur; | |
750 | } | |
751 | } | |
752 | ||
753 | if ( m_textPosLast ) | |
754 | { | |
755 | long posLast = m_text->GetLastPosition(); | |
756 | if ( posLast != m_posLast ) | |
757 | { | |
758 | m_textPosLast->Clear(); | |
759 | *m_textPosLast << posLast; | |
760 | ||
761 | m_posLast = posLast; | |
762 | } | |
763 | } | |
764 | ||
765 | if ( m_textLineLast ) | |
766 | { | |
767 | m_textLineLast->SetValue( | |
9a83f860 | 768 | wxString::Format(wxT("%d"), m_text->GetNumberOfLines()) ); |
32b8ec41 VZ |
769 | } |
770 | ||
771 | if ( m_textSelFrom && m_textSelTo ) | |
772 | { | |
773 | long selFrom, selTo; | |
774 | m_text->GetSelection(&selFrom, &selTo); | |
775 | if ( selFrom != m_selFrom ) | |
776 | { | |
777 | m_textSelFrom->Clear(); | |
778 | *m_textSelFrom << selFrom; | |
779 | ||
780 | m_selFrom = selFrom; | |
781 | } | |
782 | ||
783 | if ( selTo != m_selTo ) | |
784 | { | |
785 | m_textSelTo->Clear(); | |
786 | *m_textSelTo << selTo; | |
787 | ||
788 | m_selTo = selTo; | |
789 | } | |
790 | } | |
64b54de8 VZ |
791 | |
792 | if ( m_textRange ) | |
793 | { | |
626117f7 VZ |
794 | wxString range = m_text->GetRange(10, 20); |
795 | if ( range != m_range10_20 ) | |
796 | { | |
797 | m_range10_20 = range; | |
798 | m_textRange->SetValue(range); | |
799 | } | |
64b54de8 | 800 | } |
32b8ec41 VZ |
801 | } |
802 | ||
803 | void TextWidgetsPage::OnButtonReset(wxCommandEvent& WXUNUSED(event)) | |
804 | { | |
805 | Reset(); | |
806 | ||
807 | CreateText(); | |
808 | } | |
809 | ||
810 | void TextWidgetsPage::OnButtonSet(wxCommandEvent& WXUNUSED(event)) | |
811 | { | |
64b54de8 | 812 | m_text->SetValue(m_text->GetWindowStyle() & wxTE_MULTILINE |
9a83f860 VZ |
813 | ? wxT("Here,\nthere and\neverywhere") |
814 | : wxT("Yellow submarine")); | |
64b54de8 | 815 | |
32b8ec41 VZ |
816 | m_text->SetFocus(); |
817 | } | |
818 | ||
819 | void TextWidgetsPage::OnButtonAdd(wxCommandEvent& WXUNUSED(event)) | |
820 | { | |
64b54de8 VZ |
821 | if ( m_text->GetWindowStyle() & wxTE_MULTILINE ) |
822 | { | |
9a83f860 | 823 | m_text->AppendText(wxT("We all live in a\n")); |
64b54de8 VZ |
824 | } |
825 | ||
9a83f860 | 826 | m_text->AppendText(wxT("Yellow submarine")); |
32b8ec41 VZ |
827 | } |
828 | ||
829 | void TextWidgetsPage::OnButtonInsert(wxCommandEvent& WXUNUSED(event)) | |
830 | { | |
9a83f860 | 831 | m_text->WriteText(wxT("Is there anybody going to listen to my story")); |
64b54de8 VZ |
832 | if ( m_text->GetWindowStyle() & wxTE_MULTILINE ) |
833 | { | |
9a83f860 | 834 | m_text->WriteText(wxT("\nall about the girl who came to stay")); |
64b54de8 | 835 | } |
32b8ec41 VZ |
836 | } |
837 | ||
838 | void TextWidgetsPage::OnButtonClear(wxCommandEvent& WXUNUSED(event)) | |
839 | { | |
840 | m_text->Clear(); | |
841 | m_text->SetFocus(); | |
842 | } | |
843 | ||
844 | void TextWidgetsPage::OnButtonLoad(wxCommandEvent& WXUNUSED(event)) | |
845 | { | |
846 | // search for the file in several dirs where it's likely to be | |
847 | wxPathList pathlist; | |
9a83f860 VZ |
848 | pathlist.Add(wxT(".")); |
849 | pathlist.Add(wxT("..")); | |
850 | pathlist.Add(wxT("../../../samples/widgets")); | |
32b8ec41 | 851 | |
9a83f860 | 852 | wxString filename = pathlist.FindValidPath(wxT("textctrl.cpp")); |
32b8ec41 VZ |
853 | if ( !filename ) |
854 | { | |
9a83f860 | 855 | wxLogError(wxT("File textctrl.cpp not found.")); |
32b8ec41 VZ |
856 | } |
857 | else // load it | |
858 | { | |
859 | wxStopWatch sw; | |
860 | if ( !m_text->LoadFile(filename) ) | |
861 | { | |
862 | // this is not supposed to happen ... | |
9a83f860 | 863 | wxLogError(wxT("Error loading file.")); |
32b8ec41 VZ |
864 | } |
865 | else | |
866 | { | |
867 | long elapsed = sw.Time(); | |
9a83f860 | 868 | wxLogMessage(wxT("Loaded file '%s' in %lu.%us"), |
8b1d8f36 VZ |
869 | filename.c_str(), elapsed / 1000, |
870 | (unsigned int) elapsed % 1000); | |
32b8ec41 VZ |
871 | } |
872 | } | |
873 | } | |
874 | ||
875 | void TextWidgetsPage::OnUpdateUIClearButton(wxUpdateUIEvent& event) | |
876 | { | |
877 | event.Enable(!m_text->GetValue().empty()); | |
878 | } | |
879 | ||
880 | void TextWidgetsPage::OnUpdateUIWrapLinesCheckbox(wxUpdateUIEvent& event) | |
881 | { | |
882 | event.Enable( !IsSingleLine() ); | |
883 | } | |
884 | ||
885 | void TextWidgetsPage::OnUpdateUIPasswordCheckbox(wxUpdateUIEvent& event) | |
886 | { | |
887 | // can't put multiline control in password mode | |
888 | event.Enable( IsSingleLine() ); | |
889 | } | |
890 | ||
891 | void TextWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent& event) | |
892 | { | |
893 | event.Enable( (m_radioTextLines->GetSelection() != DEFAULTS.textLines) || | |
64b54de8 VZ |
894 | #ifdef __WXMSW__ |
895 | (m_radioKind->GetSelection() != DEFAULTS.textKind) || | |
896 | #endif // __WXMSW__ | |
32b8ec41 | 897 | (m_chkPassword->GetValue() != DEFAULTS.password) || |
5f6475c1 | 898 | (m_chkReadonly->GetValue() != DEFAULTS.readonly) || |
2d1e63c0 | 899 | (m_chkProcessEnter->GetValue() != DEFAULTS.processEnter) || |
5f6475c1 | 900 | (m_chkFilename->GetValue() != DEFAULTS.filename) || |
fb4888a6 | 901 | (m_radioWrap->GetSelection() != DEFAULTS.wrapStyle) ); |
32b8ec41 VZ |
902 | } |
903 | ||
c02e5a31 | 904 | void TextWidgetsPage::OnText(wxCommandEvent& WXUNUSED(event)) |
32b8ec41 VZ |
905 | { |
906 | // small hack to suppress the very first message: by then the logging is | |
907 | // not yet redirected and so initial setting of the text value results in | |
908 | // an annoying message box | |
206d3a16 | 909 | static bool s_firstTime = true; |
32b8ec41 VZ |
910 | if ( s_firstTime ) |
911 | { | |
206d3a16 | 912 | s_firstTime = false; |
32b8ec41 VZ |
913 | return; |
914 | } | |
915 | ||
9a83f860 | 916 | wxLogMessage(wxT("Text ctrl value changed")); |
32b8ec41 VZ |
917 | } |
918 | ||
919 | void TextWidgetsPage::OnTextEnter(wxCommandEvent& event) | |
920 | { | |
9a83f860 | 921 | wxLogMessage(wxT("Text entered: '%s'"), event.GetString().c_str()); |
cd2e10d6 | 922 | event.Skip(); |
32b8ec41 VZ |
923 | } |
924 | ||
10434560 VZ |
925 | void TextWidgetsPage::OnTextPasted(wxClipboardTextEvent& event) |
926 | { | |
927 | wxLogMessage("Text pasted from clipboard."); | |
928 | event.Skip(); | |
929 | } | |
930 | ||
c02e5a31 | 931 | void TextWidgetsPage::OnCheckOrRadioBox(wxCommandEvent& WXUNUSED(event)) |
32b8ec41 VZ |
932 | { |
933 | CreateText(); | |
934 | } | |
72383a72 | 935 | |
286ff306 WS |
936 | void TextWidgetsPage::OnStreamRedirector(wxCommandEvent& WXUNUSED(event)) |
937 | { | |
15cdc341 | 938 | #if wxHAS_TEXT_WINDOW_STREAM |
286ff306 | 939 | wxStreamToTextRedirector redirect(m_text); |
9a83f860 | 940 | wxString str( wxT("Outputed to cout, appears in wxTextCtrl!") ); |
05772b84 | 941 | wxSTD cout << str << wxSTD endl; |
15cdc341 | 942 | #else |
9a83f860 | 943 | wxMessageBox(wxT("This wxWidgets build does not support wxStreamToTextRedirector")); |
286ff306 WS |
944 | #endif |
945 | } |