1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: part of the widgets sample showing wxTextCtrl
5 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // License: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers
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"
43 #include "wx/ioswrap.h"
47 #include "icons/text.xpm"
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
64 TextPage_StreamRedirector
,
71 // textctrl line number radiobox values
79 // wrap style radio box
91 // textctrl kind values
102 // default values for the controls
103 static const struct ControlValues
117 TextLines_Multi
, // multiline
118 false, // not password
119 false, // not readonly
120 WrapStyle_Word
, // wrap on word boundaries
122 TextKind_Plain
// plain EDIT control
126 // ----------------------------------------------------------------------------
128 // ----------------------------------------------------------------------------
130 // Define a new frame type: this is going to be our main frame
131 class TextWidgetsPage
: public WidgetsPage
135 TextWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
);
136 virtual ~TextWidgetsPage(){};
138 virtual wxControl
*GetWidget() const { return m_text
; }
139 virtual void RecreateWidget() { CreateText(); }
142 // create an info text contorl
143 wxTextCtrl
*CreateInfoText();
145 // create a horz sizer holding a static text and this text control
146 wxSizer
*CreateTextWithLabelSizer(const wxString
& label
,
148 const wxString
& label2
= wxEmptyString
,
149 wxTextCtrl
*text2
= NULL
);
152 void OnButtonReset(wxCommandEvent
& event
);
153 void OnButtonClearLog(wxCommandEvent
& event
);
155 void OnButtonSet(wxCommandEvent
& event
);
156 void OnButtonAdd(wxCommandEvent
& event
);
157 void OnButtonInsert(wxCommandEvent
& event
);
158 void OnButtonClear(wxCommandEvent
& event
);
159 void OnButtonLoad(wxCommandEvent
& event
);
161 void OnStreamRedirector(wxCommandEvent
& event
);
162 void OnButtonQuit(wxCommandEvent
& event
);
164 void OnText(wxCommandEvent
& event
);
165 void OnTextEnter(wxCommandEvent
& event
);
167 void OnCheckOrRadioBox(wxCommandEvent
& event
);
169 void OnUpdateUIClearButton(wxUpdateUIEvent
& event
);
171 void OnUpdateUIPasswordCheckbox(wxUpdateUIEvent
& event
);
172 void OnUpdateUIWrapLinesCheckbox(wxUpdateUIEvent
& event
);
174 void OnUpdateUIResetButton(wxUpdateUIEvent
& event
);
176 void OnIdle(wxIdleEvent
& event
);
178 // reset the textctrl parameters
181 // (re)create the textctrl
184 // is the control currently single line?
185 bool IsSingleLine() const
187 return m_radioTextLines
->GetSelection() == TextLines_Single
;
193 // the radiobox to choose between single and multi line
194 wxRadioBox
*m_radioTextLines
;
196 // and another one to choose the wrapping style
197 wxRadioBox
*m_radioWrap
;
199 // the checkboxes controlling text ctrl styles
200 wxCheckBox
*m_chkPassword
,
203 // under MSW we test rich edit controls as well here
205 wxRadioBox
*m_radioKind
;
208 // the textctrl itself and the sizer it is in
210 wxSizer
*m_sizerText
;
212 // the information text zones
213 wxTextCtrl
*m_textPosCur
,
222 // and the data to show in them
228 wxString m_range10_20
;
231 // any class wishing to process wxWidgets events must use this macro
232 DECLARE_EVENT_TABLE()
233 DECLARE_WIDGETS_PAGE(TextWidgetsPage
)
236 // ----------------------------------------------------------------------------
238 // ----------------------------------------------------------------------------
240 class WidgetsTextCtrl
: public wxTextCtrl
243 WidgetsTextCtrl(wxWindow
*parent
,
245 const wxString
& value
,
247 : wxTextCtrl(parent
, id
, value
, wxDefaultPosition
, wxDefaultSize
, flags
)
252 void OnRightClick(wxMouseEvent
& event
)
256 switch ( HitTest(event
.GetPosition(), &x
, &y
) )
259 wxFAIL_MSG( _T("unexpected HitTest() result") );
262 case wxTE_HT_UNKNOWN
:
264 where
= _T("nowhere near");
268 where
= _T("before");
276 where
= _T("beyond");
279 case wxTE_HT_ON_TEXT
:
284 wxLogMessage(_T("Mouse is %s (%ld, %ld)"), where
.c_str(), x
, y
);
290 DECLARE_EVENT_TABLE()
293 // ----------------------------------------------------------------------------
295 // ----------------------------------------------------------------------------
297 BEGIN_EVENT_TABLE(TextWidgetsPage
, WidgetsPage
)
298 EVT_IDLE(TextWidgetsPage::OnIdle
)
300 EVT_BUTTON(TextPage_Reset
, TextWidgetsPage::OnButtonReset
)
302 EVT_BUTTON(TextPage_StreamRedirector
, TextWidgetsPage::OnStreamRedirector
)
304 EVT_BUTTON(TextPage_Clear
, TextWidgetsPage::OnButtonClear
)
305 EVT_BUTTON(TextPage_Set
, TextWidgetsPage::OnButtonSet
)
306 EVT_BUTTON(TextPage_Add
, TextWidgetsPage::OnButtonAdd
)
307 EVT_BUTTON(TextPage_Insert
, TextWidgetsPage::OnButtonInsert
)
308 EVT_BUTTON(TextPage_Load
, TextWidgetsPage::OnButtonLoad
)
310 EVT_UPDATE_UI(TextPage_Clear
, TextWidgetsPage::OnUpdateUIClearButton
)
312 EVT_UPDATE_UI(TextPage_Password
, TextWidgetsPage::OnUpdateUIPasswordCheckbox
)
313 EVT_UPDATE_UI(TextPage_WrapLines
, TextWidgetsPage::OnUpdateUIWrapLinesCheckbox
)
315 EVT_UPDATE_UI(TextPage_Reset
, TextWidgetsPage::OnUpdateUIResetButton
)
317 EVT_TEXT(TextPage_Textctrl
, TextWidgetsPage::OnText
)
318 EVT_TEXT_ENTER(TextPage_Textctrl
, TextWidgetsPage::OnTextEnter
)
320 EVT_CHECKBOX(wxID_ANY
, TextWidgetsPage::OnCheckOrRadioBox
)
321 EVT_RADIOBOX(wxID_ANY
, TextWidgetsPage::OnCheckOrRadioBox
)
324 BEGIN_EVENT_TABLE(WidgetsTextCtrl
, wxTextCtrl
)
325 EVT_RIGHT_UP(WidgetsTextCtrl::OnRightClick
)
328 // ============================================================================
330 // ============================================================================
332 IMPLEMENT_WIDGETS_PAGE(TextWidgetsPage
, _T("Text"),
333 (int)wxPlatform(GENERIC_CTRLS
).If(wxMSW
,NATIVE_CTRLS
)
337 // ----------------------------------------------------------------------------
338 // TextWidgetsPage creation
339 // ----------------------------------------------------------------------------
341 TextWidgetsPage::TextWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
)
344 imaglist
->Add(wxBitmap(text_xpm
));
351 m_radioTextLines
= (wxRadioBox
*)NULL
;
354 m_chkReadonly
= (wxCheckBox
*)NULL
;
364 m_textRange
= (wxTextCtrl
*)NULL
;
366 m_sizerText
= (wxSizer
*)NULL
;
371 m_selTo
= -2; // not -1 which means "no selection"
374 static const wxString modes
[] =
380 wxStaticBox
*box
= new wxStaticBox(this, wxID_ANY
, _T("&Set textctrl parameters"));
381 m_radioTextLines
= new wxRadioBox(this, wxID_ANY
, _T("&Number of lines:"),
382 wxDefaultPosition
, wxDefaultSize
,
383 WXSIZEOF(modes
), modes
,
384 1, wxRA_SPECIFY_COLS
);
386 wxSizer
*sizerLeft
= new wxStaticBoxSizer(box
, wxVERTICAL
);
388 sizerLeft
->Add(m_radioTextLines
, 0, wxGROW
| wxALL
, 5);
389 sizerLeft
->AddSpacer(5);
391 m_chkPassword
= CreateCheckBoxAndAddToSizer(
392 sizerLeft
, _T("&Password control"), TextPage_Password
394 m_chkReadonly
= CreateCheckBoxAndAddToSizer(
395 sizerLeft
, _T("&Read-only mode")
397 sizerLeft
->AddSpacer(5);
399 static const wxString wrap
[] =
407 m_radioWrap
= new wxRadioBox(this, wxID_ANY
, _T("&Wrap style:"),
408 wxDefaultPosition
, wxDefaultSize
,
409 WXSIZEOF(wrap
), wrap
,
410 1, wxRA_SPECIFY_COLS
);
411 sizerLeft
->Add(m_radioWrap
, 0, wxGROW
| wxALL
, 5);
414 static const wxString kinds
[] =
421 m_radioKind
= new wxRadioBox(this, wxID_ANY
, _T("Control &kind"),
422 wxDefaultPosition
, wxDefaultSize
,
423 WXSIZEOF(kinds
), kinds
,
424 1, wxRA_SPECIFY_COLS
);
426 sizerLeft
->AddSpacer(5);
427 sizerLeft
->Add(m_radioKind
, 0, wxGROW
| wxALL
, 5);
430 wxButton
*btn
= new wxButton(this, TextPage_Reset
, _T("&Reset"));
431 sizerLeft
->Add(2, 2, 0, wxGROW
| wxALL
, 1); // spacer
432 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
435 wxStaticBox
*box2
= new wxStaticBox(this, wxID_ANY
, _T("&Change contents:"));
436 wxSizer
*sizerMiddleUp
= new wxStaticBoxSizer(box2
, wxVERTICAL
);
438 btn
= new wxButton(this, TextPage_Set
, _T("&Set text value"));
439 sizerMiddleUp
->Add(btn
, 0, wxALL
| wxGROW
, 1);
441 btn
= new wxButton(this, TextPage_Add
, _T("&Append text"));
442 sizerMiddleUp
->Add(btn
, 0, wxALL
| wxGROW
, 1);
444 btn
= new wxButton(this, TextPage_Insert
, _T("&Insert text"));
445 sizerMiddleUp
->Add(btn
, 0, wxALL
| wxGROW
, 1);
447 btn
= new wxButton(this, TextPage_Load
, _T("&Load file"));
448 sizerMiddleUp
->Add(btn
, 0, wxALL
| wxGROW
, 1);
450 btn
= new wxButton(this, TextPage_Clear
, _T("&Clear"));
451 sizerMiddleUp
->Add(btn
, 0, wxALL
| wxGROW
, 1);
453 btn
= new wxButton(this, TextPage_StreamRedirector
, _T("St&ream redirection"));
454 sizerMiddleUp
->Add(btn
, 0, wxALL
| wxGROW
, 1);
456 wxStaticBox
*box4
= new wxStaticBox(this, wxID_ANY
, _T("&Info:"));
457 wxSizer
*sizerMiddleDown
= new wxStaticBoxSizer(box4
, wxVERTICAL
);
459 m_textPosCur
= CreateInfoText();
460 m_textRowCur
= CreateInfoText();
461 m_textColCur
= CreateInfoText();
463 wxSizer
*sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
464 sizerRow
->Add(CreateTextWithLabelSizer
470 sizerRow
->Add(CreateTextWithLabelSizer
475 0, wxLEFT
| wxRIGHT
, 5);
476 sizerRow
->Add(CreateTextWithLabelSizer
482 sizerMiddleDown
->Add(sizerRow
, 0, wxALL
, 5);
484 m_textLineLast
= CreateInfoText();
485 m_textPosLast
= CreateInfoText();
488 CreateTextWithLabelSizer
490 _T("Number of lines:"),
492 _T("Last position:"),
498 m_textSelFrom
= CreateInfoText();
499 m_textSelTo
= CreateInfoText();
502 CreateTextWithLabelSizer
504 _T("Selection: from"),
512 m_textRange
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
,
513 wxDefaultPosition
, wxDefaultSize
,
517 CreateTextWithLabelSizer
525 wxSizer
*sizerMiddle
= new wxBoxSizer(wxVERTICAL
);
526 sizerMiddle
->Add(sizerMiddleUp
, 0, wxGROW
);
527 sizerMiddle
->Add(sizerMiddleDown
, 1, wxGROW
| wxTOP
, 5);
530 wxStaticBox
*box3
= new wxStaticBox(this, wxID_ANY
, _T("&Text:"));
531 m_sizerText
= new wxStaticBoxSizer(box3
, wxHORIZONTAL
);
534 m_sizerText
->SetMinSize(150, 0);
536 // the 3 panes panes compose the upper part of the window
537 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
538 sizerTop
->Add(sizerLeft
, 0, wxGROW
| (wxALL
& ~wxLEFT
), 10);
539 sizerTop
->Add(sizerMiddle
, 0, wxGROW
| wxALL
, 10);
540 sizerTop
->Add(m_sizerText
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
547 // ----------------------------------------------------------------------------
549 // ----------------------------------------------------------------------------
551 wxTextCtrl
*TextWidgetsPage::CreateInfoText()
553 static int s_maxWidth
= 0;
557 GetTextExtent(_T("9999999"), &s_maxWidth
, NULL
);
560 wxTextCtrl
*text
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
,
562 wxSize(s_maxWidth
, wxDefaultCoord
),
567 wxSizer
*TextWidgetsPage::CreateTextWithLabelSizer(const wxString
& label
,
569 const wxString
& label2
,
572 wxSizer
*sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
573 sizerRow
->Add(new wxStaticText(this, wxID_ANY
, label
), 0,
574 wxALIGN_CENTRE_VERTICAL
| wxRIGHT
, 5);
575 sizerRow
->Add(text
, 0, wxALIGN_CENTRE_VERTICAL
);
578 sizerRow
->Add(new wxStaticText(this, wxID_ANY
, label2
), 0,
579 wxALIGN_CENTRE_VERTICAL
| wxLEFT
| wxRIGHT
, 5);
580 sizerRow
->Add(text2
, 0, wxALIGN_CENTRE_VERTICAL
);
586 // ----------------------------------------------------------------------------
588 // ----------------------------------------------------------------------------
590 void TextWidgetsPage::Reset()
592 m_radioTextLines
->SetSelection(DEFAULTS
.textLines
);
594 m_chkPassword
->SetValue(DEFAULTS
.password
);
595 m_chkReadonly
->SetValue(DEFAULTS
.readonly
);
597 m_radioWrap
->SetSelection(DEFAULTS
.wrapStyle
);
600 m_radioKind
->SetSelection(DEFAULTS
.textKind
);
604 void TextWidgetsPage::CreateText()
606 int flags
= ms_defaultFlags
;
607 switch ( m_radioTextLines
->GetSelection() )
610 wxFAIL_MSG( _T("unexpected lines radio box selection") );
612 case TextLines_Single
:
615 case TextLines_Multi
:
616 flags
|= wxTE_MULTILINE
;
617 m_chkPassword
->SetValue(false);
621 if ( m_chkPassword
->GetValue() )
622 flags
|= wxTE_PASSWORD
;
623 if ( m_chkReadonly
->GetValue() )
624 flags
|= wxTE_READONLY
;
626 switch ( m_radioWrap
->GetSelection() )
629 wxFAIL_MSG( _T("unexpected wrap style radio box selection") );
632 flags
|= wxTE_DONTWRAP
; // same as wxHSCROLL
636 flags
|= wxTE_WORDWRAP
;
640 flags
|= wxTE_CHARWRAP
;
644 // this is default but use symbolic file name for consistency
645 flags
|= wxTE_BESTWRAP
;
650 switch ( m_radioKind
->GetSelection() )
653 wxFAIL_MSG( _T("unexpected kind radio box selection") );
671 valueOld
= m_text
->GetValue();
673 m_sizerText
->Detach( m_text
);
678 valueOld
= _T("Hello, Universe!");
681 m_text
= new WidgetsTextCtrl(this, TextPage_Textctrl
, valueOld
, flags
);
683 // cast to int needed to silence gcc warning about different enums
684 m_sizerText
->Add(m_text
, 1, wxALL
|
685 (flags
& wxTE_MULTILINE
? (int)wxGROW
687 m_sizerText
->Layout();
690 // ----------------------------------------------------------------------------
692 // ----------------------------------------------------------------------------
694 void TextWidgetsPage::OnIdle(wxIdleEvent
& WXUNUSED(event
))
696 // update all info texts
700 long posCur
= m_text
->GetInsertionPoint();
701 if ( posCur
!= m_posCur
)
703 m_textPosCur
->Clear();
704 m_textRowCur
->Clear();
705 m_textColCur
->Clear();
708 m_text
->PositionToXY(posCur
, &col
, &row
);
710 *m_textPosCur
<< posCur
;
711 *m_textRowCur
<< row
;
712 *m_textColCur
<< col
;
720 long posLast
= m_text
->GetLastPosition();
721 if ( posLast
!= m_posLast
)
723 m_textPosLast
->Clear();
724 *m_textPosLast
<< posLast
;
730 if ( m_textLineLast
)
732 m_textLineLast
->SetValue(
733 wxString::Format(_T("%d"), m_text
->GetNumberOfLines()) );
736 if ( m_textSelFrom
&& m_textSelTo
)
739 m_text
->GetSelection(&selFrom
, &selTo
);
740 if ( selFrom
!= m_selFrom
)
742 m_textSelFrom
->Clear();
743 *m_textSelFrom
<< selFrom
;
748 if ( selTo
!= m_selTo
)
750 m_textSelTo
->Clear();
751 *m_textSelTo
<< selTo
;
759 wxString range
= m_text
->GetRange(10, 20);
760 if ( range
!= m_range10_20
)
762 m_range10_20
= range
;
763 m_textRange
->SetValue(range
);
768 void TextWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
775 void TextWidgetsPage::OnButtonSet(wxCommandEvent
& WXUNUSED(event
))
777 m_text
->SetValue(m_text
->GetWindowStyle() & wxTE_MULTILINE
778 ? _T("Here,\nthere and\neverywhere")
779 : _T("Yellow submarine"));
784 void TextWidgetsPage::OnButtonAdd(wxCommandEvent
& WXUNUSED(event
))
786 if ( m_text
->GetWindowStyle() & wxTE_MULTILINE
)
788 m_text
->AppendText(_T("We all live in a\n"));
791 m_text
->AppendText(_T("Yellow submarine"));
794 void TextWidgetsPage::OnButtonInsert(wxCommandEvent
& WXUNUSED(event
))
796 m_text
->WriteText(_T("Is there anybody going to listen to my story"));
797 if ( m_text
->GetWindowStyle() & wxTE_MULTILINE
)
799 m_text
->WriteText(_T("\nall about the girl who came to stay"));
803 void TextWidgetsPage::OnButtonClear(wxCommandEvent
& WXUNUSED(event
))
809 void TextWidgetsPage::OnButtonLoad(wxCommandEvent
& WXUNUSED(event
))
811 // search for the file in several dirs where it's likely to be
813 pathlist
.Add(_T("."));
814 pathlist
.Add(_T(".."));
815 pathlist
.Add(_T("../../../samples/widgets"));
817 wxString filename
= pathlist
.FindValidPath(_T("textctrl.cpp"));
820 wxLogError(_T("File textctrl.cpp not found."));
825 if ( !m_text
->LoadFile(filename
) )
827 // this is not supposed to happen ...
828 wxLogError(_T("Error loading file."));
832 long elapsed
= sw
.Time();
833 wxLogMessage(_T("Loaded file '%s' in %lu.%us"),
834 filename
.c_str(), elapsed
/ 1000,
835 (unsigned int) elapsed
% 1000);
840 void TextWidgetsPage::OnUpdateUIClearButton(wxUpdateUIEvent
& event
)
842 event
.Enable(!m_text
->GetValue().empty());
845 void TextWidgetsPage::OnUpdateUIWrapLinesCheckbox(wxUpdateUIEvent
& event
)
847 event
.Enable( !IsSingleLine() );
850 void TextWidgetsPage::OnUpdateUIPasswordCheckbox(wxUpdateUIEvent
& event
)
852 // can't put multiline control in password mode
853 event
.Enable( IsSingleLine() );
856 void TextWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent
& event
)
858 event
.Enable( (m_radioTextLines
->GetSelection() != DEFAULTS
.textLines
) ||
860 (m_radioKind
->GetSelection() != DEFAULTS
.textKind
) ||
862 (m_chkReadonly
->GetValue() != DEFAULTS
.readonly
) ||
863 (m_chkPassword
->GetValue() != DEFAULTS
.password
) ||
864 (m_radioWrap
->GetSelection() != DEFAULTS
.wrapStyle
) );
867 void TextWidgetsPage::OnText(wxCommandEvent
& WXUNUSED(event
))
869 // small hack to suppress the very first message: by then the logging is
870 // not yet redirected and so initial setting of the text value results in
871 // an annoying message box
872 static bool s_firstTime
= true;
879 wxLogMessage(_T("Text ctrl value changed"));
882 void TextWidgetsPage::OnTextEnter(wxCommandEvent
& event
)
884 wxLogMessage(_T("Text entered: '%s'"), event
.GetString().c_str());
888 void TextWidgetsPage::OnCheckOrRadioBox(wxCommandEvent
& WXUNUSED(event
))
893 void TextWidgetsPage::OnStreamRedirector(wxCommandEvent
& WXUNUSED(event
))
895 #if wxHAS_TEXT_WINDOW_STREAM
896 wxStreamToTextRedirector
redirect(m_text
);
897 wxString
str( _T("Outputed to cout, appears in wxTextCtrl!") );
898 wxSTD cout
<< str
<< wxSTD endl
;
900 wxMessageBox(_T("This wxWidgets build does not support wxStreamToTextRedirector"));