1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Controls wxWidgets sample
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling, Julian Smart
8 // Licence: wxWindows license
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx/wx.h".
12 #include "wx/wxprec.h"
22 #if !defined( __WXMSW__ ) || defined( __WIN95__ )
23 #include "wx/spinbutt.h"
25 #include "wx/tglbtn.h"
26 #include "wx/bookctrl.h"
27 #include "wx/imaglist.h"
28 #include "wx/artprov.h"
31 #include "wx/tooltip.h"
34 #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
39 #include "mondrian.xpm"
40 #include "icons/choice.xpm"
41 #include "icons/combo.xpm"
42 #include "icons/list.xpm"
43 #include "icons/radio.xpm"
44 #include "icons/text.xpm"
45 #include "icons/gauge.xpm"
49 #define wxUSE_SPINBTN 1
52 #include "wx/progdlg.h"
55 #include "wx/spinctrl.h"
56 #endif // wxUSE_SPINCTRL
59 #define wxToggleButton wxCheckBox
60 #define EVT_TOGGLEBUTTON EVT_CHECKBOX
63 //----------------------------------------------------------------------
65 //----------------------------------------------------------------------
67 class MyApp
: public wxApp
73 class MyPanel
: public wxPanel
76 MyPanel(wxFrame
*frame
, int x
, int y
, int w
, int h
);
79 void OnSize( wxSizeEvent
& event
);
80 void OnIdle( wxIdleEvent
&event
);
81 void OnListBox( wxCommandEvent
&event
);
82 void OnListBoxDoubleClick( wxCommandEvent
&event
);
83 void OnListBoxButtons( wxCommandEvent
&event
);
85 void OnChoice( wxCommandEvent
&event
);
86 void OnChoiceButtons( wxCommandEvent
&event
);
88 void OnCombo( wxCommandEvent
&event
);
89 void OnComboTextChanged( wxCommandEvent
&event
);
90 void OnComboTextEnter( wxCommandEvent
&event
);
91 void OnComboButtons( wxCommandEvent
&event
);
92 void OnRadio( wxCommandEvent
&event
);
93 void OnRadioButtons( wxCommandEvent
&event
);
94 void OnRadioButton1( wxCommandEvent
&event
);
95 void OnRadioButton2( wxCommandEvent
&event
);
96 void OnSetFont( wxCommandEvent
&event
);
97 void OnPageChanged( wxBookCtrlEvent
&event
);
98 void OnPageChanging( wxBookCtrlEvent
&event
);
99 void OnSliderUpdate( wxCommandEvent
&event
);
100 void OnUpdateLabel( wxCommandEvent
&event
);
102 void OnSpinUp( wxSpinEvent
&event
);
103 void OnSpinDown( wxSpinEvent
&event
);
104 void OnSpinUpdate( wxSpinEvent
&event
);
105 #if wxUSE_PROGRESSDLG
106 void OnUpdateShowProgress( wxUpdateUIEvent
& event
);
107 void OnShowProgress( wxCommandEvent
&event
);
108 #endif // wxUSE_PROGRESSDLG
109 #endif // wxUSE_SPINBTN
110 void OnNewText( wxCommandEvent
&event
);
112 void OnSpinCtrl(wxSpinEvent
& event
);
113 void OnSpinCtrlUp(wxSpinEvent
& event
);
114 void OnSpinCtrlDown(wxSpinEvent
& event
);
115 void OnSpinCtrlText(wxCommandEvent
& event
);
116 #endif // wxUSE_SPINCTRL
118 void OnEnableAll(wxCommandEvent
& event
);
119 void OnChangeColour(wxCommandEvent
& event
);
120 void OnTestButton(wxCommandEvent
& event
);
121 void OnBmpButton(wxCommandEvent
& event
);
122 void OnBmpButtonToggle(wxCommandEvent
& event
);
124 void OnSizerCheck (wxCommandEvent
&event
);
126 wxListBox
*m_listbox
,
131 #endif // wxUSE_CHOICE
138 #endif // wxUSE_GAUGE
141 #endif // wxUSE_SLIDER
142 wxButton
*m_fontButton
;
143 wxButton
*m_lbSelectNum
;
144 wxButton
*m_lbSelectThis
;
146 wxSpinButton
*m_spinbutton
;
147 #if wxUSE_PROGRESSDLG
148 wxButton
*m_btnProgress
;
149 #endif // wxUSE_PROGRESSDLG
150 #endif // wxUSE_SPINBTN
151 wxStaticText
*m_wrappingText
;
152 wxStaticText
*m_nonWrappingText
;
155 wxSpinCtrl
*m_spinctrl
;
156 #endif // wxUSE_SPINCTRL
158 wxTextCtrl
*m_spintext
;
159 wxCheckBox
*m_checkbox
;
164 wxStaticText
*m_label
;
166 wxBoxSizer
*m_buttonSizer
;
167 wxButton
*m_sizerBtn1
;
168 wxButton
*m_sizerBtn2
;
169 wxButton
*m_sizerBtn3
;
170 wxButton
*m_sizerBtn4
;
171 wxBoxSizer
*m_hsizer
;
175 wxLog
*m_logTargetOld
;
177 DECLARE_EVENT_TABLE()
180 class MyFrame
: public wxFrame
183 MyFrame(const wxChar
*title
, int x
, int y
);
185 void OnQuit(wxCommandEvent
& event
);
186 void OnAbout(wxCommandEvent
& event
);
187 void OnClearLog(wxCommandEvent
& event
);
190 void OnSetTooltipDelay(wxCommandEvent
& event
);
191 void OnToggleTooltips(wxCommandEvent
& event
);
192 #endif // wxUSE_TOOLTIPS
194 void OnEnableAll(wxCommandEvent
& event
);
196 void OnIdle( wxIdleEvent
& event
);
197 void OnIconized( wxIconizeEvent
& event
);
198 void OnMaximized( wxMaximizeEvent
& event
);
199 void OnSize( wxSizeEvent
& event
);
200 void OnMove( wxMoveEvent
& event
);
202 MyPanel
*GetPanel() const { return m_panel
; }
206 void UpdateStatusBar(const wxPoint
& pos
, const wxSize
& size
)
208 if ( m_frameStatusBar
)
211 wxSize sizeAll
= GetSize(),
212 sizeCl
= GetClientSize();
213 msg
.Printf(_("pos=(%d, %d), size=%dx%d or %dx%d (client=%dx%d)"),
216 sizeAll
.x
, sizeAll
.y
,
218 SetStatusText(msg
, 1);
221 #endif // wxUSE_STATUSBAR
225 DECLARE_EVENT_TABLE()
228 // a button which intercepts double clicks (for testing...)
229 class MyButton
: public wxButton
232 MyButton(wxWindow
*parent
,
234 const wxString
& label
= wxEmptyString
,
235 const wxPoint
& pos
= wxDefaultPosition
,
236 const wxSize
& size
= wxDefaultSize
)
237 : wxButton(parent
, id
, label
, pos
, size
)
241 void OnDClick(wxMouseEvent
& event
)
243 wxLogMessage(_T("MyButton::OnDClick"));
249 DECLARE_EVENT_TABLE()
252 // a combo which intercepts chars (to test Windows behaviour)
253 class MyComboBox
: public wxComboBox
256 MyComboBox(wxWindow
*parent
, wxWindowID id
,
257 const wxString
& value
= wxEmptyString
,
258 const wxPoint
& pos
= wxDefaultPosition
,
259 const wxSize
& size
= wxDefaultSize
,
260 int n
= 0, const wxString choices
[] = NULL
,
262 const wxValidator
& validator
= wxDefaultValidator
,
263 const wxString
& name
= wxComboBoxNameStr
)
264 : wxComboBox(parent
, id
, value
, pos
, size
, n
, choices
, style
,
268 void OnChar(wxKeyEvent
& event
);
269 void OnKeyDown(wxKeyEvent
& event
);
270 void OnKeyUp(wxKeyEvent
& event
);
271 void OnFocusGot(wxFocusEvent
& event
)
273 wxLogMessage(_T("MyComboBox::OnFocusGot"));
279 DECLARE_EVENT_TABLE()
282 // a radiobox which handles focus set/kill (for testing)
283 class MyRadioBox
: public wxRadioBox
286 MyRadioBox(wxWindow
*parent
,
288 const wxString
& title
= wxEmptyString
,
289 const wxPoint
& pos
= wxDefaultPosition
,
290 const wxSize
& size
= wxDefaultSize
,
291 int n
= 0, const wxString choices
[] = NULL
,
293 long style
= wxRA_HORIZONTAL
,
294 const wxValidator
& validator
= wxDefaultValidator
,
295 const wxString
& name
= wxRadioBoxNameStr
)
296 : wxRadioBox(parent
, id
, title
, pos
, size
, n
, choices
, majorDim
,
297 style
, validator
, name
) { SetForegroundColour(*wxRED
); }
300 void OnFocusGot(wxFocusEvent
& event
)
302 wxLogMessage(_T("MyRadioBox::OnFocusGot"));
307 void OnFocusLost(wxFocusEvent
& event
)
309 wxLogMessage(_T("MyRadioBox::OnFocusLost"));
315 DECLARE_EVENT_TABLE()
318 // a choice which handles focus set/kill (for testing)
319 class MyChoice
: public wxChoice
322 MyChoice(wxWindow
*parent
,
324 const wxPoint
& pos
= wxDefaultPosition
,
325 const wxSize
& size
= wxDefaultSize
,
326 int n
= 0, const wxString choices
[] = NULL
,
328 const wxValidator
& validator
= wxDefaultValidator
,
329 const wxString
& name
= wxChoiceNameStr
)
330 : wxChoice(parent
, id
, pos
, size
, n
, choices
,
331 style
, validator
, name
) { }
334 void OnFocusGot(wxFocusEvent
& event
)
336 wxLogMessage(_T("MyChoice::OnFocusGot"));
341 void OnFocusLost(wxFocusEvent
& event
)
343 wxLogMessage(_T("MyChoice::OnFocusLost"));
349 DECLARE_EVENT_TABLE()
354 //----------------------------------------------------------------------
356 //----------------------------------------------------------------------
358 static void SetListboxClientData(const wxChar
*name
, wxListBox
*control
);
361 static void SetChoiceClientData(const wxChar
*name
, wxChoice
*control
);
362 #endif // wxUSE_CHOICE
366 //----------------------------------------------------------------------
368 //----------------------------------------------------------------------
372 CONTROLS_QUIT
= wxID_EXIT
,
373 CONTROLS_ABOUT
= wxID_ABOUT
,
378 CONTROLS_SET_TOOLTIP_DELAY
= 200,
379 CONTROLS_ENABLE_TOOLTIPS
,
387 // use standard command line handling:
388 if ( !wxApp::OnInit() )
391 // parse the cmd line
396 wxSscanf(wxString(argv
[1]), wxT("%d"), &x
);
397 wxSscanf(wxString(argv
[2]), wxT("%d"), &y
);
400 // Create the main frame window
401 MyFrame
*frame
= new MyFrame(_T("Controls wxWidgets App"), x
, y
);
407 //----------------------------------------------------------------------
409 //----------------------------------------------------------------------
411 const int ID_BOOK
= 1000;
413 const int ID_LISTBOX
= 130;
414 const int ID_LISTBOX_SEL_NUM
= 131;
415 const int ID_LISTBOX_SEL_STR
= 132;
416 const int ID_LISTBOX_CLEAR
= 133;
417 const int ID_LISTBOX_APPEND
= 134;
418 const int ID_LISTBOX_DELETE
= 135;
419 const int ID_LISTBOX_FONT
= 136;
420 const int ID_LISTBOX_ENABLE
= 137;
421 const int ID_LISTBOX_SORTED
= 138;
423 const int ID_CHOICE
= 120;
424 const int ID_CHOICE_SEL_NUM
= 121;
425 const int ID_CHOICE_SEL_STR
= 122;
426 const int ID_CHOICE_CLEAR
= 123;
427 const int ID_CHOICE_APPEND
= 124;
428 const int ID_CHOICE_DELETE
= 125;
429 const int ID_CHOICE_FONT
= 126;
430 const int ID_CHOICE_ENABLE
= 127;
431 const int ID_CHOICE_SORTED
= 128;
433 const int ID_COMBO
= 140;
434 const int ID_COMBO_SEL_NUM
= 141;
435 const int ID_COMBO_SEL_STR
= 142;
436 const int ID_COMBO_CLEAR
= 143;
437 const int ID_COMBO_APPEND
= 144;
438 const int ID_COMBO_DELETE
= 145;
439 const int ID_COMBO_FONT
= 146;
440 const int ID_COMBO_ENABLE
= 147;
442 const int ID_RADIOBOX
= 160;
443 const int ID_RADIOBOX_SEL_NUM
= 161;
444 const int ID_RADIOBOX_SEL_STR
= 162;
445 const int ID_RADIOBOX_FONT
= 163;
446 const int ID_RADIOBOX_ENABLE
= 164;
448 const int ID_RADIOBUTTON_1
= 166;
449 const int ID_RADIOBUTTON_2
= 167;
451 const int ID_SET_FONT
= 170;
454 const int ID_GAUGE
= 180;
455 #endif // wxUSE_GAUGE
458 const int ID_SLIDER
= 181;
459 #endif // wxUSE_SLIDER
461 const int ID_SPIN
= 182;
462 #if wxUSE_PROGRESSDLG
463 const int ID_BTNPROGRESS
= 183;
464 #endif // wxUSE_PROGRESSDLG
465 const int ID_BUTTON_LABEL
= 184;
466 const int ID_SPINCTRL
= 185;
467 const int ID_BTNNEWTEXT
= 186;
469 const int ID_BUTTON_TEST1
= 190;
470 const int ID_BUTTON_TEST2
= 191;
471 const int ID_BITMAP_BTN
= 192;
472 const int ID_BITMAP_BTN_ENABLE
= 193;
474 const int ID_CHANGE_COLOUR
= 200;
476 const int ID_SIZER_CHECK1
= 201;
477 const int ID_SIZER_CHECK2
= 202;
478 const int ID_SIZER_CHECK3
= 203;
479 const int ID_SIZER_CHECK4
= 204;
480 const int ID_SIZER_CHECK14
= 205;
481 const int ID_SIZER_CHECKBIG
= 206;
483 BEGIN_EVENT_TABLE(MyPanel
, wxPanel
)
484 EVT_SIZE ( MyPanel::OnSize
)
485 EVT_IDLE ( MyPanel::OnIdle
)
486 EVT_BOOKCTRL_PAGE_CHANGING(ID_BOOK
, MyPanel::OnPageChanging
)
487 EVT_BOOKCTRL_PAGE_CHANGED(ID_BOOK
, MyPanel::OnPageChanged
)
488 EVT_LISTBOX (ID_LISTBOX
, MyPanel::OnListBox
)
489 EVT_LISTBOX (ID_LISTBOX_SORTED
, MyPanel::OnListBox
)
490 EVT_LISTBOX_DCLICK(ID_LISTBOX
, MyPanel::OnListBoxDoubleClick
)
491 EVT_BUTTON (ID_LISTBOX_SEL_NUM
, MyPanel::OnListBoxButtons
)
492 EVT_BUTTON (ID_LISTBOX_SEL_STR
, MyPanel::OnListBoxButtons
)
493 EVT_BUTTON (ID_LISTBOX_CLEAR
, MyPanel::OnListBoxButtons
)
494 EVT_BUTTON (ID_LISTBOX_APPEND
, MyPanel::OnListBoxButtons
)
495 EVT_BUTTON (ID_LISTBOX_DELETE
, MyPanel::OnListBoxButtons
)
496 EVT_BUTTON (ID_LISTBOX_FONT
, MyPanel::OnListBoxButtons
)
497 EVT_CHECKBOX (ID_LISTBOX_ENABLE
, MyPanel::OnListBoxButtons
)
499 EVT_CHOICE (ID_CHOICE
, MyPanel::OnChoice
)
500 EVT_CHOICE (ID_CHOICE_SORTED
, MyPanel::OnChoice
)
501 EVT_BUTTON (ID_CHOICE_SEL_NUM
, MyPanel::OnChoiceButtons
)
502 EVT_BUTTON (ID_CHOICE_SEL_STR
, MyPanel::OnChoiceButtons
)
503 EVT_BUTTON (ID_CHOICE_CLEAR
, MyPanel::OnChoiceButtons
)
504 EVT_BUTTON (ID_CHOICE_APPEND
, MyPanel::OnChoiceButtons
)
505 EVT_BUTTON (ID_CHOICE_DELETE
, MyPanel::OnChoiceButtons
)
506 EVT_BUTTON (ID_CHOICE_FONT
, MyPanel::OnChoiceButtons
)
507 EVT_CHECKBOX (ID_CHOICE_ENABLE
, MyPanel::OnChoiceButtons
)
509 EVT_COMBOBOX (ID_COMBO
, MyPanel::OnCombo
)
510 EVT_TEXT (ID_COMBO
, MyPanel::OnComboTextChanged
)
511 EVT_TEXT_ENTER(ID_COMBO
, MyPanel::OnComboTextEnter
)
512 EVT_BUTTON (ID_COMBO_SEL_NUM
, MyPanel::OnComboButtons
)
513 EVT_BUTTON (ID_COMBO_SEL_STR
, MyPanel::OnComboButtons
)
514 EVT_BUTTON (ID_COMBO_CLEAR
, MyPanel::OnComboButtons
)
515 EVT_BUTTON (ID_COMBO_APPEND
, MyPanel::OnComboButtons
)
516 EVT_BUTTON (ID_COMBO_DELETE
, MyPanel::OnComboButtons
)
517 EVT_BUTTON (ID_COMBO_FONT
, MyPanel::OnComboButtons
)
518 EVT_CHECKBOX (ID_COMBO_ENABLE
, MyPanel::OnComboButtons
)
519 EVT_RADIOBOX (ID_RADIOBOX
, MyPanel::OnRadio
)
520 EVT_BUTTON (ID_RADIOBOX_SEL_NUM
, MyPanel::OnRadioButtons
)
521 EVT_BUTTON (ID_RADIOBOX_SEL_STR
, MyPanel::OnRadioButtons
)
522 EVT_BUTTON (ID_RADIOBOX_FONT
, MyPanel::OnRadioButtons
)
523 EVT_CHECKBOX (ID_RADIOBOX_ENABLE
, MyPanel::OnRadioButtons
)
524 EVT_RADIOBUTTON(ID_RADIOBUTTON_1
, MyPanel::OnRadioButton1
)
525 EVT_RADIOBUTTON(ID_RADIOBUTTON_2
, MyPanel::OnRadioButton2
)
526 EVT_BUTTON (ID_SET_FONT
, MyPanel::OnSetFont
)
528 EVT_SLIDER (ID_SLIDER
, MyPanel::OnSliderUpdate
)
529 #endif // wxUSE_SLIDER
531 EVT_SPIN (ID_SPIN
, MyPanel::OnSpinUpdate
)
532 EVT_SPIN_UP (ID_SPIN
, MyPanel::OnSpinUp
)
533 EVT_SPIN_DOWN (ID_SPIN
, MyPanel::OnSpinDown
)
534 #if wxUSE_PROGRESSDLG
535 EVT_UPDATE_UI (ID_BTNPROGRESS
, MyPanel::OnUpdateShowProgress
)
536 EVT_BUTTON (ID_BTNPROGRESS
, MyPanel::OnShowProgress
)
537 #endif // wxUSE_PROGRESSDLG
538 #endif // wxUSE_SPINBTN
540 EVT_SPINCTRL (ID_SPINCTRL
, MyPanel::OnSpinCtrl
)
541 EVT_SPIN_UP (ID_SPINCTRL
, MyPanel::OnSpinCtrlUp
)
542 EVT_SPIN_DOWN (ID_SPINCTRL
, MyPanel::OnSpinCtrlDown
)
543 EVT_TEXT (ID_SPINCTRL
, MyPanel::OnSpinCtrlText
)
544 #endif // wxUSE_SPINCTRL
545 EVT_BUTTON (ID_BTNNEWTEXT
, MyPanel::OnNewText
)
546 EVT_TOGGLEBUTTON(ID_BUTTON_LABEL
, MyPanel::OnUpdateLabel
)
547 EVT_CHECKBOX (ID_CHANGE_COLOUR
, MyPanel::OnChangeColour
)
548 EVT_BUTTON (ID_BUTTON_TEST1
, MyPanel::OnTestButton
)
549 EVT_BUTTON (ID_BUTTON_TEST2
, MyPanel::OnTestButton
)
550 EVT_BUTTON (ID_BITMAP_BTN
, MyPanel::OnBmpButton
)
551 EVT_TOGGLEBUTTON(ID_BITMAP_BTN_ENABLE
, MyPanel::OnBmpButtonToggle
)
553 EVT_CHECKBOX (ID_SIZER_CHECK1
, MyPanel::OnSizerCheck
)
554 EVT_CHECKBOX (ID_SIZER_CHECK2
, MyPanel::OnSizerCheck
)
555 EVT_CHECKBOX (ID_SIZER_CHECK3
, MyPanel::OnSizerCheck
)
556 EVT_CHECKBOX (ID_SIZER_CHECK4
, MyPanel::OnSizerCheck
)
557 EVT_CHECKBOX (ID_SIZER_CHECK14
, MyPanel::OnSizerCheck
)
558 EVT_CHECKBOX (ID_SIZER_CHECKBIG
, MyPanel::OnSizerCheck
)
562 BEGIN_EVENT_TABLE(MyButton
, wxButton
)
563 EVT_LEFT_DCLICK(MyButton::OnDClick
)
566 BEGIN_EVENT_TABLE(MyComboBox
, wxComboBox
)
567 EVT_CHAR(MyComboBox::OnChar
)
568 EVT_KEY_DOWN(MyComboBox::OnKeyDown
)
569 EVT_KEY_UP(MyComboBox::OnKeyUp
)
571 EVT_SET_FOCUS(MyComboBox::OnFocusGot
)
574 BEGIN_EVENT_TABLE(MyRadioBox
, wxRadioBox
)
575 EVT_SET_FOCUS(MyRadioBox::OnFocusGot
)
576 EVT_KILL_FOCUS(MyRadioBox::OnFocusLost
)
579 BEGIN_EVENT_TABLE(MyChoice
, wxChoice
)
580 EVT_SET_FOCUS(MyChoice::OnFocusGot
)
581 EVT_KILL_FOCUS(MyChoice::OnFocusLost
)
584 // ============================================================================
586 // ============================================================================
588 MyPanel::MyPanel( wxFrame
*frame
, int x
, int y
, int w
, int h
)
589 : wxPanel( frame
, wxID_ANY
, wxPoint(x
, y
), wxSize(w
, h
) )
592 m_listboxSorted
= NULL
;
595 m_choiceSorted
= NULL
;
596 #endif // wxUSE_CHOICE
602 #endif // wxUSE_GAUGE
605 #endif // wxUSE_SLIDER
607 m_lbSelectNum
= NULL
;
608 m_lbSelectThis
= NULL
;
611 #if wxUSE_PROGRESSDLG
612 m_btnProgress
= NULL
;
613 #endif // wxUSE_PROGRESSDLG
614 #endif // wxUSE_SPINBTN
617 #endif // wxUSE_SPINCTRL
624 m_text
= new wxTextCtrl(this, wxID_ANY
, _T("This is the log window.\n"),
625 wxPoint(0, 250), wxSize(100, 50), wxTE_MULTILINE
);
626 m_text
->SetBackgroundColour(wxT("wheat"));
628 m_logTargetOld
= wxLog::SetActiveTarget(new wxLogTextCtrl(m_text
));
630 m_book
= new wxBookCtrl(this, ID_BOOK
);
652 #endif // wxUSE_GAUGE
656 // fill the image list
657 wxBitmap
bmp(list_xpm
);
659 wxImageList
*imagelist
= new wxImageList(bmp
.GetWidth(), bmp
.GetHeight());
661 imagelist
-> Add( bmp
);
662 imagelist
-> Add( wxBitmap( choice_xpm
));
663 imagelist
-> Add( wxBitmap( combo_xpm
));
664 imagelist
-> Add( wxBitmap( text_xpm
));
665 imagelist
-> Add( wxBitmap( radio_xpm
));
667 imagelist
-> Add( wxBitmap( gauge_xpm
));
668 #endif // wxUSE_GAUGE
669 m_book
->SetImageList(imagelist
);
670 #elif defined(__WXMSW__)
671 // load images from resources
681 #endif // wxUSE_GAUGE
684 wxImageList
*imagelist
= new wxImageList(16, 16, false, Image_Max
);
686 static const wxChar
*s_iconNames
[Image_Max
] =
695 #endif // wxUSE_GAUGE
698 for ( size_t n
= 0; n
< Image_Max
; n
++ )
700 wxBitmap
bmp(s_iconNames
[n
]);
701 if ( !bmp
.Ok() || (imagelist
->Add(bmp
) == -1) )
703 wxLogWarning(wxT("Couldn't load the image '%s' for the book control page %d."),
708 m_book
->SetImageList(imagelist
);
712 #define Image_List -1
713 #define Image_Choice -1
714 #define Image_Combo -1
715 #define Image_Text -1
716 #define Image_Radio -1
718 #define Image_Gauge -1
719 #endif // wxUSE_GAUGE
724 wxPanel
*panel
= new wxPanel(m_book
);
725 m_listbox
= new wxListBox( panel
, ID_LISTBOX
,
726 wxPoint(10,10), wxSize(120,70),
727 5, choices
, wxLB_MULTIPLE
|wxLB_ALWAYS_SB
);
728 m_listboxSorted
= new wxListBox( panel
, ID_LISTBOX_SORTED
,
729 wxPoint(10,90), wxSize(120,70),
730 5, choices
, wxLB_SORT
);
732 SetListboxClientData(wxT("listbox"), m_listbox
);
733 SetListboxClientData(wxT("listbox"), m_listboxSorted
);
735 m_listbox
->SetCursor(*wxCROSS_CURSOR
);
737 m_listbox
->SetToolTip( _T("This is a list box") );
738 #endif // wxUSE_TOOLTIPS
740 m_lbSelectNum
= new wxButton( panel
, ID_LISTBOX_SEL_NUM
, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) );
741 m_lbSelectThis
= new wxButton( panel
, ID_LISTBOX_SEL_STR
, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) );
742 (void)new wxButton( panel
, ID_LISTBOX_CLEAR
, _T("&Clear"), wxPoint(180,80), wxSize(140,30) );
743 (void)new MyButton( panel
, ID_LISTBOX_APPEND
, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) );
744 (void)new wxButton( panel
, ID_LISTBOX_DELETE
, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) );
745 wxButton
*button
= new MyButton( panel
, ID_LISTBOX_FONT
, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) );
747 button
->SetDefault();
748 button
->SetForegroundColour(*wxBLUE
);
751 button
->SetToolTip( _T("Press here to set italic font") );
752 #endif // wxUSE_TOOLTIPS
754 m_checkbox
= new wxCheckBox( panel
, ID_LISTBOX_ENABLE
, _T("&Disable"), wxPoint(20,170) );
755 m_checkbox
->SetValue(false);
756 button
->MoveAfterInTabOrder(m_checkbox
);
758 m_checkbox
->SetToolTip( _T("Click here to disable the listbox") );
759 #endif // wxUSE_TOOLTIPS
760 (void)new wxCheckBox( panel
, ID_CHANGE_COLOUR
, _T("&Toggle colour"),
762 panel
->SetCursor(wxCursor(wxCURSOR_HAND
));
763 m_book
->AddPage(panel
, _T("wxListBox"), true, Image_List
);
766 panel
= new wxPanel(m_book
);
767 m_choice
= new MyChoice( panel
, ID_CHOICE
, wxPoint(10,10), wxSize(120,wxDefaultCoord
), 5, choices
);
768 m_choiceSorted
= new MyChoice( panel
, ID_CHOICE_SORTED
, wxPoint(10,70), wxSize(120,wxDefaultCoord
),
769 5, choices
, wxCB_SORT
);
771 SetChoiceClientData(wxT("choice"), m_choice
);
772 SetChoiceClientData(wxT("choice"), m_choiceSorted
);
774 m_choice
->SetSelection(2);
775 m_choice
->SetBackgroundColour( wxT("red") );
776 (void)new wxButton( panel
, ID_CHOICE_SEL_NUM
, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) );
777 (void)new wxButton( panel
, ID_CHOICE_SEL_STR
, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) );
778 (void)new wxButton( panel
, ID_CHOICE_CLEAR
, _T("&Clear"), wxPoint(180,80), wxSize(140,30) );
779 (void)new wxButton( panel
, ID_CHOICE_APPEND
, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) );
780 (void)new wxButton( panel
, ID_CHOICE_DELETE
, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) );
781 (void)new wxButton( panel
, ID_CHOICE_FONT
, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) );
782 (void)new wxCheckBox( panel
, ID_CHOICE_ENABLE
, _T("&Disable"), wxPoint(20,130), wxSize(140,30) );
784 m_book
->AddPage(panel
, _T("wxChoice"), false, Image_Choice
);
785 #endif // wxUSE_CHOICE
787 panel
= new wxPanel(m_book
);
788 (void)new wxStaticBox( panel
, wxID_ANY
, _T("&Box around combobox"),
789 wxPoint(5, 5), wxSize(150, 100));
790 m_combo
= new MyComboBox( panel
, ID_COMBO
, _T("This"),
791 wxPoint(20,25), wxSize(120, wxDefaultCoord
),
793 wxCB_READONLY
| wxPROCESS_ENTER
);
794 m_combo
->SetBackgroundColour(*wxBLUE
);
796 (void)new wxButton( panel
, ID_COMBO_SEL_NUM
, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) );
797 (void)new wxButton( panel
, ID_COMBO_SEL_STR
, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) );
798 (void)new wxButton( panel
, ID_COMBO_CLEAR
, _T("&Clear"), wxPoint(180,80), wxSize(140,30) );
799 (void)new wxButton( panel
, ID_COMBO_APPEND
, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) );
800 (void)new wxButton( panel
, ID_COMBO_DELETE
, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) );
801 (void)new wxButton( panel
, ID_COMBO_FONT
, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) );
802 (void)new wxCheckBox( panel
, ID_COMBO_ENABLE
, _T("&Disable"), wxPoint(20,130), wxSize(140,30) );
803 m_book
->AddPage(panel
, _T("wxComboBox"), false, Image_Combo
);
805 wxString choices2
[] =
807 _T("First"), _T("Second"),
809 "Fourth", "Fifth", "Sixth",
810 "Seventh", "Eighth", "Nineth", "Tenth" */
813 panel
= new wxPanel(m_book
);
814 (void)new MyRadioBox( panel
, ID_RADIOBOX
, _T("&That"), wxPoint(10,160), wxDefaultSize
, WXSIZEOF(choices2
), choices2
, 1, wxRA_SPECIFY_ROWS
);
815 m_radio
= new wxRadioBox( panel
, ID_RADIOBOX
, _T("T&his"), wxPoint(10,10), wxDefaultSize
, WXSIZEOF(choices
), choices
, 1, wxRA_SPECIFY_COLS
);
816 m_radio
->SetForegroundColour(*wxRED
);
819 m_combo
->SetToolTip(_T("This is a natural\ncombobox - can you believe me?"));
820 m_radio
->SetToolTip(_T("Ever seen a radiobox?"));
821 #endif // wxUSE_TOOLTIPS
823 (void)new wxButton( panel
, ID_RADIOBOX_SEL_NUM
, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) );
824 (void)new wxButton( panel
, ID_RADIOBOX_SEL_STR
, _T("&Select 'This'"), wxPoint(180,80), wxSize(140,30) );
825 m_fontButton
= new wxButton( panel
, ID_SET_FONT
, _T("Set &more Italic font"), wxPoint(340,30), wxSize(140,30) );
826 (void)new wxButton( panel
, ID_RADIOBOX_FONT
, _T("Set &Italic font"), wxPoint(340,80), wxSize(140,30) );
827 (void)new wxCheckBox( panel
, ID_RADIOBOX_ENABLE
, _T("&Disable"), wxPoint(340,130), wxDefaultSize
);
828 wxRadioButton
*rb
= new wxRadioButton( panel
, ID_RADIOBUTTON_1
, _T("Radiobutton1"), wxPoint(210,170), wxDefaultSize
, wxRB_GROUP
);
829 rb
->SetValue( false );
830 (void)new wxRadioButton( panel
, ID_RADIOBUTTON_2
, _T("&Radiobutton2"), wxPoint(340,170), wxDefaultSize
);
831 m_book
->AddPage(panel
, _T("wxRadioBox"), false, Image_Radio
);
834 #if wxUSE_SLIDER && wxUSE_GAUGE
835 panel
= new wxPanel(m_book
);
837 wxBoxSizer
*main_sizer
= new wxBoxSizer( wxHORIZONTAL
);
838 panel
->SetSizer( main_sizer
);
840 wxStaticBoxSizer
*gauge_sizer
= new wxStaticBoxSizer( wxHORIZONTAL
, panel
, _T("&wxGauge and wxSlider") );
841 main_sizer
->Add( gauge_sizer
, 0, wxALL
, 5 );
842 wxBoxSizer
*sz
= new wxBoxSizer( wxVERTICAL
);
843 gauge_sizer
->Add( sz
);
844 m_gauge
= new wxGauge( panel
, wxID_ANY
, 200, wxDefaultPosition
, wxSize(155, 30), wxGA_HORIZONTAL
|wxNO_BORDER
);
845 m_gauge
->SetBackgroundColour(*wxGREEN
);
846 m_gauge
->SetForegroundColour(*wxRED
);
847 sz
->Add( m_gauge
, 0, wxALL
, 10 );
848 m_slider
= new wxSlider( panel
, ID_SLIDER
, 0, 0, 200,
849 wxDefaultPosition
, wxSize(155,wxDefaultCoord
),
850 wxSL_AUTOTICKS
| wxSL_LABELS
);
851 m_slider
->SetTickFreq(40, 0);
853 m_slider
->SetToolTip(_T("This is a sliding slider"));
854 #endif // wxUSE_TOOLTIPS
855 sz
->Add( m_slider
, 0, wxALL
, 10 );
857 m_gaugeVert
= new wxGauge( panel
, wxID_ANY
, 100,
858 wxDefaultPosition
, wxSize(wxDefaultCoord
, 90),
859 wxGA_VERTICAL
| wxGA_SMOOTH
| wxNO_BORDER
);
860 gauge_sizer
->Add( m_gaugeVert
, 0, wxALL
, 10 );
864 wxStaticBox
*sb
= new wxStaticBox( panel
, wxID_ANY
, _T("&Explanation"),
865 wxDefaultPosition
, wxDefaultSize
); //, wxALIGN_CENTER );
866 wxStaticBoxSizer
*wrapping_sizer
= new wxStaticBoxSizer( sb
, wxVERTICAL
);
867 main_sizer
->Add( wrapping_sizer
, 0, wxALL
, 5 );
870 // No wrapping text in wxStaticText yet :-(
871 m_wrappingText
= new wxStaticText( panel
, wxID_ANY
,
872 _T("Drag the slider!"),
874 wxSize(240, wxDefaultCoord
)
877 m_wrappingText
= new wxStaticText( panel
, wxID_ANY
,
878 _T("In order see the gauge (aka progress bar) ")
879 _T("control do something you have to drag the ")
880 _T("handle of the slider to the right.")
882 _T("This is also supposed to demonstrate how ")
883 _T("to use static controls with line wrapping."),
888 wrapping_sizer
->Add( m_wrappingText
);
890 wxStaticBoxSizer
*non_wrapping_sizer
= new wxStaticBoxSizer( wxVERTICAL
, panel
, wxT("Non-wrapping") );
891 main_sizer
->Add( non_wrapping_sizer
, 0, wxALL
, 5 );
893 m_nonWrappingText
= new wxStaticText( panel
, wxID_ANY
,
894 _T("This static text has two lines.\nThey do not wrap."),
898 non_wrapping_sizer
->Add( m_nonWrappingText
);
900 (void)new wxButton( panel
, ID_BTNNEWTEXT
, wxT("New text"), wxPoint(450, 160) );
902 int initialSpinValue
= -5;
904 s
<< initialSpinValue
;
905 m_spintext
= new wxTextCtrl( panel
, wxID_ANY
, s
, wxPoint(20,160), wxSize(80,wxDefaultCoord
) );
907 m_spinbutton
= new wxSpinButton( panel
, ID_SPIN
, wxPoint(103,160) );
908 m_spinbutton
->SetRange(-40,30);
909 m_spinbutton
->SetValue(initialSpinValue
);
911 #if wxUSE_PROGRESSDLG
912 m_btnProgress
= new wxButton( panel
, ID_BTNPROGRESS
, _T("&Show progress dialog"),
914 #endif // wxUSE_PROGRESSDLG
915 #endif // wxUSE_SPINBTN
918 m_spinctrl
= new wxSpinCtrl( panel
, ID_SPINCTRL
, _T(""), wxPoint(200, 160), wxSize(80, wxDefaultCoord
) );
919 m_spinctrl
->SetRange(10,30);
920 m_spinctrl
->SetValue(15);
921 #endif // wxUSE_SPINCTRL
923 m_book
->AddPage(panel
, _T("wxGauge"), false, Image_Gauge
);
924 #endif // wxUSE_SLIDER && wxUSE_GAUGE
927 panel
= new wxPanel(m_book
);
929 #if !defined(__WXMOTIF__) // wxStaticBitmap not working under Motif yet.
930 wxIcon icon
= wxArtProvider::GetIcon(wxART_INFORMATION
);
931 (void) new wxStaticBitmap( panel
, wxID_ANY
, icon
, wxPoint(10, 10) );
933 // VZ: don't leak memory
934 // bmpStatic = new wxStaticBitmap(panel, wxID_ANY, wxNullIcon, wxPoint(50, 10));
935 // bmpStatic->SetIcon(wxArtProvider::GetIcon(wxART_QUESTION));
938 wxBitmap
bitmap( 100, 100 );
940 dc
.SelectObject( bitmap
);
941 dc
.SetPen(*wxGREEN_PEN
);
943 dc
.DrawEllipse(5, 5, 90, 90);
944 dc
.DrawText(_T("Bitmap"), 30, 40);
945 dc
.SelectObject( wxNullBitmap
);
947 (void)new wxBitmapButton(panel
, ID_BITMAP_BTN
, bitmap
, wxPoint(100, 20));
948 (void)new wxToggleButton(panel
, ID_BITMAP_BTN_ENABLE
,
949 _T("Enable/disable &bitmap"), wxPoint(100, 140));
951 #if defined(__WXMSW__) || defined(__WXMOTIF__)
952 // test for masked bitmap display
953 bitmap
= wxBitmap(_T("test2.bmp"), wxBITMAP_TYPE_BMP
);
956 bitmap
.SetMask(new wxMask(bitmap
, *wxBLUE
));
958 (void)new wxStaticBitmap(panel
, wxID_ANY
, bitmap
, wxPoint(300, 120));
962 wxBitmap
bmp1(wxArtProvider::GetBitmap(wxART_INFORMATION
)),
963 bmp2(wxArtProvider::GetBitmap(wxART_WARNING
)),
964 bmp3(wxArtProvider::GetBitmap(wxART_QUESTION
));
965 wxBitmapButton
*bmpBtn
= new wxBitmapButton
972 bmpBtn
->SetBitmapSelected(bmp2
);
973 bmpBtn
->SetBitmapFocus(bmp3
);
975 (void)new wxToggleButton(panel
, ID_BUTTON_LABEL
,
976 _T("&Toggle label"), wxPoint(250, 20));
978 m_label
= new wxStaticText(panel
, wxID_ANY
, _T("Label with some long text"),
979 wxPoint(250, 60), wxDefaultSize
,
980 wxALIGN_RIGHT
/*| wxST_NO_AUTORESIZE*/);
981 m_label
->SetForegroundColour( *wxBLUE
);
983 m_book
->AddPage(panel
, _T("wxBitmapXXX"));
987 panel
= new wxPanel(m_book
);
988 panel
->SetAutoLayout( true );
990 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
992 wxStaticBoxSizer
*csizer
=
993 new wxStaticBoxSizer (new wxStaticBox (panel
, wxID_ANY
, _T("Show Buttons")), wxHORIZONTAL
);
995 wxCheckBox
*check1
, *check2
, *check3
, *check4
, *check14
, *checkBig
;
996 check1
= new wxCheckBox (panel
, ID_SIZER_CHECK1
, _T("1"));
997 check1
->SetValue (true);
998 csizer
->Add (check1
);
999 check2
= new wxCheckBox (panel
, ID_SIZER_CHECK2
, _T("2"));
1000 check2
->SetValue (true);
1001 csizer
->Add (check2
);
1002 check3
= new wxCheckBox (panel
, ID_SIZER_CHECK3
, _T("3"));
1003 check3
->SetValue (true);
1004 csizer
->Add (check3
);
1005 check4
= new wxCheckBox (panel
, ID_SIZER_CHECK4
, _T("4"));
1006 check4
->SetValue (true);
1007 csizer
->Add (check4
);
1008 check14
= new wxCheckBox (panel
, ID_SIZER_CHECK14
, _T("1-4"));
1009 check14
->SetValue (true);
1010 csizer
->Add (check14
);
1011 checkBig
= new wxCheckBox (panel
, ID_SIZER_CHECKBIG
, _T("Big"));
1012 checkBig
->SetValue (true);
1013 csizer
->Add (checkBig
);
1015 sizer
->Add (csizer
);
1017 m_hsizer
= new wxBoxSizer( wxHORIZONTAL
);
1019 m_buttonSizer
= new wxBoxSizer (wxVERTICAL
);
1021 m_sizerBtn1
= new wxButton(panel
, wxID_ANY
, _T("Test Button &1 (tab order 1)") );
1022 m_buttonSizer
->Add( m_sizerBtn1
, 0, wxALL
, 10 );
1023 m_sizerBtn2
= new wxButton(panel
, wxID_ANY
, _T("Test Button &2 (tab order 3)") );
1024 m_buttonSizer
->Add( m_sizerBtn2
, 0, wxALL
, 10 );
1025 m_sizerBtn3
= new wxButton(panel
, wxID_ANY
, _T("Test Button &3 (tab order 2)") );
1026 m_buttonSizer
->Add( m_sizerBtn3
, 0, wxALL
, 10 );
1027 m_sizerBtn4
= new wxButton(panel
, wxID_ANY
, _T("Test Button &4 (tab order 4)") );
1028 m_buttonSizer
->Add( m_sizerBtn4
, 0, wxALL
, 10 );
1030 m_sizerBtn3
->MoveBeforeInTabOrder(m_sizerBtn2
);
1032 m_hsizer
->Add (m_buttonSizer
);
1033 m_hsizer
->Add( 20,20, 1 );
1034 m_bigBtn
= new wxButton(panel
, wxID_ANY
, _T("Multiline\nbutton") );
1035 m_hsizer
->Add( m_bigBtn
, 3, wxGROW
|wxALL
, 10 );
1037 sizer
->Add (m_hsizer
, 1, wxGROW
);
1039 panel
->SetSizer( sizer
);
1041 m_book
->AddPage(panel
, _T("wxSizer"));
1044 void MyPanel::OnSize( wxSizeEvent
& WXUNUSED(event
) )
1048 GetClientSize( &x
, &y
);
1050 if (m_book
) m_book
->SetSize( 2, 2, x
-4, y
*2/3-4 );
1051 if (m_text
) m_text
->SetSize( 2, y
*2/3+2, x
-4, y
/3-4 );
1054 void MyPanel::OnIdle(wxIdleEvent
& event
)
1056 static const int INVALID_SELECTION
= -2;
1058 static int s_selCombo
= INVALID_SELECTION
;
1059 int sel
= m_combo
->GetSelection();
1060 if ( sel
!= s_selCombo
)
1062 if ( s_selCombo
!= INVALID_SELECTION
)
1064 wxLogMessage(_T("EVT_IDLE: combobox selection changed from %d to %d"),
1071 static int s_selChoice
= INVALID_SELECTION
;
1072 sel
= m_choice
->GetSelection();
1073 if ( sel
!= s_selChoice
)
1075 if ( s_selChoice
!= INVALID_SELECTION
)
1077 wxLogMessage(_T("EVT_IDLE: choice selection changed from %d to %d"),
1087 void MyPanel::OnPageChanging( wxBookCtrlEvent
&event
)
1089 int selOld
= event
.GetOldSelection();
1092 if ( wxMessageBox(_T("This demonstrates how a program may prevent the\n")
1093 _T("page change from taking place - if you select\n")
1094 _T("[No] the current page will stay the third one\n"),
1095 _T("Control sample"),
1096 wxICON_QUESTION
| wxYES_NO
, this) != wxYES
)
1104 *m_text
<< _T("Book selection is being changed from ") << selOld
1105 << _T(" to ") << event
.GetSelection()
1106 << _T(" (current page from book is ")
1107 << m_book
->GetSelection() << _T(")\n");
1110 void MyPanel::OnPageChanged( wxBookCtrlEvent
&event
)
1112 *m_text
<< _T("Book selection is now ") << event
.GetSelection()
1113 << _T(" (from book: ") << m_book
->GetSelection()
1117 void MyPanel::OnTestButton(wxCommandEvent
& event
)
1119 wxLogMessage(_T("Button %c clicked."),
1120 event
.GetId() == ID_BUTTON_TEST1
? _T('1') : _T('2'));
1123 void MyPanel::OnBmpButton(wxCommandEvent
& WXUNUSED(event
))
1125 wxLogMessage(_T("Bitmap button clicked."));
1128 void MyPanel::OnBmpButtonToggle(wxCommandEvent
& event
)
1130 FindWindow(ID_BITMAP_BTN
)->Enable(!event
.IsChecked());
1133 void MyPanel::OnChangeColour(wxCommandEvent
& WXUNUSED(event
))
1135 static wxColour s_colOld
;
1137 SetThemeEnabled(false);
1138 // test panel colour changing and propagation to the subcontrols
1139 if ( s_colOld
.Ok() )
1141 SetBackgroundColour(s_colOld
);
1142 s_colOld
= wxNullColour
;
1144 m_lbSelectThis
->SetForegroundColour(wxNullColour
);
1145 m_lbSelectThis
->SetBackgroundColour(wxNullColour
);
1149 s_colOld
= wxColour(wxT("red"));
1150 SetBackgroundColour(wxT("white"));
1152 m_lbSelectThis
->SetForegroundColour(wxT("white"));
1153 m_lbSelectThis
->SetBackgroundColour(wxT("red"));
1156 m_lbSelectThis
->Refresh();
1160 void MyPanel::OnListBox( wxCommandEvent
&event
)
1162 // GetParent()->Move(100, 100);
1164 if (event
.GetInt() == -1)
1166 m_text
->AppendText( _T("ListBox has no selections anymore\n") );
1170 wxListBox
*listbox
= event
.GetId() == ID_LISTBOX
? m_listbox
1173 m_text
->AppendText( _T("ListBox event selection string is: '") );
1174 m_text
->AppendText( event
.GetString() );
1175 m_text
->AppendText( _T("'\n") );
1176 m_text
->AppendText( _T("ListBox control selection string is: '") );
1177 m_text
->AppendText( listbox
->GetStringSelection() );
1178 m_text
->AppendText( _T("'\n") );
1180 wxStringClientData
*obj
= ((wxStringClientData
*)event
.GetClientObject());
1181 m_text
->AppendText( _T("ListBox event client data string is: '") );
1182 if (obj
) // BC++ doesn't like use of '? .. : .. ' in this context
1183 m_text
->AppendText( obj
->GetData() );
1185 m_text
->AppendText( wxString(_T("none")) );
1187 m_text
->AppendText( _T("'\n") );
1188 m_text
->AppendText( _T("ListBox control client data string is: '") );
1189 obj
= (wxStringClientData
*)listbox
->GetClientObject(listbox
->GetSelection());
1191 m_text
->AppendText( obj
->GetData() );
1193 m_text
->AppendText( wxString(_T("none")) );
1194 m_text
->AppendText( _T("'\n") );
1197 void MyPanel::OnListBoxDoubleClick( wxCommandEvent
&event
)
1199 m_text
->AppendText( _T("ListBox double click string is: ") );
1200 m_text
->AppendText( event
.GetString() );
1201 m_text
->AppendText( _T("\n") );
1204 void MyPanel::OnListBoxButtons( wxCommandEvent
&event
)
1206 switch (event
.GetId())
1208 case ID_LISTBOX_ENABLE
:
1210 m_text
->AppendText(_T("Checkbox clicked.\n"));
1212 wxCheckBox
*cb
= (wxCheckBox
*)event
.GetEventObject();
1214 cb
->SetToolTip( _T("Click to enable listbox") );
1216 cb
->SetToolTip( _T("Click to disable listbox") );
1217 #endif // wxUSE_TOOLTIPS
1218 m_listbox
->Enable( event
.GetInt() == 0 );
1219 m_lbSelectThis
->Enable( event
.GetInt() == 0 );
1220 m_lbSelectNum
->Enable( event
.GetInt() == 0 );
1221 m_listboxSorted
->Enable( event
.GetInt() == 0 );
1222 FindWindow(ID_CHANGE_COLOUR
)->Enable( event
.GetInt() == 0 );
1225 case ID_LISTBOX_SEL_NUM
:
1227 if (m_listbox
->GetCount() > 2)
1228 m_listbox
->SetSelection( 2 );
1229 if (m_listboxSorted
->GetCount() > 2)
1230 m_listboxSorted
->SetSelection( 2 );
1231 m_lbSelectThis
->WarpPointer( 40, 14 );
1234 case ID_LISTBOX_SEL_STR
:
1236 if (m_listbox
->FindString(_T("This")) != wxNOT_FOUND
)
1237 m_listbox
->SetStringSelection( _T("This") );
1238 if (m_listboxSorted
->FindString(_T("This")) != wxNOT_FOUND
)
1239 m_listboxSorted
->SetStringSelection( _T("This") );
1240 m_lbSelectNum
->WarpPointer( 40, 14 );
1243 case ID_LISTBOX_CLEAR
:
1246 m_listboxSorted
->Clear();
1249 case ID_LISTBOX_APPEND
:
1251 m_listbox
->Append( _T("Hi!") );
1252 m_listboxSorted
->Append( _T("Hi!") );
1255 case ID_LISTBOX_DELETE
:
1258 idx
= m_listbox
->GetSelection();
1259 if ( idx
!= wxNOT_FOUND
)
1260 m_listbox
->Delete( idx
);
1261 idx
= m_listboxSorted
->GetSelection();
1262 if ( idx
!= wxNOT_FOUND
)
1263 m_listboxSorted
->Delete( idx
);
1266 case ID_LISTBOX_FONT
:
1268 m_listbox
->SetFont( *wxITALIC_FONT
);
1269 m_listboxSorted
->SetFont( *wxITALIC_FONT
);
1270 m_checkbox
->SetFont( *wxITALIC_FONT
);
1277 void MyPanel::OnChoice( wxCommandEvent
&event
)
1279 wxChoice
*choice
= event
.GetId() == ID_CHOICE
? m_choice
1282 m_text
->AppendText( _T("Choice event selection string is: '") );
1283 m_text
->AppendText( event
.GetString() );
1284 m_text
->AppendText( _T("'\n") );
1285 m_text
->AppendText( _T("Choice control selection string is: '") );
1286 m_text
->AppendText( choice
->GetStringSelection() );
1287 m_text
->AppendText( _T("'\n") );
1289 wxStringClientData
*obj
= ((wxStringClientData
*)event
.GetClientObject());
1290 m_text
->AppendText( _T("Choice event client data string is: '") );
1293 m_text
->AppendText( obj
->GetData() );
1295 m_text
->AppendText( wxString(_T("none")) );
1297 m_text
->AppendText( _T("'\n") );
1298 m_text
->AppendText( _T("Choice control client data string is: '") );
1299 obj
= (wxStringClientData
*)choice
->GetClientObject(choice
->GetSelection());
1302 m_text
->AppendText( obj
->GetData() );
1304 m_text
->AppendText( wxString(_T("none")) );
1305 m_text
->AppendText( _T("'\n") );
1308 void MyPanel::OnChoiceButtons( wxCommandEvent
&event
)
1310 switch (event
.GetId())
1312 case ID_CHOICE_ENABLE
:
1314 m_choice
->Enable( event
.GetInt() == 0 );
1315 m_choiceSorted
->Enable( event
.GetInt() == 0 );
1318 case ID_CHOICE_SEL_NUM
:
1320 m_choice
->SetSelection( 2 );
1321 m_choiceSorted
->SetSelection( 2 );
1324 case ID_CHOICE_SEL_STR
:
1326 m_choice
->SetStringSelection( _T("This") );
1327 m_choiceSorted
->SetStringSelection( _T("This") );
1330 case ID_CHOICE_CLEAR
:
1333 m_choiceSorted
->Clear();
1336 case ID_CHOICE_APPEND
:
1338 m_choice
->Append( _T("Hi!") );
1339 m_choiceSorted
->Append( _T("Hi!") );
1342 case ID_CHOICE_DELETE
:
1344 int idx
= m_choice
->GetSelection();
1345 if ( idx
!= wxNOT_FOUND
)
1346 m_choice
->Delete( idx
);
1347 idx
= m_choiceSorted
->GetSelection();
1348 if ( idx
!= wxNOT_FOUND
)
1349 m_choiceSorted
->Delete( idx
);
1352 case ID_CHOICE_FONT
:
1354 m_choice
->SetFont( *wxITALIC_FONT
);
1355 m_choiceSorted
->SetFont( *wxITALIC_FONT
);
1360 #endif // wxUSE_CHOICE
1362 void MyPanel::OnCombo( wxCommandEvent
&event
)
1364 wxLogMessage(_T("EVT_COMBOBOX: item %d/%d (event/control), string \"%s\"/\"%s\""),
1365 (int)event
.GetInt(),
1366 m_combo
->GetSelection(),
1367 event
.GetString().c_str(),
1368 m_combo
->GetStringSelection().c_str());
1371 void MyPanel::OnComboTextChanged(wxCommandEvent
& event
)
1373 wxLogMessage(wxT("EVT_TEXT for the combobox: \"%s\" (event) or \"%s\" (control)."),
1374 event
.GetString().c_str(),
1375 m_combo
->GetValue().c_str());
1378 void MyPanel::OnComboTextEnter(wxCommandEvent
& WXUNUSED(event
))
1380 wxLogMessage(_T("Enter pressed in the combobox: value is '%s'."),
1381 m_combo
->GetValue().c_str());
1384 void MyPanel::OnComboButtons( wxCommandEvent
&event
)
1386 switch (event
.GetId())
1388 case ID_COMBO_ENABLE
:
1390 m_combo
->Enable( event
.GetInt() == 0 );
1393 case ID_COMBO_SEL_NUM
:
1395 m_combo
->SetSelection( 2 );
1398 case ID_COMBO_SEL_STR
:
1400 m_combo
->SetStringSelection( _T("This") );
1403 case ID_COMBO_CLEAR
:
1408 case ID_COMBO_APPEND
:
1410 m_combo
->Append( _T("Hi!") );
1413 case ID_COMBO_DELETE
:
1415 int idx
= m_combo
->GetSelection();
1416 m_combo
->Delete( idx
);
1421 m_combo
->SetFont( *wxITALIC_FONT
);
1427 void MyPanel::OnRadio( wxCommandEvent
&event
)
1429 m_text
->AppendText( _T("RadioBox selection string is: ") );
1430 m_text
->AppendText( event
.GetString() );
1431 m_text
->AppendText( _T("\n") );
1434 void MyPanel::OnRadioButton1( wxCommandEvent
& WXUNUSED(event
) )
1436 wxMessageBox(_T("First wxRadioButton selected."), _T("wxControl sample"));
1439 void MyPanel::OnRadioButton2( wxCommandEvent
& WXUNUSED(event
) )
1441 m_text
->AppendText(_T("Second wxRadioButton selected.\n"));
1444 void MyPanel::OnRadioButtons( wxCommandEvent
&event
)
1446 switch (event
.GetId())
1448 case ID_RADIOBOX_ENABLE
:
1450 m_radio
->Enable( event
.GetInt() == 0 );
1453 case ID_RADIOBOX_SEL_NUM
:
1455 m_radio
->SetSelection( 2 );
1458 case ID_RADIOBOX_SEL_STR
:
1460 m_radio
->SetStringSelection( _T("This") );
1463 case ID_RADIOBOX_FONT
:
1465 m_radio
->SetForegroundColour(*wxGREEN
);
1467 m_radio
->SetFont( *wxITALIC_FONT
);
1473 void MyPanel::OnSetFont( wxCommandEvent
&WXUNUSED(event
) )
1475 m_fontButton
->SetFont( *wxITALIC_FONT
);
1476 m_text
->SetFont( *wxITALIC_FONT
);
1479 void MyPanel::OnUpdateLabel( wxCommandEvent
&event
)
1481 m_label
->SetLabel(event
.GetInt() ? _T("Very very very very very long text.")
1482 : _T("Shorter text."));
1487 void MyPanel::OnSliderUpdate( wxCommandEvent
&WXUNUSED(event
) )
1490 m_gauge
->SetValue( m_slider
->GetValue() );
1491 m_gaugeVert
->SetValue( m_slider
->GetValue() / 2 );
1492 #endif // wxUSE_GAUGE
1495 #endif // wxUSE_SLIDER
1499 void MyPanel::OnSpinCtrlText(wxCommandEvent
& event
)
1504 s
.Printf( _T("Spin ctrl text changed: now %d (from event: %s)\n"),
1505 m_spinctrl
->GetValue(), event
.GetString().c_str() );
1506 m_text
->AppendText(s
);
1510 void MyPanel::OnSpinCtrl(wxSpinEvent
& event
)
1515 s
.Printf( _T("Spin ctrl changed: now %d (from event: %ld)\n"),
1516 m_spinctrl
->GetValue(), event
.GetInt() );
1517 m_text
->AppendText(s
);
1521 void MyPanel::OnSpinCtrlUp(wxSpinEvent
& event
)
1525 m_text
->AppendText( wxString::Format(
1526 _T("Spin up: %d (from event: %ld)\n"),
1527 m_spinctrl
->GetValue(), event
.GetInt() ) );
1531 void MyPanel::OnSpinCtrlDown(wxSpinEvent
& event
)
1535 m_text
->AppendText( wxString::Format(
1536 _T("Spin down: %d (from event: %ld)\n"),
1537 m_spinctrl
->GetValue(), event
.GetInt() ) );
1541 #endif // wxUSE_SPINCTRL
1544 void MyPanel::OnSpinUp( wxSpinEvent
&event
)
1547 value
.Printf( _T("Spin control up: current = %d\n"),
1548 m_spinbutton
->GetValue());
1550 if ( event
.GetPosition() > 17 )
1552 value
+= _T("Preventing the spin button from going above 17.\n");
1557 m_text
->AppendText(value
);
1560 void MyPanel::OnSpinDown( wxSpinEvent
&event
)
1563 value
.Printf( _T("Spin control down: current = %d\n"),
1564 m_spinbutton
->GetValue());
1566 if ( event
.GetPosition() < -17 )
1568 value
+= _T("Preventing the spin button from going below -17.\n");
1573 m_text
->AppendText(value
);
1576 void MyPanel::OnSpinUpdate( wxSpinEvent
&event
)
1579 value
.Printf( _T("%d"), event
.GetPosition() );
1580 m_spintext
->SetValue( value
);
1582 value
.Printf( _T("Spin control range: (%d, %d), current = %d\n"),
1583 m_spinbutton
->GetMin(), m_spinbutton
->GetMax(),
1584 m_spinbutton
->GetValue());
1586 m_text
->AppendText(value
);
1589 void MyPanel::OnNewText( wxCommandEvent
& /* event */)
1591 m_nonWrappingText
->SetLabel( wxT("This text is short\nbut still spans\nover three lines.") );
1592 m_wrappingText
->SetLabel( wxT("This text is short but will still be wrapped if it is too long.") );
1593 m_wrappingText
->GetParent()->Layout();
1596 #if wxUSE_PROGRESSDLG
1598 void MyPanel::OnUpdateShowProgress( wxUpdateUIEvent
& event
)
1600 event
.Enable( m_spinbutton
->GetValue() > 0 );
1603 void MyPanel::OnShowProgress( wxCommandEvent
& WXUNUSED(event
) )
1605 int max
= m_spinbutton
->GetValue();
1609 wxLogError(_T("You must set positive range!"));
1613 wxProgressDialog
dialog(_T("Progress dialog example"),
1614 _T("An informative message"),
1621 wxPD_ESTIMATED_TIME
|
1622 wxPD_REMAINING_TIME
);
1626 for ( int i
= 0; i
<= max
&& cont
; i
++ )
1631 cont
= dialog
.Update(i
, _T("That's all, folks!"));
1633 else if ( i
== max
/ 2 )
1635 cont
= dialog
.Update(i
, _T("Only a half left (very long message)!"));
1639 cont
= dialog
.Update(i
);
1645 *m_text
<< _T("Progress dialog aborted!\n");
1649 *m_text
<< _T("Countdown from ") << max
<< _T(" finished.\n");
1653 #endif // wxUSE_PROGRESSDLG
1654 #endif // wxUSE_SPINBTN
1656 void MyPanel::OnSizerCheck( wxCommandEvent
&event
)
1658 switch (event
.GetId ()) {
1659 case ID_SIZER_CHECK1
:
1660 m_buttonSizer
->Show (m_sizerBtn1
, event
.IsChecked ());
1661 m_buttonSizer
->Layout ();
1663 case ID_SIZER_CHECK2
:
1664 m_buttonSizer
->Show (m_sizerBtn2
, event
.IsChecked ());
1665 m_buttonSizer
->Layout ();
1667 case ID_SIZER_CHECK3
:
1668 m_buttonSizer
->Show (m_sizerBtn3
, event
.IsChecked ());
1669 m_buttonSizer
->Layout ();
1671 case ID_SIZER_CHECK4
:
1672 m_buttonSizer
->Show (m_sizerBtn4
, event
.IsChecked ());
1673 m_buttonSizer
->Layout ();
1675 case ID_SIZER_CHECK14
:
1676 m_hsizer
->Show (m_buttonSizer
, event
.IsChecked ());
1677 m_hsizer
->Layout ();
1679 case ID_SIZER_CHECKBIG
:
1680 m_hsizer
->Show (m_bigBtn
, event
.IsChecked ());
1681 m_hsizer
->Layout ();
1689 //wxLog::RemoveTraceMask(_T("focus"));
1690 delete wxLog::SetActiveTarget(m_logTargetOld
);
1692 delete m_book
->GetImageList();
1695 //----------------------------------------------------------------------
1697 //----------------------------------------------------------------------
1699 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
1700 EVT_MENU(CONTROLS_QUIT
, MyFrame::OnQuit
)
1701 EVT_MENU(CONTROLS_ABOUT
, MyFrame::OnAbout
)
1702 EVT_MENU(CONTROLS_CLEAR_LOG
, MyFrame::OnClearLog
)
1704 EVT_MENU(CONTROLS_SET_TOOLTIP_DELAY
, MyFrame::OnSetTooltipDelay
)
1705 EVT_MENU(CONTROLS_ENABLE_TOOLTIPS
, MyFrame::OnToggleTooltips
)
1706 #endif // wxUSE_TOOLTIPS
1708 EVT_MENU(CONTROLS_ENABLE_ALL
, MyFrame::OnEnableAll
)
1710 EVT_ICONIZE(MyFrame::OnIconized
)
1711 EVT_MAXIMIZE(MyFrame::OnMaximized
)
1712 EVT_SIZE(MyFrame::OnSize
)
1713 EVT_MOVE(MyFrame::OnMove
)
1715 EVT_IDLE(MyFrame::OnIdle
)
1718 MyFrame::MyFrame(const wxChar
*title
, int x
, int y
)
1719 : wxFrame(NULL
, wxID_ANY
, title
, wxPoint(x
, y
), wxSize(500, 430))
1722 // The wxICON() macros loads an icon from a resource under Windows
1723 // and uses an #included XPM image under GTK+ and Motif
1726 SetIcon( wxICON(mondrian
) );
1729 wxMenu
*file_menu
= new wxMenu
;
1731 file_menu
->Append(CONTROLS_CLEAR_LOG
, _T("&Clear log\tCtrl-L"));
1732 file_menu
->AppendSeparator();
1733 file_menu
->Append(CONTROLS_ABOUT
, _T("&About\tF1"));
1734 file_menu
->AppendSeparator();
1735 file_menu
->Append(CONTROLS_QUIT
, _T("E&xit\tAlt-X"), _T("Quit controls sample"));
1737 wxMenuBar
*menu_bar
= new wxMenuBar
;
1738 menu_bar
->Append(file_menu
, _T("&File"));
1741 wxMenu
*tooltip_menu
= new wxMenu
;
1742 tooltip_menu
->Append(CONTROLS_SET_TOOLTIP_DELAY
, _T("Set &delay\tCtrl-D"));
1743 tooltip_menu
->AppendSeparator();
1744 tooltip_menu
->Append(CONTROLS_ENABLE_TOOLTIPS
, _T("&Toggle tooltips\tCtrl-T"),
1745 _T("enable/disable tooltips"), true);
1746 tooltip_menu
->Check(CONTROLS_ENABLE_TOOLTIPS
, true);
1747 menu_bar
->Append(tooltip_menu
, _T("&Tooltips"));
1748 #endif // wxUSE_TOOLTIPS
1750 wxMenu
*panel_menu
= new wxMenu
;
1751 panel_menu
->Append(CONTROLS_ENABLE_ALL
, _T("&Disable all\tCtrl-E"),
1752 _T("Enable/disable all panel controls"), true);
1753 menu_bar
->Append(panel_menu
, _T("&Panel"));
1755 SetMenuBar(menu_bar
);
1759 #endif // wxUSE_STATUSBAR
1761 m_panel
= new MyPanel( this, 10, 10, 300, 100 );
1763 SetSizeHints( 500, 425 );
1766 void MyFrame::OnQuit (wxCommandEvent
& WXUNUSED(event
) )
1771 void MyFrame::OnAbout( wxCommandEvent
& WXUNUSED(event
) )
1777 wxMessageDialog
dialog(this, _T("This is a control sample"), _T("About Controls"), wxOK
);
1782 void MyFrame::OnClearLog(wxCommandEvent
& WXUNUSED(event
))
1784 m_panel
->m_text
->Clear();
1788 void MyFrame::OnSetTooltipDelay(wxCommandEvent
& WXUNUSED(event
))
1790 static long s_delay
= 5000;
1793 delay
.Printf( _T("%ld"), s_delay
);
1795 delay
= wxGetTextFromUser(_T("Enter delay (in milliseconds)"),
1796 _T("Set tooltip delay"),
1800 return; // cancelled
1802 wxSscanf(delay
, _T("%ld"), &s_delay
);
1804 wxToolTip::SetDelay(s_delay
);
1806 wxLogStatus(this, _T("Tooltip delay set to %ld milliseconds"), s_delay
);
1809 void MyFrame::OnToggleTooltips(wxCommandEvent
& WXUNUSED(event
))
1811 static bool s_enabled
= true;
1813 s_enabled
= !s_enabled
;
1815 wxToolTip::Enable(s_enabled
);
1817 wxLogStatus(this, _T("Tooltips %sabled"), s_enabled
? _T("en") : _T("dis") );
1821 void MyFrame::OnEnableAll(wxCommandEvent
& WXUNUSED(event
))
1823 static bool s_enable
= true;
1825 s_enable
= !s_enable
;
1826 m_panel
->Enable(s_enable
);
1829 void MyFrame::OnMove( wxMoveEvent
& event
)
1832 UpdateStatusBar(event
.GetPosition(), GetSize());
1833 #endif // wxUSE_STATUSBAR
1838 void MyFrame::OnIconized( wxIconizeEvent
& event
)
1840 wxLogMessage(_T("Frame %s"), event
.Iconized() ? _T("iconized")
1845 void MyFrame::OnMaximized( wxMaximizeEvent
& WXUNUSED(event
) )
1847 wxLogMessage(_T("Frame maximized"));
1850 void MyFrame::OnSize( wxSizeEvent
& event
)
1853 UpdateStatusBar(GetPosition(), event
.GetSize());
1854 #endif // wxUSE_STATUSBAR
1859 void MyFrame::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
1861 // track the window which has the focus in the status bar
1862 static wxWindow
*s_windowFocus
= (wxWindow
*)NULL
;
1863 wxWindow
*focus
= wxWindow::FindFocus();
1864 if ( focus
&& (focus
!= s_windowFocus
) )
1866 s_windowFocus
= focus
;
1871 _T("Focus: %s, HWND = %08x"),
1875 s_windowFocus
->GetClassInfo()->GetClassName()
1877 , (unsigned int) s_windowFocus
->GetHWND()
1883 #endif // wxUSE_STATUSBAR
1887 void MyComboBox::OnChar(wxKeyEvent
& event
)
1889 wxLogMessage(_T("MyComboBox::OnChar"));
1891 if ( event
.GetKeyCode() == 'w' )
1892 wxLogMessage(_T("MyComboBox: 'w' will be ignored."));
1897 void MyComboBox::OnKeyDown(wxKeyEvent
& event
)
1899 wxLogMessage(_T("MyComboBox::OnKeyDown"));
1901 if ( event
.GetKeyCode() == 'w' )
1902 wxLogMessage(_T("MyComboBox: 'w' will be ignored."));
1907 void MyComboBox::OnKeyUp(wxKeyEvent
& event
)
1909 wxLogMessage(_T("MyComboBox::OnKeyUp"));
1914 static void SetListboxClientData(const wxChar
*name
, wxListBox
*control
)
1916 size_t count
= control
->GetCount();
1917 for ( size_t n
= 0; n
< count
; n
++ )
1920 s
.Printf(wxT("%s client data for '%s'"),
1921 name
, control
->GetString(n
).c_str());
1923 control
->SetClientObject(n
, new wxStringClientData(s
));
1929 static void SetChoiceClientData(const wxChar
*name
, wxChoice
*control
)
1931 size_t count
= control
->GetCount();
1932 for ( size_t n
= 0; n
< count
; n
++ )
1935 s
.Printf(wxT("%s client data for '%s'"),
1936 name
, control
->GetString(n
).c_str());
1938 control
->SetClientObject(n
, new wxStringClientData(s
));
1942 #endif // wxUSE_CHOICE