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
,
75 // ----------------------------------------------------------------------------
77 // ----------------------------------------------------------------------------
79 class ButtonWidgetsPage
: public WidgetsPage
82 ButtonWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
);
83 virtual ~ButtonWidgetsPage(){};
85 virtual wxControl
*GetWidget() const { return m_button
; }
86 virtual void RecreateWidget() { CreateButton(); }
90 void OnCheckOrRadioBox(wxCommandEvent
& event
);
92 void OnButton(wxCommandEvent
& event
);
93 void OnButtonReset(wxCommandEvent
& event
);
94 void OnButtonChangeLabel(wxCommandEvent
& event
);
96 // reset the wxButton parameters
99 // (re)create the wxButton
102 // add m_button to m_sizerButton using current value of m_chkFit
103 void AddButtonToSizer();
105 // helper function: create a bitmap for wxBitmapButton
106 wxBitmap
CreateBitmap(const wxString
& label
);
112 // the check/radio boxes for styles
113 wxCheckBox
*m_chkBitmap
,
118 // more checkboxes for wxBitmapButton only
119 wxCheckBox
*m_chkUseSelected
,
124 wxRadioBox
*m_radioHAlign
,
127 // the button itself and the sizer it is in
129 wxSizer
*m_sizerButton
;
131 // the text entries for command parameters
132 wxTextCtrl
*m_textLabel
;
135 DECLARE_EVENT_TABLE()
136 DECLARE_WIDGETS_PAGE(ButtonWidgetsPage
)
139 // ----------------------------------------------------------------------------
141 // ----------------------------------------------------------------------------
143 BEGIN_EVENT_TABLE(ButtonWidgetsPage
, WidgetsPage
)
144 EVT_BUTTON(ButtonPage_Button
, ButtonWidgetsPage::OnButton
)
146 EVT_BUTTON(ButtonPage_Reset
, ButtonWidgetsPage::OnButtonReset
)
147 EVT_BUTTON(ButtonPage_ChangeLabel
, ButtonWidgetsPage::OnButtonChangeLabel
)
149 EVT_CHECKBOX(wxID_ANY
, ButtonWidgetsPage::OnCheckOrRadioBox
)
150 EVT_RADIOBOX(wxID_ANY
, ButtonWidgetsPage::OnCheckOrRadioBox
)
153 // ============================================================================
155 // ============================================================================
157 #if defined(__WXUNIVERSAL__)
158 #define FAMILY_CTRLS UNIVERSAL_CTRLS
160 #define FAMILY_CTRLS NATIVE_CTRLS
163 IMPLEMENT_WIDGETS_PAGE(ButtonWidgetsPage
, _T("Button"), FAMILY_CTRLS
);
165 ButtonWidgetsPage::ButtonWidgetsPage(WidgetsBookCtrl
*book
,
166 wxImageList
*imaglist
)
167 : WidgetsPage(book
, imaglist
, button_xpm
)
177 m_chkUseDisabled
= (wxCheckBox
*)NULL
;
180 m_radioVAlign
= (wxRadioBox
*)NULL
;
182 m_textLabel
= (wxTextCtrl
*)NULL
;
184 m_button
= (wxButton
*)NULL
;
185 m_sizerButton
= (wxSizer
*)NULL
;
187 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
190 wxStaticBox
*box
= new wxStaticBox(this, wxID_ANY
, _T("&Set style"));
192 wxSizer
*sizerLeft
= new wxStaticBoxSizer(box
, wxVERTICAL
);
194 m_chkBitmap
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Bitmap button"));
195 m_chkImage
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("With &image"));
196 m_chkFit
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Fit exactly"));
197 m_chkDefault
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Default"));
199 #ifndef __WXUNIVERSAL__
200 // only wxUniv currently supports buttons with images
201 m_chkImage
->Disable();
204 sizerLeft
->AddSpacer(5);
206 wxSizer
*sizerUseLabels
=
207 new wxStaticBoxSizer(wxVERTICAL
, this, _T("&Use the following labels?"));
208 m_chkUseSelected
= CreateCheckBoxAndAddToSizer(sizerUseLabels
, _T("&Pushed"));
209 m_chkUseFocused
= CreateCheckBoxAndAddToSizer(sizerUseLabels
, _T("&Focused"));
210 m_chkUseHover
= CreateCheckBoxAndAddToSizer(sizerUseLabels
, _T("&Hover"));
211 m_chkUseDisabled
= CreateCheckBoxAndAddToSizer(sizerUseLabels
, _T("&Disabled"));
212 sizerLeft
->Add(sizerUseLabels
, wxSizerFlags().Expand().Border());
214 sizerLeft
->AddSpacer(15);
216 // should be in sync with enums Button[HV]Align!
217 static const wxString halign
[] =
224 static const wxString valign
[] =
231 m_radioHAlign
= new wxRadioBox(this, wxID_ANY
, _T("&Horz alignment"),
232 wxDefaultPosition
, wxDefaultSize
,
233 WXSIZEOF(halign
), halign
);
234 m_radioVAlign
= new wxRadioBox(this, wxID_ANY
, _T("&Vert alignment"),
235 wxDefaultPosition
, wxDefaultSize
,
236 WXSIZEOF(valign
), valign
);
238 sizerLeft
->Add(m_radioHAlign
, 0, wxGROW
| wxALL
, 5);
239 sizerLeft
->Add(m_radioVAlign
, 0, wxGROW
| wxALL
, 5);
241 sizerLeft
->Add(5, 5, 0, wxGROW
| wxALL
, 5); // spacer
243 wxButton
*btn
= new wxButton(this, ButtonPage_Reset
, _T("&Reset"));
244 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
247 wxStaticBox
*box2
= new wxStaticBox(this, wxID_ANY
, _T("&Operations"));
248 wxSizer
*sizerMiddle
= new wxStaticBoxSizer(box2
, wxVERTICAL
);
250 wxSizer
*sizerRow
= CreateSizerWithTextAndButton(ButtonPage_ChangeLabel
,
254 m_textLabel
->SetValue(_T("&Press me!"));
256 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
259 m_sizerButton
= new wxBoxSizer(wxHORIZONTAL
);
260 m_sizerButton
->SetMinSize(150, 0);
262 // the 3 panes panes compose the window
263 sizerTop
->Add(sizerLeft
, 0, wxGROW
| (wxALL
& ~wxLEFT
), 10);
264 sizerTop
->Add(sizerMiddle
, 1, wxGROW
| wxALL
, 10);
265 sizerTop
->Add(m_sizerButton
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
267 // do create the main control
276 // ----------------------------------------------------------------------------
278 // ----------------------------------------------------------------------------
280 void ButtonWidgetsPage::Reset()
282 m_chkBitmap
->SetValue(false);
283 m_chkFit
->SetValue(true);
284 m_chkImage
->SetValue(false);
285 m_chkDefault
->SetValue(false);
287 m_chkUseSelected
->SetValue(true);
288 m_chkUseFocused
->SetValue(true);
289 m_chkUseHover
->SetValue(true);
290 m_chkUseDisabled
->SetValue(true);
292 m_radioHAlign
->SetSelection(ButtonHAlign_Centre
);
293 m_radioVAlign
->SetSelection(ButtonVAlign_Centre
);
296 void ButtonWidgetsPage::CreateButton()
301 label
= m_button
->GetLabel();
303 size_t count
= m_sizerButton
->GetChildren().GetCount();
304 for ( size_t n
= 0; n
< count
; n
++ )
306 m_sizerButton
->Remove( 0 );
314 // creating for the first time or recreating a button after bitmap
316 label
= m_textLabel
->GetValue();
319 int flags
= ms_defaultFlags
;
320 switch ( m_radioHAlign
->GetSelection() )
322 case ButtonHAlign_Left
:
327 wxFAIL_MSG(_T("unexpected radiobox selection"));
330 case ButtonHAlign_Centre
:
333 case ButtonHAlign_Right
:
338 switch ( m_radioVAlign
->GetSelection() )
340 case ButtonVAlign_Top
:
345 wxFAIL_MSG(_T("unexpected radiobox selection"));
348 case ButtonVAlign_Centre
:
349 // centre vertical alignment is the default (no style)
352 case ButtonVAlign_Bottom
:
353 flags
|= wxBU_BOTTOM
;
357 const bool isBitmapButton
= m_chkBitmap
->GetValue();
358 if ( isBitmapButton
)
360 wxBitmapButton
*bbtn
= new wxBitmapButton(this, ButtonPage_Button
,
361 CreateBitmap(_T("normal")));
362 if ( m_chkUseSelected
->GetValue() )
363 bbtn
->SetBitmapSelected(CreateBitmap(_T("pushed")));
364 if ( m_chkUseFocused
->GetValue() )
365 bbtn
->SetBitmapFocus(CreateBitmap(_T("focused")));
366 if ( m_chkUseHover
->GetValue() )
367 bbtn
->SetBitmapHover(CreateBitmap(_T("hover")));
368 if ( m_chkUseDisabled
->GetValue() )
369 bbtn
->SetBitmapDisabled(CreateBitmap(_T("disabled")));
372 else // normal button
374 m_button
= new wxButton(this, ButtonPage_Button
, label
,
375 wxDefaultPosition
, wxDefaultSize
,
379 m_chkUseSelected
->Enable(isBitmapButton
);
380 m_chkUseFocused
->Enable(isBitmapButton
);
381 m_chkUseHover
->Enable(isBitmapButton
);
382 m_chkUseDisabled
->Enable(isBitmapButton
);
384 #ifdef __WXUNIVERSAL__
385 if ( m_chkImage
->GetValue() )
387 m_button
->SetImageLabel(wxArtProvider::GetIcon(wxART_INFORMATION
));
391 if ( m_chkDefault
->GetValue() )
393 m_button
->SetDefault();
398 m_sizerButton
->Layout();
401 void ButtonWidgetsPage::AddButtonToSizer()
403 if ( m_chkFit
->GetValue() )
405 m_sizerButton
->AddStretchSpacer(1);
406 m_sizerButton
->Add(m_button
, wxSizerFlags(0).Centre().Border());
407 m_sizerButton
->AddStretchSpacer(1);
409 else // take up the entire space
411 m_sizerButton
->Add(m_button
, wxSizerFlags(1).Expand().Border());
415 // ----------------------------------------------------------------------------
417 // ----------------------------------------------------------------------------
419 void ButtonWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
426 void ButtonWidgetsPage::OnCheckOrRadioBox(wxCommandEvent
& WXUNUSED(event
))
431 void ButtonWidgetsPage::OnButtonChangeLabel(wxCommandEvent
& WXUNUSED(event
))
433 m_button
->SetLabel(m_textLabel
->GetValue());
436 void ButtonWidgetsPage::OnButton(wxCommandEvent
& WXUNUSED(event
))
438 wxLogMessage(_T("Test button clicked."));
441 // ----------------------------------------------------------------------------
442 // bitmap button stuff
443 // ----------------------------------------------------------------------------
445 wxBitmap
ButtonWidgetsPage::CreateBitmap(const wxString
& label
)
447 wxBitmap
bmp(180, 70); // shouldn't hardcode but it's simpler like this
449 dc
.SelectObject(bmp
);
450 dc
.SetBackground(wxBrush(*wxWHITE
));
452 dc
.SetTextForeground(*wxBLUE
);
453 dc
.DrawLabel(wxStripMenuCodes(m_textLabel
->GetValue()) + _T("\n")
454 _T("(") + label
+ _T(" state)"),
455 wxArtProvider::GetBitmap(wxART_INFORMATION
),
456 wxRect(10, 10, bmp
.GetWidth() - 20, bmp
.GetHeight() - 20),