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