1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWindows Widgets Sample
4 // Purpose: Part of the widgets sample showing various static controls
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
31 #include "wx/button.h"
32 #include "wx/checkbox.h"
33 #include "wx/radiobox.h"
34 #include "wx/statbox.h"
35 #include "wx/stattext.h"
36 #include "wx/textctrl.h"
41 #include "wx/statline.h"
44 #include "icons/statbox.xpm"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
53 StaticPage_Reset
= 100,
58 // alignment radiobox values
75 // ----------------------------------------------------------------------------
76 // MyStaticText and MyStaticBox
77 // ----------------------------------------------------------------------------
79 // these 2 classes simply show that the static controls can get the mouse
80 // clicks too -- this used to be broken under MSW but works now
82 class MyStaticText
: public wxStaticText
85 MyStaticText(wxWindow
* parent
,
87 const wxString
& label
,
88 const wxPoint
& pos
= wxDefaultPosition
,
89 const wxSize
& size
= wxDefaultSize
,
91 : wxStaticText(parent
, id
, label
, pos
, size
, style
)
96 void OnMouseEvent(wxMouseEvent
& event
)
98 wxLogMessage(wxT("Clicked on static text"));
101 DECLARE_EVENT_TABLE()
104 class MyStaticBox
: public wxStaticBox
107 MyStaticBox(wxWindow
* parent
,
109 const wxString
& label
,
110 const wxPoint
& pos
= wxDefaultPosition
,
111 const wxSize
& size
= wxDefaultSize
,
113 : wxStaticBox(parent
, id
, label
, pos
, size
, style
)
118 void OnMouseEvent(wxMouseEvent
& event
)
120 wxLogMessage(wxT("Clicked on static box"));
123 DECLARE_EVENT_TABLE()
126 BEGIN_EVENT_TABLE(MyStaticText
, wxStaticText
)
127 EVT_LEFT_UP(MyStaticText::OnMouseEvent
)
130 BEGIN_EVENT_TABLE(MyStaticBox
, wxStaticBox
)
131 EVT_LEFT_UP(MyStaticBox::OnMouseEvent
)
134 // ----------------------------------------------------------------------------
136 // ----------------------------------------------------------------------------
138 class StaticWidgetsPage
: public WidgetsPage
141 StaticWidgetsPage(wxNotebook
*notebook
, wxImageList
*imaglist
);
142 virtual ~StaticWidgetsPage();
146 void OnCheckOrRadioBox(wxCommandEvent
& event
);
148 void OnButtonReset(wxCommandEvent
& event
);
149 void OnButtonBoxText(wxCommandEvent
& event
);
150 void OnButtonLabelText(wxCommandEvent
& event
);
152 // reset all parameters
155 // (re)create all controls
161 // the check/radio boxes for styles
162 wxCheckBox
*m_chkVert
,
165 wxRadioBox
*m_radioHAlign
,
168 // the controls and the sizer containing them
169 wxStaticBox
*m_staticBox
;
170 wxStaticBoxSizer
*m_sizerStatBox
;
171 wxStaticText
*m_statText
;
172 wxStaticLine
*m_statLine
;
173 wxSizer
*m_sizerStatic
;
175 // the text entries for command parameters
176 wxTextCtrl
*m_textBox
,
180 DECLARE_EVENT_TABLE()
181 DECLARE_WIDGETS_PAGE(StaticWidgetsPage
)
184 // ----------------------------------------------------------------------------
186 // ----------------------------------------------------------------------------
188 BEGIN_EVENT_TABLE(StaticWidgetsPage
, WidgetsPage
)
189 EVT_BUTTON(StaticPage_Reset
, StaticWidgetsPage::OnButtonReset
)
190 EVT_BUTTON(StaticPage_LabelText
, StaticWidgetsPage::OnButtonLabelText
)
191 EVT_BUTTON(StaticPage_BoxText
, StaticWidgetsPage::OnButtonBoxText
)
193 EVT_CHECKBOX(-1, StaticWidgetsPage::OnCheckOrRadioBox
)
194 EVT_RADIOBOX(-1, StaticWidgetsPage::OnCheckOrRadioBox
)
197 // ============================================================================
199 // ============================================================================
201 IMPLEMENT_WIDGETS_PAGE(StaticWidgetsPage
, _T("Static"));
203 StaticWidgetsPage::StaticWidgetsPage(wxNotebook
*notebook
,
204 wxImageList
*imaglist
)
205 : WidgetsPage(notebook
)
207 imaglist
->Add(wxBitmap(statbox_xpm
));
211 m_chkAutoResize
= (wxCheckBox
*)NULL
;
214 m_radioVAlign
= (wxRadioBox
*)NULL
;
216 m_statLine
= (wxStaticLine
*)NULL
;
217 m_statText
= (wxStaticText
*)NULL
;
219 m_staticBox
= (wxStaticBox
*)NULL
;
220 m_sizerStatBox
= (wxStaticBoxSizer
*)NULL
;
221 m_sizerStatic
= (wxSizer
*)NULL
;
223 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
226 wxStaticBox
*box
= new wxStaticBox(this, -1, _T("&Set style"));
228 wxSizer
*sizerLeft
= new wxStaticBoxSizer(box
, wxVERTICAL
);
230 m_chkVert
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Vertical line"));
231 m_chkAutoResize
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Fit to text"));
232 sizerLeft
->Add(5, 5, 0, wxGROW
| wxALL
, 5); // spacer
234 static const wxString halign
[] =
241 static const wxString valign
[] =
248 m_radioHAlign
= new wxRadioBox(this, -1, _T("&Horz alignment"),
249 wxDefaultPosition
, wxDefaultSize
,
250 WXSIZEOF(halign
), halign
);
251 m_radioVAlign
= new wxRadioBox(this, -1, _T("&Vert alignment"),
252 wxDefaultPosition
, wxDefaultSize
,
253 WXSIZEOF(valign
), valign
);
255 sizerLeft
->Add(m_radioHAlign
, 0, wxGROW
| wxALL
, 5);
256 sizerLeft
->Add(m_radioVAlign
, 0, wxGROW
| wxALL
, 5);
258 wxButton
*btn
= new wxButton(this, StaticPage_Reset
, _T("&Reset"));
259 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
262 wxStaticBox
*box2
= new wxStaticBox(this, -1, _T("&Change labels"));
263 wxSizer
*sizerMiddle
= new wxStaticBoxSizer(box2
, wxVERTICAL
);
267 sizerRow
= CreateSizerWithTextAndButton(StaticPage_BoxText
,
268 _T("Change &box label"),
270 sizerMiddle
->Add(sizerRow
, 0, wxGROW
| wxALL
, 5);
272 sizerRow
= CreateSizerWithTextAndButton(StaticPage_LabelText
,
273 _T("Change &text label"),
275 sizerMiddle
->Add(sizerRow
, 0, wxGROW
| wxALL
, 5);
277 m_textBox
->SetValue(_T("This is a box"));
278 m_textLabel
->SetValue(_T("And this is a label\ninside the box"));
281 wxSizer
*sizerRight
= new wxBoxSizer(wxHORIZONTAL
);
282 sizerRight
->SetMinSize(150, 0);
283 m_sizerStatic
= sizerRight
;
287 // the 3 panes panes compose the window
288 sizerTop
->Add(sizerLeft
, 0, wxGROW
| (wxALL
& ~wxLEFT
), 10);
289 sizerTop
->Add(sizerMiddle
, 0, wxGROW
| wxALL
, 10);
290 sizerTop
->Add(sizerRight
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
292 // final initializations
301 StaticWidgetsPage::~StaticWidgetsPage()
305 // ----------------------------------------------------------------------------
307 // ----------------------------------------------------------------------------
309 void StaticWidgetsPage::Reset()
311 m_chkVert
->SetValue(FALSE
);
312 m_chkAutoResize
->SetValue(TRUE
);
314 m_radioHAlign
->SetSelection(StaticHAlign_Left
);
315 m_radioVAlign
->SetSelection(StaticVAlign_Top
);
318 void StaticWidgetsPage::CreateStatic()
320 bool isVert
= m_chkVert
->GetValue();
322 if ( m_sizerStatBox
)
325 // delete m_sizerStatBox; -- deleted by Remove()
326 m_sizerStatic
->Remove(m_sizerStatBox
);
334 if ( !m_chkAutoResize
->GetValue() )
336 flagsText
|= wxST_NO_AUTORESIZE
;
340 switch ( m_radioHAlign
->GetSelection() )
343 wxFAIL_MSG(_T("unexpected radiobox selection"));
346 case StaticHAlign_Left
:
347 align
|= wxALIGN_LEFT
;
350 case StaticHAlign_Centre
:
351 align
|= wxALIGN_CENTRE_HORIZONTAL
;
354 case StaticHAlign_Right
:
355 align
|= wxALIGN_RIGHT
;
359 switch ( m_radioVAlign
->GetSelection() )
362 wxFAIL_MSG(_T("unexpected radiobox selection"));
365 case StaticVAlign_Top
:
366 align
|= wxALIGN_TOP
;
369 case StaticVAlign_Centre
:
370 align
|= wxALIGN_CENTRE_VERTICAL
;
373 case StaticVAlign_Bottom
:
374 align
|= wxALIGN_BOTTOM
;
381 m_staticBox
= new MyStaticBox(this, -1, m_textBox
->GetValue(),
382 wxDefaultPosition
, wxDefaultSize
,
384 m_sizerStatBox
= new wxStaticBoxSizer(m_staticBox
, isVert
? wxHORIZONTAL
387 m_statText
= new MyStaticText(this, -1, m_textLabel
->GetValue(),
388 wxDefaultPosition
, wxDefaultSize
,
391 m_statLine
= new wxStaticLine(this, -1,
392 wxDefaultPosition
, wxDefaultSize
,
393 isVert
? wxLI_VERTICAL
: wxLI_HORIZONTAL
);
395 m_sizerStatBox
->Add(m_statText
, 1, wxGROW
| wxALL
, 5);
396 m_sizerStatBox
->Add(m_statLine
, 0, wxGROW
| wxALL
, 5);
397 m_sizerStatBox
->Add(0, 0, 1);
399 m_sizerStatic
->Add(m_sizerStatBox
, 1, wxGROW
);
401 m_sizerStatic
->Layout();
404 // ----------------------------------------------------------------------------
406 // ----------------------------------------------------------------------------
408 void StaticWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
415 void StaticWidgetsPage::OnCheckOrRadioBox(wxCommandEvent
& event
)
420 void StaticWidgetsPage::OnButtonBoxText(wxCommandEvent
& event
)
422 m_sizerStatBox
->GetStaticBox()->SetLabel(m_textBox
->GetValue());
425 void StaticWidgetsPage::OnButtonLabelText(wxCommandEvent
& event
)
427 m_statText
->SetLabel(m_textLabel
->GetValue());