1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: Part of the widgets sample showing wxButton
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/bmpbuttn.h"
33 #include "wx/button.h"
34 #include "wx/checkbox.h"
35 #include "wx/radiobox.h"
36 #include "wx/statbox.h"
37 #include "wx/textctrl.h"
40 #include "wx/artprov.h"
42 #include "wx/dcmemory.h"
46 #include "icons/button.xpm"
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
55 ButtonPage_Reset
= wxID_HIGHEST
,
56 ButtonPage_ChangeLabel
,
83 // ----------------------------------------------------------------------------
85 // ----------------------------------------------------------------------------
87 class ButtonWidgetsPage
: public WidgetsPage
90 ButtonWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
);
91 virtual ~ButtonWidgetsPage(){};
93 virtual wxControl
*GetWidget() const { return m_button
; }
94 virtual void RecreateWidget() { CreateButton(); }
96 // lazy creation of the content
97 virtual void CreateContent();
101 void OnCheckOrRadioBox(wxCommandEvent
& event
);
103 void OnButton(wxCommandEvent
& event
);
104 void OnButtonReset(wxCommandEvent
& event
);
105 void OnButtonChangeLabel(wxCommandEvent
& event
);
107 // reset the wxButton parameters
110 // (re)create the wxButton
113 // add m_button to m_sizerButton using current value of m_chkFit
114 void AddButtonToSizer();
116 // helper function: create a bitmap for wxBitmapButton
117 wxBitmap
CreateBitmap(const wxString
& label
);
123 // the check/radio boxes for styles
124 wxCheckBox
*m_chkBitmap
,
129 // more checkboxes for wxBitmapButton only
130 wxCheckBox
*m_chkUseSelected
,
135 // and an image position choice used if m_chkImage is on
136 wxRadioBox
*m_radioImagePos
;
138 wxRadioBox
*m_radioHAlign
,
141 // the button itself and the sizer it is in
143 wxSizer
*m_sizerButton
;
145 // the text entries for command parameters
146 wxTextCtrl
*m_textLabel
;
149 DECLARE_EVENT_TABLE()
150 DECLARE_WIDGETS_PAGE(ButtonWidgetsPage
)
153 // ----------------------------------------------------------------------------
155 // ----------------------------------------------------------------------------
157 BEGIN_EVENT_TABLE(ButtonWidgetsPage
, WidgetsPage
)
158 EVT_BUTTON(ButtonPage_Button
, ButtonWidgetsPage::OnButton
)
160 EVT_BUTTON(ButtonPage_Reset
, ButtonWidgetsPage::OnButtonReset
)
161 EVT_BUTTON(ButtonPage_ChangeLabel
, ButtonWidgetsPage::OnButtonChangeLabel
)
163 EVT_CHECKBOX(wxID_ANY
, ButtonWidgetsPage::OnCheckOrRadioBox
)
164 EVT_RADIOBOX(wxID_ANY
, ButtonWidgetsPage::OnCheckOrRadioBox
)
167 // ============================================================================
169 // ============================================================================
171 #if defined(__WXUNIVERSAL__)
172 #define FAMILY_CTRLS UNIVERSAL_CTRLS
174 #define FAMILY_CTRLS NATIVE_CTRLS
177 IMPLEMENT_WIDGETS_PAGE(ButtonWidgetsPage
, _T("Button"), FAMILY_CTRLS
);
179 ButtonWidgetsPage::ButtonWidgetsPage(WidgetsBookCtrl
*book
,
180 wxImageList
*imaglist
)
181 : WidgetsPage(book
, imaglist
, button_xpm
)
191 m_chkUseDisabled
= (wxCheckBox
*)NULL
;
195 m_radioVAlign
= (wxRadioBox
*)NULL
;
197 m_textLabel
= (wxTextCtrl
*)NULL
;
199 m_button
= (wxButton
*)NULL
;
200 m_sizerButton
= (wxSizer
*)NULL
;
203 void ButtonWidgetsPage::CreateContent()
205 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
208 wxStaticBox
*box
= new wxStaticBox(this, wxID_ANY
, _T("&Set style"));
210 wxSizer
*sizerLeft
= new wxStaticBoxSizer(box
, wxVERTICAL
);
212 m_chkBitmap
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Bitmap button"));
213 m_chkImage
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("With &image"));
214 m_chkFit
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Fit exactly"));
215 m_chkDefault
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Default"));
217 sizerLeft
->AddSpacer(5);
219 wxSizer
*sizerUseLabels
=
220 new wxStaticBoxSizer(wxVERTICAL
, this, _T("&Use the following bitmaps?"));
221 m_chkUseSelected
= CreateCheckBoxAndAddToSizer(sizerUseLabels
, _T("&Pushed"));
222 m_chkUseFocused
= CreateCheckBoxAndAddToSizer(sizerUseLabels
, _T("&Focused"));
223 m_chkUseHover
= CreateCheckBoxAndAddToSizer(sizerUseLabels
, _T("&Hover"));
224 m_chkUseDisabled
= CreateCheckBoxAndAddToSizer(sizerUseLabels
, _T("&Disabled"));
225 sizerLeft
->Add(sizerUseLabels
, wxSizerFlags().Expand().Border());
227 sizerLeft
->AddSpacer(10);
229 static const wxString dirs
[] =
231 "left", "right", "top", "bottom",
233 m_radioImagePos
= new wxRadioBox(this, wxID_ANY
, "Image &position",
234 wxDefaultPosition
, wxDefaultSize
,
235 WXSIZEOF(dirs
), dirs
);
236 sizerLeft
->Add(m_radioImagePos
, 0, wxGROW
| wxALL
, 5);
237 sizerLeft
->AddSpacer(15);
239 // should be in sync with enums Button[HV]Align!
240 static const wxString halign
[] =
247 static const wxString valign
[] =
254 m_radioHAlign
= new wxRadioBox(this, wxID_ANY
, _T("&Horz alignment"),
255 wxDefaultPosition
, wxDefaultSize
,
256 WXSIZEOF(halign
), halign
);
257 m_radioVAlign
= new wxRadioBox(this, wxID_ANY
, _T("&Vert alignment"),
258 wxDefaultPosition
, wxDefaultSize
,
259 WXSIZEOF(valign
), valign
);
261 sizerLeft
->Add(m_radioHAlign
, 0, wxGROW
| wxALL
, 5);
262 sizerLeft
->Add(m_radioVAlign
, 0, wxGROW
| wxALL
, 5);
264 sizerLeft
->Add(5, 5, 0, wxGROW
| wxALL
, 5); // spacer
266 wxButton
*btn
= new wxButton(this, ButtonPage_Reset
, _T("&Reset"));
267 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
270 wxStaticBox
*box2
= new wxStaticBox(this, wxID_ANY
, _T("&Operations"));
271 wxSizer
*sizerMiddle
= new wxStaticBoxSizer(box2
, wxVERTICAL
);
273 wxSizer
*sizerRow
= CreateSizerWithTextAndButton(ButtonPage_ChangeLabel
,
277 m_textLabel
->SetValue(_T("&Press me!"));
279 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
282 m_sizerButton
= new wxBoxSizer(wxHORIZONTAL
);
283 m_sizerButton
->SetMinSize(150, 0);
285 // the 3 panes panes compose the window
286 sizerTop
->Add(sizerLeft
, 0, wxGROW
| (wxALL
& ~wxLEFT
), 10);
287 sizerTop
->Add(sizerMiddle
, 1, wxGROW
| wxALL
, 10);
288 sizerTop
->Add(m_sizerButton
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
290 // do create the main control
297 // ----------------------------------------------------------------------------
299 // ----------------------------------------------------------------------------
301 void ButtonWidgetsPage::Reset()
303 m_chkBitmap
->SetValue(false);
304 m_chkFit
->SetValue(true);
305 m_chkImage
->SetValue(false);
306 m_chkDefault
->SetValue(false);
308 m_chkUseSelected
->SetValue(true);
309 m_chkUseFocused
->SetValue(true);
310 m_chkUseHover
->SetValue(true);
311 m_chkUseDisabled
->SetValue(true);
313 m_radioImagePos
->SetSelection(ButtonImagePos_Left
);
314 m_radioHAlign
->SetSelection(ButtonHAlign_Centre
);
315 m_radioVAlign
->SetSelection(ButtonVAlign_Centre
);
318 void ButtonWidgetsPage::CreateButton()
323 label
= m_button
->GetLabel();
325 size_t count
= m_sizerButton
->GetChildren().GetCount();
326 for ( size_t n
= 0; n
< count
; n
++ )
328 m_sizerButton
->Remove( 0 );
336 // creating for the first time or recreating a button after bitmap
338 label
= m_textLabel
->GetValue();
341 int flags
= ms_defaultFlags
;
342 switch ( m_radioHAlign
->GetSelection() )
344 case ButtonHAlign_Left
:
349 wxFAIL_MSG(_T("unexpected radiobox selection"));
352 case ButtonHAlign_Centre
:
355 case ButtonHAlign_Right
:
360 switch ( m_radioVAlign
->GetSelection() )
362 case ButtonVAlign_Top
:
367 wxFAIL_MSG(_T("unexpected radiobox selection"));
370 case ButtonVAlign_Centre
:
371 // centre vertical alignment is the default (no style)
374 case ButtonVAlign_Bottom
:
375 flags
|= wxBU_BOTTOM
;
379 const bool isBitmapButton
= m_chkBitmap
->GetValue();
380 if ( isBitmapButton
)
382 wxBitmapButton
*bbtn
= new wxBitmapButton(this, ButtonPage_Button
,
383 CreateBitmap(_T("normal")));
384 if ( m_chkUseSelected
->GetValue() )
385 bbtn
->SetBitmapSelected(CreateBitmap(_T("pushed")));
386 if ( m_chkUseFocused
->GetValue() )
387 bbtn
->SetBitmapFocus(CreateBitmap(_T("focused")));
388 if ( m_chkUseHover
->GetValue() )
389 bbtn
->SetBitmapHover(CreateBitmap(_T("hover")));
390 if ( m_chkUseDisabled
->GetValue() )
391 bbtn
->SetBitmapDisabled(CreateBitmap(_T("disabled")));
394 else // normal button
396 m_button
= new wxButton(this, ButtonPage_Button
, label
,
397 wxDefaultPosition
, wxDefaultSize
,
401 m_chkUseSelected
->Enable(isBitmapButton
);
402 m_chkUseFocused
->Enable(isBitmapButton
);
403 m_chkUseHover
->Enable(isBitmapButton
);
404 m_chkUseDisabled
->Enable(isBitmapButton
);
406 if ( m_chkImage
->GetValue() )
408 static const wxDirection positions
[] =
410 wxLEFT
, wxRIGHT
, wxTOP
, wxBOTTOM
413 m_button
->SetBitmap(wxArtProvider::GetIcon(wxART_INFORMATION
),
414 positions
[m_radioImagePos
->GetSelection()]);
417 if ( m_chkDefault
->GetValue() )
419 m_button
->SetDefault();
424 m_sizerButton
->Layout();
427 void ButtonWidgetsPage::AddButtonToSizer()
429 if ( m_chkFit
->GetValue() )
431 m_sizerButton
->AddStretchSpacer(1);
432 m_sizerButton
->Add(m_button
, wxSizerFlags(0).Centre().Border());
433 m_sizerButton
->AddStretchSpacer(1);
435 else // take up the entire space
437 m_sizerButton
->Add(m_button
, wxSizerFlags(1).Expand().Border());
441 // ----------------------------------------------------------------------------
443 // ----------------------------------------------------------------------------
445 void ButtonWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
452 void ButtonWidgetsPage::OnCheckOrRadioBox(wxCommandEvent
& WXUNUSED(event
))
457 void ButtonWidgetsPage::OnButtonChangeLabel(wxCommandEvent
& WXUNUSED(event
))
459 m_button
->SetLabel(m_textLabel
->GetValue());
462 void ButtonWidgetsPage::OnButton(wxCommandEvent
& WXUNUSED(event
))
464 wxLogMessage(_T("Test button clicked."));
467 // ----------------------------------------------------------------------------
468 // bitmap button stuff
469 // ----------------------------------------------------------------------------
471 wxBitmap
ButtonWidgetsPage::CreateBitmap(const wxString
& label
)
473 wxBitmap
bmp(180, 70); // shouldn't hardcode but it's simpler like this
475 dc
.SelectObject(bmp
);
476 dc
.SetBackground(wxBrush(*wxWHITE
));
478 dc
.SetTextForeground(*wxBLUE
);
479 dc
.DrawLabel(wxStripMenuCodes(m_textLabel
->GetValue()) + _T("\n")
480 _T("(") + label
+ _T(" state)"),
481 wxArtProvider::GetBitmap(wxART_INFORMATION
),
482 wxRect(10, 10, bmp
.GetWidth() - 20, bmp
.GetHeight() - 20),