1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: Part of the widgets sample showing various static controls
5 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // Licence: wxWindows licence
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
31 #include "wx/bitmap.h"
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"
42 #include "wx/statline.h"
43 #include "wx/generic/stattextg.h"
46 #include "icons/statbox.xpm"
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
55 StaticPage_Reset
= wxID_HIGHEST
,
58 StaticPage_LabelTextWithMarkup
61 // alignment radiobox values
80 StaticEllipsize_Start
,
81 StaticEllipsize_Middle
,
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
90 class StaticWidgetsPage
: public WidgetsPage
93 StaticWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
);
94 virtual ~StaticWidgetsPage(){};
96 virtual wxControl
*GetWidget() const { return m_statText
; }
97 virtual Widgets
GetWidgets() const
100 widgets
.push_back(m_sizerStatBox
->GetStaticBox());
101 widgets
.push_back(m_statText
);
103 widgets
.push_back(m_statMarkup
);
104 #endif // wxUSE_MARKUP
106 widgets
.push_back(m_statLine
);
107 #endif // wxUSE_STATLINE
111 virtual void RecreateWidget() { CreateStatic(); }
113 // lazy creation of the content
114 virtual void CreateContent();
118 void OnCheckOrRadioBox(wxCommandEvent
& event
);
120 void OnButtonReset(wxCommandEvent
& event
);
121 void OnButtonBoxText(wxCommandEvent
& event
);
122 void OnButtonLabelText(wxCommandEvent
& event
);
124 void OnButtonLabelWithMarkupText(wxCommandEvent
& event
);
125 #endif // wxUSE_MARKUP
126 void OnMouseEvent(wxMouseEvent
& event
);
128 // reset all parameters
131 // (re)create all controls
137 // the check/radio boxes for styles
138 wxCheckBox
*m_chkVert
,
144 wxCheckBox
*m_chkMarkup
,
146 #endif // wxUSE_MARKUP
148 wxRadioBox
*m_radioHAlign
,
152 // the controls and the sizer containing them
153 wxStaticBoxSizer
*m_sizerStatBox
;
154 wxStaticTextBase
*m_statText
;
157 wxStaticTextBase
*m_statMarkup
;
158 #endif // wxUSE_MARKUP
161 wxStaticLine
*m_statLine
;
162 #endif // wxUSE_STATLINE
163 wxSizer
*m_sizerStatic
;
165 // the text entries for command parameters
166 wxTextCtrl
*m_textBox
,
170 wxTextCtrl
*m_textLabelWithMarkup
;
171 #endif // wxUSE_MARKUP
174 DECLARE_EVENT_TABLE()
175 DECLARE_WIDGETS_PAGE(StaticWidgetsPage
)
178 // ----------------------------------------------------------------------------
180 // ----------------------------------------------------------------------------
182 BEGIN_EVENT_TABLE(StaticWidgetsPage
, WidgetsPage
)
183 EVT_BUTTON(StaticPage_Reset
, StaticWidgetsPage::OnButtonReset
)
184 EVT_BUTTON(StaticPage_LabelText
, StaticWidgetsPage::OnButtonLabelText
)
186 EVT_BUTTON(StaticPage_LabelTextWithMarkup
, StaticWidgetsPage::OnButtonLabelWithMarkupText
)
187 #endif // wxUSE_MARKUP
188 EVT_BUTTON(StaticPage_BoxText
, StaticWidgetsPage::OnButtonBoxText
)
190 EVT_CHECKBOX(wxID_ANY
, StaticWidgetsPage::OnCheckOrRadioBox
)
191 EVT_RADIOBOX(wxID_ANY
, StaticWidgetsPage::OnCheckOrRadioBox
)
194 // ============================================================================
196 // ============================================================================
198 IMPLEMENT_WIDGETS_PAGE(StaticWidgetsPage
, wxT("Static"),
199 (int)wxPlatform(GENERIC_CTRLS
).If(wxOS_WINDOWS
,NATIVE_CTRLS
)
202 StaticWidgetsPage::StaticWidgetsPage(WidgetsBookCtrl
*book
,
203 wxImageList
*imaglist
)
204 : WidgetsPage(book
, imaglist
, statbox_xpm
)
212 #endif // wxUSE_MARKUP
216 m_radioVAlign
= (wxRadioBox
*)NULL
;
219 m_statLine
= (wxStaticLine
*)NULL
;
220 #endif // wxUSE_STATLINE
222 m_statText
= m_statMarkup
= NULL
;
223 #endif // wxUSE_MARKUP
225 m_sizerStatBox
= (wxStaticBoxSizer
*)NULL
;
226 m_sizerStatic
= (wxSizer
*)NULL
;
231 m_textLabelWithMarkup
=
232 #endif // wxUSE_MARKUP
236 void StaticWidgetsPage::CreateContent()
238 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
241 wxSizer
*sizerLeft
= new wxStaticBoxSizer(wxVERTICAL
, this, "&Set style");
243 m_chkGeneric
= CreateCheckBoxAndAddToSizer(sizerLeft
,
244 "&Generic wxStaticText");
245 m_chkVert
= CreateCheckBoxAndAddToSizer(sizerLeft
, "&Vertical line");
246 m_chkAutoResize
= CreateCheckBoxAndAddToSizer(sizerLeft
, "&Fit to text");
247 sizerLeft
->Add(5, 5, 0, wxGROW
| wxALL
, 5); // spacer
249 static const wxString halign
[] =
256 static const wxString valign
[] =
263 m_radioHAlign
= new wxRadioBox(this, wxID_ANY
, wxT("&Horz alignment"),
264 wxDefaultPosition
, wxDefaultSize
,
265 WXSIZEOF(halign
), halign
, 3);
266 m_radioVAlign
= new wxRadioBox(this, wxID_ANY
, wxT("&Vert alignment"),
267 wxDefaultPosition
, wxDefaultSize
,
268 WXSIZEOF(valign
), valign
, 3);
270 sizerLeft
->Add(m_radioHAlign
, 0, wxGROW
| wxALL
, 5);
271 sizerLeft
->Add(m_radioVAlign
, 0, wxGROW
| wxALL
, 5);
274 sizerLeft
->Add(5, 5, 0, wxGROW
| wxALL
, 5); // spacer
276 m_chkEllipsize
= CreateCheckBoxAndAddToSizer(sizerLeft
, wxT("&Ellipsize"));
278 static const wxString ellipsizeMode
[] =
285 m_radioEllipsize
= new wxRadioBox(this, wxID_ANY
, wxT("&Ellipsize mode"),
286 wxDefaultPosition
, wxDefaultSize
,
287 WXSIZEOF(ellipsizeMode
), ellipsizeMode
,
290 sizerLeft
->Add(m_radioEllipsize
, 0, wxGROW
| wxALL
, 5);
292 wxButton
*btn
= new wxButton(this, StaticPage_Reset
, wxT("&Reset"));
293 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
296 wxSizer
*sizerMiddle
= new wxStaticBoxSizer(wxVERTICAL
, this,
299 m_textBox
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
);
300 wxButton
*b1
= new wxButton(this, wxID_ANY
, "Change &box label");
301 b1
->Connect(wxEVT_COMMAND_BUTTON_CLICKED
,
302 wxCommandEventHandler(StaticWidgetsPage::OnButtonBoxText
),
304 sizerMiddle
->Add(m_textBox
, 0, wxEXPAND
|wxALL
, 5);
305 sizerMiddle
->Add(b1
, 0, wxLEFT
|wxBOTTOM
, 5);
307 m_textLabel
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
,
308 wxDefaultPosition
, wxDefaultSize
,
309 wxTE_MULTILINE
|wxHSCROLL
);
310 wxButton
*b2
= new wxButton(this, wxID_ANY
, "Change &text label");
311 b2
->Connect(wxEVT_COMMAND_BUTTON_CLICKED
,
312 wxCommandEventHandler(StaticWidgetsPage::OnButtonLabelText
),
314 sizerMiddle
->Add(m_textLabel
, 0, wxEXPAND
|wxALL
, 5);
315 sizerMiddle
->Add(b2
, 0, wxLEFT
|wxBOTTOM
, 5);
318 m_textLabelWithMarkup
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
,
319 wxDefaultPosition
, wxDefaultSize
,
320 wxTE_MULTILINE
|wxHSCROLL
);
322 wxButton
*b3
= new wxButton(this, wxID_ANY
, "Change decorated text label");
323 b3
->Connect(wxEVT_COMMAND_BUTTON_CLICKED
,
324 wxCommandEventHandler(StaticWidgetsPage::OnButtonLabelWithMarkupText
),
326 sizerMiddle
->Add(m_textLabelWithMarkup
, 0, wxEXPAND
|wxALL
, 5);
327 sizerMiddle
->Add(b3
, 0, wxLEFT
|wxBOTTOM
, 5);
329 m_chkGreen
= CreateCheckBoxAndAddToSizer(sizerLeft
,
330 "Decorated label on g&reen");
332 sizerMiddle
->Add(m_chkGreen
, 0, wxALL
, 5);
333 #endif // wxUSE_MARKUP
335 // final initializations
336 // NB: must be done _before_ calling CreateStatic()
339 m_textBox
->SetValue(wxT("This is a &box"));
340 m_textLabel
->SetValue(wxT("And this is a\n\tlabel inside the box with a &mnemonic.\n")
341 wxT("Only this text is affected by the ellipsize settings."));
343 m_textLabelWithMarkup
->SetValue(wxT("Another label, this time <b>decorated</b> ")
344 wxT("with <u>markup</u>; here you need entities ")
345 wxT("for the symbols: < > & ' " ")
346 wxT(" but you can still place &mnemonics..."));
347 #endif // wxUSE_MARKUP
350 wxSizer
*sizerRight
= new wxBoxSizer(wxHORIZONTAL
);
351 sizerRight
->SetMinSize(150, 0);
352 m_sizerStatic
= sizerRight
;
356 // the 3 panes panes compose the window
357 sizerTop
->Add(sizerLeft
, 0, wxGROW
| (wxALL
& ~wxLEFT
), 10);
358 sizerTop
->Add(sizerMiddle
, 0, wxGROW
| wxALL
, 10);
359 sizerTop
->Add(sizerRight
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
364 // ----------------------------------------------------------------------------
366 // ----------------------------------------------------------------------------
368 void StaticWidgetsPage::Reset()
370 m_chkGeneric
->SetValue(false);
371 m_chkVert
->SetValue(false);
372 m_chkAutoResize
->SetValue(true);
373 m_chkEllipsize
->SetValue(true);
375 m_radioHAlign
->SetSelection(StaticHAlign_Left
);
376 m_radioVAlign
->SetSelection(StaticVAlign_Top
);
379 void StaticWidgetsPage::CreateStatic()
381 bool isVert
= m_chkVert
->GetValue();
383 if ( m_sizerStatBox
)
385 // delete m_sizerStatBox; -- deleted by Remove()
386 m_sizerStatic
->Remove(m_sizerStatBox
);
390 #endif // wxUSE_MARKUP
393 #endif // wxUSE_STATLINE
397 flagsText
= ms_defaultFlags
,
398 flagsDummyText
= ms_defaultFlags
;
400 if ( !m_chkAutoResize
->GetValue() )
402 flagsText
|= wxST_NO_AUTORESIZE
;
403 flagsDummyText
|= wxST_NO_AUTORESIZE
;
407 switch ( m_radioHAlign
->GetSelection() )
410 wxFAIL_MSG(wxT("unexpected radiobox selection"));
413 case StaticHAlign_Left
:
414 align
|= wxALIGN_LEFT
;
417 case StaticHAlign_Centre
:
418 align
|= wxALIGN_CENTRE_HORIZONTAL
;
421 case StaticHAlign_Right
:
422 align
|= wxALIGN_RIGHT
;
426 switch ( m_radioVAlign
->GetSelection() )
429 wxFAIL_MSG(wxT("unexpected radiobox selection"));
432 case StaticVAlign_Top
:
433 align
|= wxALIGN_TOP
;
436 case StaticVAlign_Centre
:
437 align
|= wxALIGN_CENTRE_VERTICAL
;
440 case StaticVAlign_Bottom
:
441 align
|= wxALIGN_BOTTOM
;
445 if ( m_chkEllipsize
->GetValue() )
447 switch ( m_radioEllipsize
->GetSelection() )
450 wxFAIL_MSG(wxT("unexpected radiobox selection"));
453 case StaticEllipsize_Start
:
454 flagsDummyText
|= wxST_ELLIPSIZE_START
;
457 case StaticEllipsize_Middle
:
458 flagsDummyText
|= wxST_ELLIPSIZE_MIDDLE
;
461 case StaticEllipsize_End
:
462 flagsDummyText
|= wxST_ELLIPSIZE_END
;
467 flagsDummyText
|= align
;
471 wxStaticBox
*staticBox
= new wxStaticBox(this, wxID_ANY
,
472 m_textBox
->GetValue(),
473 wxDefaultPosition
, wxDefaultSize
,
475 m_sizerStatBox
= new wxStaticBoxSizer(staticBox
, isVert
? wxHORIZONTAL
478 if ( m_chkGeneric
->GetValue() )
480 m_statText
= new wxGenericStaticText(this, wxID_ANY
,
481 m_textLabel
->GetValue(),
482 wxDefaultPosition
, wxDefaultSize
,
485 m_statMarkup
= new wxGenericStaticText(this, wxID_ANY
,
487 wxDefaultPosition
, wxDefaultSize
,
489 #endif // wxUSE_MARKUP
491 else // use native versions
493 m_statText
= new wxStaticText(this, wxID_ANY
,
494 m_textLabel
->GetValue(),
495 wxDefaultPosition
, wxDefaultSize
,
498 m_statMarkup
= new wxStaticText(this, wxID_ANY
,
500 wxDefaultPosition
, wxDefaultSize
,
502 #endif // wxUSE_MARKUP
506 m_statMarkup
->SetLabelMarkup(m_textLabelWithMarkup
->GetValue());
508 if ( m_chkGreen
->GetValue() )
509 m_statMarkup
->SetBackgroundColour(*wxGREEN
);
510 #endif // wxUSE_MARKUP
513 m_statLine
= new wxStaticLine(this, wxID_ANY
,
514 wxDefaultPosition
, wxDefaultSize
,
515 isVert
? wxLI_VERTICAL
: wxLI_HORIZONTAL
);
516 #endif // wxUSE_STATLINE
518 m_sizerStatBox
->Add(m_statText
, 1, wxGROW
| wxALL
, 5);
520 m_sizerStatBox
->Add(m_statLine
, 0, wxGROW
| wxALL
, 5);
521 #endif // wxUSE_STATLINE
523 m_sizerStatBox
->Add(m_statMarkup
, 1, wxGROW
| wxALL
, 5);
524 #endif // wxUSE_MARKUP
526 m_sizerStatic
->Add(m_sizerStatBox
, 1, wxGROW
);
528 m_sizerStatic
->Layout();
530 m_statText
->Connect(wxEVT_LEFT_UP
,
531 wxMouseEventHandler(StaticWidgetsPage::OnMouseEvent
),
533 staticBox
->Connect(wxEVT_LEFT_UP
,
534 wxMouseEventHandler(StaticWidgetsPage::OnMouseEvent
),
538 // ----------------------------------------------------------------------------
540 // ----------------------------------------------------------------------------
542 void StaticWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
549 void StaticWidgetsPage::OnCheckOrRadioBox(wxCommandEvent
& event
)
551 if (event
.GetEventObject() == static_cast<wxObject
*>(m_chkEllipsize
))
553 m_radioEllipsize
->Enable(event
.IsChecked());
559 void StaticWidgetsPage::OnButtonBoxText(wxCommandEvent
& WXUNUSED(event
))
561 m_sizerStatBox
->GetStaticBox()->SetLabel(m_textBox
->GetValue());
564 void StaticWidgetsPage::OnButtonLabelText(wxCommandEvent
& WXUNUSED(event
))
566 m_statText
->SetLabel(m_textLabel
->GetValue());
568 // test GetLabel() and GetLabelText(); the first should return the
569 // label as it is written in the relative text control; the second should
570 // return the label as it's shown in the wxStaticText
571 wxLogMessage(wxT("The original label should be '%s'"),
572 m_statText
->GetLabel());
573 wxLogMessage(wxT("The label text is '%s'"),
574 m_statText
->GetLabelText());
578 void StaticWidgetsPage::OnButtonLabelWithMarkupText(wxCommandEvent
& WXUNUSED(event
))
580 m_statMarkup
->SetLabelMarkup(m_textLabelWithMarkup
->GetValue());
582 // test GetLabel() and GetLabelText(); the first should return the
583 // label as it is written in the relative text control; the second should
584 // return the label as it's shown in the wxStaticText
585 wxLogMessage(wxT("The original label should be '%s'"),
586 m_statMarkup
->GetLabel());
587 wxLogMessage(wxT("The label text is '%s'"),
588 m_statMarkup
->GetLabelText());
590 #endif // wxUSE_MARKUP
592 void StaticWidgetsPage::OnMouseEvent(wxMouseEvent
& event
)
594 if ( event
.GetEventObject() == m_statText
)
596 wxLogMessage("Clicked on static text");
600 wxLogMessage("Clicked on static box");