1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Controls wxWindows sample
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling, Julian Smart
8 // Licence: wxWindows license
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "controls.h"
15 // For compilers that support precompilation, includes "wx/wx.h".
16 #include "wx/wxprec.h"
26 #if !defined( __WXMSW__ ) || defined( __WIN95__ )
27 #include "wx/spinbutt.h"
29 #include "wx/tglbtn.h"
30 #include "wx/notebook.h"
31 #include "wx/imaglist.h"
32 #include "wx/artprov.h"
35 #include "wx/tooltip.h"
38 #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
43 #include "mondrian.xpm"
44 #include "icons/choice.xpm"
45 #include "icons/combo.xpm"
46 #include "icons/list.xpm"
47 #include "icons/radio.xpm"
48 #include "icons/text.xpm"
49 #include "icons/gauge.xpm"
53 // Win16 doesn't have them
57 #define wxUSE_SPINBTN 0
60 #define wxUSE_SPINBTN 1
64 #include "wx/progdlg.h"
67 #include "wx/spinctrl.h"
68 #endif // wxUSE_SPINCTRL
70 //----------------------------------------------------------------------
72 //----------------------------------------------------------------------
74 class MyApp
: public wxApp
80 class MyPanel
: public wxPanel
83 MyPanel(wxFrame
*frame
, int x
, int y
, int w
, int h
);
86 void OnSize( wxSizeEvent
& event
);
87 void OnListBox( wxCommandEvent
&event
);
88 void OnListBoxDoubleClick( wxCommandEvent
&event
);
89 void OnListBoxButtons( wxCommandEvent
&event
);
91 void OnChoice( wxCommandEvent
&event
);
92 void OnChoiceButtons( wxCommandEvent
&event
);
94 void OnCombo( wxCommandEvent
&event
);
95 void OnComboTextChanged( wxCommandEvent
&event
);
96 void OnComboTextEnter( wxCommandEvent
&event
);
97 void OnComboButtons( wxCommandEvent
&event
);
98 void OnRadio( wxCommandEvent
&event
);
99 void OnRadioButtons( wxCommandEvent
&event
);
100 void OnSetFont( wxCommandEvent
&event
);
101 void OnPageChanged( wxNotebookEvent
&event
);
102 void OnPageChanging( wxNotebookEvent
&event
);
103 void OnSliderUpdate( wxCommandEvent
&event
);
104 void OnUpdateLabel( wxCommandEvent
&event
);
106 void OnSpinUp( wxSpinEvent
&event
);
107 void OnSpinDown( wxSpinEvent
&event
);
108 void OnSpinUpdate( wxSpinEvent
&event
);
109 void OnUpdateShowProgress( wxUpdateUIEvent
& event
);
110 void OnShowProgress( wxCommandEvent
&event
);
111 #endif // wxUSE_SPINBTN
114 void OnSpinCtrl(wxSpinEvent
& event
);
115 void OnSpinCtrlUp(wxSpinEvent
& event
);
116 void OnSpinCtrlDown(wxSpinEvent
& event
);
117 void OnSpinCtrlText(wxCommandEvent
& event
);
118 #endif // wxUSE_SPINCTRL
120 void OnEnableAll(wxCommandEvent
& event
);
121 void OnChangeColour(wxCommandEvent
& event
);
122 void OnTestButton(wxCommandEvent
& event
);
123 void OnBmpButton(wxCommandEvent
& event
);
125 void OnSizerCheck (wxCommandEvent
&event
);
127 wxListBox
*m_listbox
,
132 #endif // wxUSE_CHOICE
139 wxButton
*m_fontButton
;
140 wxButton
*m_lbSelectNum
;
141 wxButton
*m_lbSelectThis
;
143 wxSpinButton
*m_spinbutton
;
144 wxButton
*m_btnProgress
;
145 #endif // wxUSE_SPINBTN
148 wxSpinCtrl
*m_spinctrl
;
149 #endif // wxUSE_SPINCTRL
151 wxTextCtrl
*m_spintext
;
152 wxCheckBox
*m_checkbox
;
155 wxNotebook
*m_notebook
;
157 wxStaticText
*m_label
;
159 wxBoxSizer
*m_buttonSizer
;
160 wxButton
*m_sizerBtn1
;
161 wxButton
*m_sizerBtn2
;
162 wxButton
*m_sizerBtn3
;
163 wxButton
*m_sizerBtn4
;
164 wxBoxSizer
*m_hsizer
;
168 wxLog
*m_logTargetOld
;
170 DECLARE_EVENT_TABLE()
173 class MyFrame
: public wxFrame
176 MyFrame(const wxChar
*title
, int x
, int y
);
178 void OnQuit(wxCommandEvent
& event
);
179 void OnAbout(wxCommandEvent
& event
);
180 void OnClearLog(wxCommandEvent
& event
);
183 void OnSetTooltipDelay(wxCommandEvent
& event
);
184 void OnToggleTooltips(wxCommandEvent
& event
);
185 #endif // wxUSE_TOOLTIPS
187 void OnEnableAll(wxCommandEvent
& event
);
189 void OnIdle( wxIdleEvent
& event
);
190 void OnSize( wxSizeEvent
& event
);
191 void OnMove( wxMoveEvent
& event
);
193 MyPanel
*GetPanel() const { return m_panel
; }
196 void UpdateStatusBar(const wxPoint
& pos
, const wxSize
& size
)
198 if ( m_frameStatusBar
)
201 wxSize sizeAll
= GetSize(),
202 sizeCl
= GetClientSize();
203 msg
.Printf(_("pos=(%d, %d), size=%dx%d or %dx%d (client=%dx%d)"),
206 sizeAll
.x
, sizeAll
.y
,
208 SetStatusText(msg
, 1);
214 DECLARE_EVENT_TABLE()
217 // a button which intercepts double clicks (for testing...)
218 class MyButton
: public wxButton
221 MyButton(wxWindow
*parent
,
223 const wxString
& label
= wxEmptyString
,
224 const wxPoint
& pos
= wxDefaultPosition
,
225 const wxSize
& size
= wxDefaultSize
)
226 : wxButton(parent
, id
, label
, pos
, size
)
230 void OnDClick(wxMouseEvent
& event
)
232 wxLogMessage(_T("MyButton::OnDClick"));
238 DECLARE_EVENT_TABLE()
241 // a combo which intercepts chars (to test Windows behaviour)
242 class MyComboBox
: public wxComboBox
245 MyComboBox(wxWindow
*parent
, wxWindowID id
,
246 const wxString
& value
= wxEmptyString
,
247 const wxPoint
& pos
= wxDefaultPosition
,
248 const wxSize
& size
= wxDefaultSize
,
249 int n
= 0, const wxString choices
[] = NULL
,
251 const wxValidator
& validator
= wxDefaultValidator
,
252 const wxString
& name
= wxComboBoxNameStr
)
253 : wxComboBox(parent
, id
, value
, pos
, size
, n
, choices
, style
,
257 void OnChar(wxKeyEvent
& event
);
258 void OnKeyDown(wxKeyEvent
& event
);
259 void OnKeyUp(wxKeyEvent
& event
);
260 void OnFocusGot(wxFocusEvent
& event
)
262 wxLogMessage(_T("MyComboBox::OnFocusGot"));
268 DECLARE_EVENT_TABLE()
271 // a radiobox which handles focus set/kill (for testing)
272 class MyRadioBox
: public wxRadioBox
275 MyRadioBox(wxWindow
*parent
,
277 const wxString
& title
= wxEmptyString
,
278 const wxPoint
& pos
= wxDefaultPosition
,
279 const wxSize
& size
= wxDefaultSize
,
280 int n
= 0, const wxString choices
[] = NULL
,
282 long style
= wxRA_HORIZONTAL
,
283 const wxValidator
& validator
= wxDefaultValidator
,
284 const wxString
& name
= wxRadioBoxNameStr
)
285 : wxRadioBox(parent
, id
, title
, pos
, size
, n
, choices
, majorDim
,
286 style
, validator
, name
) { SetForegroundColour(*wxRED
); }
289 void OnFocusGot(wxFocusEvent
& event
)
291 wxLogMessage(_T("MyRadioBox::OnFocusGot"));
296 void OnFocusLost(wxFocusEvent
& event
)
298 wxLogMessage(_T("MyRadioBox::OnFocusLost"));
304 DECLARE_EVENT_TABLE()
307 //----------------------------------------------------------------------
309 //----------------------------------------------------------------------
311 static void SetListboxClientData(const wxChar
*name
, wxListBox
*control
);
314 static void SetChoiceClientData(const wxChar
*name
, wxChoice
*control
);
315 #endif // wxUSE_CHOICE
319 //----------------------------------------------------------------------
321 //----------------------------------------------------------------------
331 CONTROLS_SET_TOOLTIP_DELAY
= 200,
332 CONTROLS_ENABLE_TOOLTIPS
,
340 // use standard command line handling:
341 if ( !wxApp::OnInit() )
344 // parse the cmd line
349 wxSscanf(wxString(argv
[1]), wxT("%d"), &x
);
350 wxSscanf(wxString(argv
[2]), wxT("%d"), &y
);
353 // Create the main frame window
354 MyFrame
*frame
= new MyFrame(_T("Controls wxWindows App"), x
, y
);
360 //----------------------------------------------------------------------
362 //----------------------------------------------------------------------
364 const int ID_NOTEBOOK
= 1000;
366 const int ID_LISTBOX
= 130;
367 const int ID_LISTBOX_SEL_NUM
= 131;
368 const int ID_LISTBOX_SEL_STR
= 132;
369 const int ID_LISTBOX_CLEAR
= 133;
370 const int ID_LISTBOX_APPEND
= 134;
371 const int ID_LISTBOX_DELETE
= 135;
372 const int ID_LISTBOX_FONT
= 136;
373 const int ID_LISTBOX_ENABLE
= 137;
374 const int ID_LISTBOX_SORTED
= 138;
376 const int ID_CHOICE
= 120;
377 const int ID_CHOICE_SEL_NUM
= 121;
378 const int ID_CHOICE_SEL_STR
= 122;
379 const int ID_CHOICE_CLEAR
= 123;
380 const int ID_CHOICE_APPEND
= 124;
381 const int ID_CHOICE_DELETE
= 125;
382 const int ID_CHOICE_FONT
= 126;
383 const int ID_CHOICE_ENABLE
= 127;
384 const int ID_CHOICE_SORTED
= 128;
386 const int ID_COMBO
= 140;
387 const int ID_COMBO_SEL_NUM
= 141;
388 const int ID_COMBO_SEL_STR
= 142;
389 const int ID_COMBO_CLEAR
= 143;
390 const int ID_COMBO_APPEND
= 144;
391 const int ID_COMBO_DELETE
= 145;
392 const int ID_COMBO_FONT
= 146;
393 const int ID_COMBO_ENABLE
= 147;
395 const int ID_RADIOBOX
= 160;
396 const int ID_RADIOBOX_SEL_NUM
= 161;
397 const int ID_RADIOBOX_SEL_STR
= 162;
398 const int ID_RADIOBOX_FONT
= 163;
399 const int ID_RADIOBOX_ENABLE
= 164;
401 const int ID_RADIOBUTTON_1
= 166;
402 const int ID_RADIOBUTTON_2
= 167;
404 const int ID_SET_FONT
= 170;
406 const int ID_GAUGE
= 180;
407 const int ID_SLIDER
= 181;
409 const int ID_SPIN
= 182;
410 const int ID_BTNPROGRESS
= 183;
411 const int ID_BUTTON_LABEL
= 184;
412 const int ID_SPINCTRL
= 185;
414 const int ID_BUTTON_TEST1
= 190;
415 const int ID_BUTTON_TEST2
= 191;
416 const int ID_BITMAP_BTN
= 192;
418 const int ID_CHANGE_COLOUR
= 200;
420 const int ID_SIZER_CHECK1
= 201;
421 const int ID_SIZER_CHECK2
= 202;
422 const int ID_SIZER_CHECK3
= 203;
423 const int ID_SIZER_CHECK4
= 204;
424 const int ID_SIZER_CHECK14
= 205;
425 const int ID_SIZER_CHECKBIG
= 206;
427 BEGIN_EVENT_TABLE(MyPanel
, wxPanel
)
428 EVT_SIZE ( MyPanel::OnSize
)
429 EVT_NOTEBOOK_PAGE_CHANGING(ID_NOTEBOOK
, MyPanel::OnPageChanging
)
430 EVT_NOTEBOOK_PAGE_CHANGED(ID_NOTEBOOK
, MyPanel::OnPageChanged
)
431 EVT_LISTBOX (ID_LISTBOX
, MyPanel::OnListBox
)
432 EVT_LISTBOX (ID_LISTBOX_SORTED
, MyPanel::OnListBox
)
433 EVT_LISTBOX_DCLICK(ID_LISTBOX
, MyPanel::OnListBoxDoubleClick
)
434 EVT_BUTTON (ID_LISTBOX_SEL_NUM
, MyPanel::OnListBoxButtons
)
435 EVT_BUTTON (ID_LISTBOX_SEL_STR
, MyPanel::OnListBoxButtons
)
436 EVT_BUTTON (ID_LISTBOX_CLEAR
, MyPanel::OnListBoxButtons
)
437 EVT_BUTTON (ID_LISTBOX_APPEND
, MyPanel::OnListBoxButtons
)
438 EVT_BUTTON (ID_LISTBOX_DELETE
, MyPanel::OnListBoxButtons
)
439 EVT_BUTTON (ID_LISTBOX_FONT
, MyPanel::OnListBoxButtons
)
440 EVT_CHECKBOX (ID_LISTBOX_ENABLE
, MyPanel::OnListBoxButtons
)
442 EVT_CHOICE (ID_CHOICE
, MyPanel::OnChoice
)
443 EVT_CHOICE (ID_CHOICE_SORTED
, MyPanel::OnChoice
)
444 EVT_BUTTON (ID_CHOICE_SEL_NUM
, MyPanel::OnChoiceButtons
)
445 EVT_BUTTON (ID_CHOICE_SEL_STR
, MyPanel::OnChoiceButtons
)
446 EVT_BUTTON (ID_CHOICE_CLEAR
, MyPanel::OnChoiceButtons
)
447 EVT_BUTTON (ID_CHOICE_APPEND
, MyPanel::OnChoiceButtons
)
448 EVT_BUTTON (ID_CHOICE_DELETE
, MyPanel::OnChoiceButtons
)
449 EVT_BUTTON (ID_CHOICE_FONT
, MyPanel::OnChoiceButtons
)
450 EVT_CHECKBOX (ID_CHOICE_ENABLE
, MyPanel::OnChoiceButtons
)
452 EVT_COMBOBOX (ID_COMBO
, MyPanel::OnCombo
)
453 EVT_TEXT (ID_COMBO
, MyPanel::OnComboTextChanged
)
454 EVT_TEXT_ENTER(ID_COMBO
, MyPanel::OnComboTextEnter
)
455 EVT_BUTTON (ID_COMBO_SEL_NUM
, MyPanel::OnComboButtons
)
456 EVT_BUTTON (ID_COMBO_SEL_STR
, MyPanel::OnComboButtons
)
457 EVT_BUTTON (ID_COMBO_CLEAR
, MyPanel::OnComboButtons
)
458 EVT_BUTTON (ID_COMBO_APPEND
, MyPanel::OnComboButtons
)
459 EVT_BUTTON (ID_COMBO_DELETE
, MyPanel::OnComboButtons
)
460 EVT_BUTTON (ID_COMBO_FONT
, MyPanel::OnComboButtons
)
461 EVT_CHECKBOX (ID_COMBO_ENABLE
, MyPanel::OnComboButtons
)
462 EVT_RADIOBOX (ID_RADIOBOX
, MyPanel::OnRadio
)
463 EVT_BUTTON (ID_RADIOBOX_SEL_NUM
, MyPanel::OnRadioButtons
)
464 EVT_BUTTON (ID_RADIOBOX_SEL_STR
, MyPanel::OnRadioButtons
)
465 EVT_BUTTON (ID_RADIOBOX_FONT
, MyPanel::OnRadioButtons
)
466 EVT_CHECKBOX (ID_RADIOBOX_ENABLE
, MyPanel::OnRadioButtons
)
467 EVT_BUTTON (ID_SET_FONT
, MyPanel::OnSetFont
)
468 EVT_SLIDER (ID_SLIDER
, MyPanel::OnSliderUpdate
)
470 EVT_SPIN (ID_SPIN
, MyPanel::OnSpinUpdate
)
471 EVT_SPIN_UP (ID_SPIN
, MyPanel::OnSpinUp
)
472 EVT_SPIN_DOWN (ID_SPIN
, MyPanel::OnSpinDown
)
473 EVT_UPDATE_UI (ID_BTNPROGRESS
, MyPanel::OnUpdateShowProgress
)
474 EVT_BUTTON (ID_BTNPROGRESS
, MyPanel::OnShowProgress
)
475 #endif // wxUSE_SPINBTN
477 EVT_SPINCTRL (ID_SPINCTRL
, MyPanel::OnSpinCtrl
)
478 EVT_SPIN_UP (ID_SPINCTRL
, MyPanel::OnSpinCtrlUp
)
479 EVT_SPIN_DOWN (ID_SPINCTRL
, MyPanel::OnSpinCtrlDown
)
480 EVT_TEXT (ID_SPINCTRL
, MyPanel::OnSpinCtrlText
)
481 #endif // wxUSE_SPINCTRL
483 EVT_TOGGLEBUTTON(ID_BUTTON_LABEL
, MyPanel::OnUpdateLabel
)
484 #endif // wxUSE_TOGGLEBTN
485 EVT_CHECKBOX (ID_CHANGE_COLOUR
, MyPanel::OnChangeColour
)
486 EVT_BUTTON (ID_BUTTON_TEST1
, MyPanel::OnTestButton
)
487 EVT_BUTTON (ID_BUTTON_TEST2
, MyPanel::OnTestButton
)
488 EVT_BUTTON (ID_BITMAP_BTN
, MyPanel::OnBmpButton
)
490 EVT_CHECKBOX (ID_SIZER_CHECK1
, MyPanel::OnSizerCheck
)
491 EVT_CHECKBOX (ID_SIZER_CHECK2
, MyPanel::OnSizerCheck
)
492 EVT_CHECKBOX (ID_SIZER_CHECK3
, MyPanel::OnSizerCheck
)
493 EVT_CHECKBOX (ID_SIZER_CHECK4
, MyPanel::OnSizerCheck
)
494 EVT_CHECKBOX (ID_SIZER_CHECK14
, MyPanel::OnSizerCheck
)
495 EVT_CHECKBOX (ID_SIZER_CHECKBIG
, MyPanel::OnSizerCheck
)
499 BEGIN_EVENT_TABLE(MyButton
, wxButton
)
500 EVT_LEFT_DCLICK(MyButton::OnDClick
)
503 BEGIN_EVENT_TABLE(MyComboBox
, wxComboBox
)
504 EVT_CHAR(MyComboBox::OnChar
)
505 EVT_KEY_DOWN(MyComboBox::OnKeyDown
)
506 EVT_KEY_UP(MyComboBox::OnKeyUp
)
508 EVT_SET_FOCUS(MyComboBox::OnFocusGot
)
511 BEGIN_EVENT_TABLE(MyRadioBox
, wxRadioBox
)
512 EVT_SET_FOCUS(MyRadioBox::OnFocusGot
)
513 EVT_KILL_FOCUS(MyRadioBox::OnFocusLost
)
516 // ============================================================================
518 // ============================================================================
520 MyPanel::MyPanel( wxFrame
*frame
, int x
, int y
, int w
, int h
)
521 : wxPanel( frame
, -1, wxPoint(x
, y
), wxSize(w
, h
) )
524 m_listboxSorted
= NULL
;
527 m_choiceSorted
= NULL
;
535 m_lbSelectNum
= NULL
;
536 m_lbSelectThis
= NULL
;
539 m_btnProgress
= NULL
;
540 #endif // wxUSE_SPINBTN
543 #endif // wxUSE_SPINCTRL
550 m_text
= new wxTextCtrl(this, -1, _T("This is the log window.\n"),
551 wxPoint(0, 250), wxSize(100, 50), wxTE_MULTILINE
);
552 m_text
->SetBackgroundColour(wxT("wheat"));
555 wxLog::AddTraceMask(_T("focus"));
556 m_logTargetOld
= wxLog::SetActiveTarget(new wxLogTextCtrl(m_text
));
558 m_notebook
= new wxNotebook(this, ID_NOTEBOOK
);
573 Image_List
, Image_Choice
, Image_Combo
, Image_Text
, Image_Radio
, Image_Gauge
, Image_Max
576 // fill the image list
577 wxImageList
*imagelist
= new wxImageList(32, 32);
579 imagelist
-> Add( wxBitmap( list_xpm
));
580 imagelist
-> Add( wxBitmap( choice_xpm
));
581 imagelist
-> Add( wxBitmap( combo_xpm
));
582 imagelist
-> Add( wxBitmap( text_xpm
));
583 imagelist
-> Add( wxBitmap( radio_xpm
));
584 imagelist
-> Add( wxBitmap( gauge_xpm
));
585 m_notebook
->SetImageList(imagelist
);
586 #elif defined(__WXMSW__)
587 // load images from resources
590 Image_List
, Image_Choice
, Image_Combo
, Image_Text
, Image_Radio
, Image_Gauge
, Image_Max
592 wxImageList
*imagelist
= new wxImageList(16, 16, FALSE
, Image_Max
);
594 static const wxChar
*s_iconNames
[Image_Max
] =
596 _T("list"), _T("choice"), _T("combo"), _T("text"), _T("radio"),
600 for ( size_t n
= 0; n
< Image_Max
; n
++ )
602 wxBitmap
bmp(s_iconNames
[n
]);
603 if ( !bmp
.Ok() || (imagelist
->Add(bmp
) == -1) )
605 wxLogWarning(wxT("Couldn't load the image '%s' for the notebook page %d."),
610 m_notebook
->SetImageList(imagelist
);
614 #define Image_List -1
615 #define Image_Choice -1
616 #define Image_Combo -1
617 #define Image_Text -1
618 #define Image_Radio -1
619 #define Image_Gauge -1
624 wxPanel
*panel
= new wxPanel(m_notebook
);
625 m_listbox
= new wxListBox( panel
, ID_LISTBOX
,
626 wxPoint(10,10), wxSize(120,70),
627 5, choices
, wxLB_ALWAYS_SB
);
628 m_listboxSorted
= new wxListBox( panel
, ID_LISTBOX_SORTED
,
629 wxPoint(10,90), wxSize(120,70),
630 5, choices
, wxLB_SORT
);
632 SetListboxClientData(wxT("listbox"), m_listbox
);
633 SetListboxClientData(wxT("listbox"), m_listboxSorted
);
635 m_listbox
->SetCursor(*wxCROSS_CURSOR
);
637 m_listbox
->SetToolTip( _T("This is a list box") );
638 #endif // wxUSE_TOOLTIPS
640 m_lbSelectNum
= new wxButton( panel
, ID_LISTBOX_SEL_NUM
, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) );
641 m_lbSelectThis
= new wxButton( panel
, ID_LISTBOX_SEL_STR
, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) );
642 (void)new wxButton( panel
, ID_LISTBOX_CLEAR
, _T("&Clear"), wxPoint(180,80), wxSize(140,30) );
643 (void)new MyButton( panel
, ID_LISTBOX_APPEND
, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) );
644 (void)new wxButton( panel
, ID_LISTBOX_DELETE
, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) );
645 wxButton
*button
= new MyButton( panel
, ID_LISTBOX_FONT
, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) );
647 button
->SetDefault();
649 button
->SetForegroundColour(*wxBLUE
);
652 button
->SetToolTip( _T("Press here to set italic font") );
653 #endif // wxUSE_TOOLTIPS
655 m_checkbox
= new wxCheckBox( panel
, ID_LISTBOX_ENABLE
, _T("&Disable"), wxPoint(20,170) );
656 m_checkbox
->SetValue(FALSE
);
658 m_checkbox
->SetToolTip( _T("Click here to disable the listbox") );
659 #endif // wxUSE_TOOLTIPS
660 (void)new wxCheckBox( panel
, ID_CHANGE_COLOUR
, _T("&Toggle colour"),
662 panel
->SetCursor(wxCursor(wxCURSOR_HAND
));
663 m_notebook
->AddPage(panel
, _T("wxListBox"), TRUE
, Image_List
);
666 panel
= new wxPanel(m_notebook
);
667 m_choice
= new wxChoice( panel
, ID_CHOICE
, wxPoint(10,10), wxSize(120,-1), 5, choices
);
668 m_choiceSorted
= new wxChoice( panel
, ID_CHOICE_SORTED
, wxPoint(10,70), wxSize(120,-1),
669 5, choices
, wxCB_SORT
);
671 SetChoiceClientData(wxT("choice"), m_choice
);
672 SetChoiceClientData(wxT("choice"), m_choiceSorted
);
674 m_choice
->SetSelection(2);
675 m_choice
->SetBackgroundColour( wxT("red") );
676 (void)new wxButton( panel
, ID_CHOICE_SEL_NUM
, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) );
677 (void)new wxButton( panel
, ID_CHOICE_SEL_STR
, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) );
678 (void)new wxButton( panel
, ID_CHOICE_CLEAR
, _T("&Clear"), wxPoint(180,80), wxSize(140,30) );
679 (void)new wxButton( panel
, ID_CHOICE_APPEND
, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) );
680 (void)new wxButton( panel
, ID_CHOICE_DELETE
, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) );
681 (void)new wxButton( panel
, ID_CHOICE_FONT
, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) );
682 (void)new wxCheckBox( panel
, ID_CHOICE_ENABLE
, _T("&Disable"), wxPoint(20,130), wxSize(140,30) );
684 m_notebook
->AddPage(panel
, _T("wxChoice"), FALSE
, Image_Choice
);
685 #endif // wxUSE_CHOICE
687 panel
= new wxPanel(m_notebook
);
688 (void)new wxStaticBox( panel
, -1, _T("&Box around combobox"),
689 wxPoint(5, 5), wxSize(150, 100));
690 m_combo
= new MyComboBox( panel
, ID_COMBO
, _T("This"),
691 wxPoint(20,25), wxSize(120, -1),
693 /* wxCB_READONLY | */ wxPROCESS_ENTER
);
695 (void)new wxButton( panel
, ID_COMBO_SEL_NUM
, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) );
696 (void)new wxButton( panel
, ID_COMBO_SEL_STR
, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) );
697 (void)new wxButton( panel
, ID_COMBO_CLEAR
, _T("&Clear"), wxPoint(180,80), wxSize(140,30) );
698 (void)new wxButton( panel
, ID_COMBO_APPEND
, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) );
699 (void)new wxButton( panel
, ID_COMBO_DELETE
, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) );
700 (void)new wxButton( panel
, ID_COMBO_FONT
, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) );
701 (void)new wxCheckBox( panel
, ID_COMBO_ENABLE
, _T("&Disable"), wxPoint(20,130), wxSize(140,30) );
702 m_notebook
->AddPage(panel
, _T("wxComboBox"), FALSE
, Image_Combo
);
704 wxString choices2
[] =
706 _T("First"), _T("Second"),
708 "Fourth", "Fifth", "Sixth",
709 "Seventh", "Eighth", "Nineth", "Tenth" */
712 panel
= new wxPanel(m_notebook
);
713 (void)new MyRadioBox( panel
, ID_RADIOBOX
, _T("&That"), wxPoint(10,160), wxSize(-1,-1), WXSIZEOF(choices2
), choices2
, 1, wxRA_SPECIFY_ROWS
);
714 m_radio
= new wxRadioBox( panel
, ID_RADIOBOX
, _T("T&his"), wxPoint(10,10), wxSize(-1,-1), WXSIZEOF(choices
), choices
, 1, wxRA_SPECIFY_COLS
);
715 m_radio
->SetForegroundColour(*wxRED
);
718 m_combo
->SetToolTip(_T("This is a natural\ncombobox - can you believe me?"));
719 m_radio
->SetToolTip(_T("Ever seen a radiobox?"));
720 #endif // wxUSE_TOOLTIPS
722 (void)new wxButton( panel
, ID_RADIOBOX_SEL_NUM
, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) );
723 (void)new wxButton( panel
, ID_RADIOBOX_SEL_STR
, _T("&Select 'This'"), wxPoint(180,80), wxSize(140,30) );
724 m_fontButton
= new wxButton( panel
, ID_SET_FONT
, _T("Set &more Italic font"), wxPoint(340,30), wxSize(140,30) );
725 (void)new wxButton( panel
, ID_RADIOBOX_FONT
, _T("Set &Italic font"), wxPoint(340,80), wxSize(140,30) );
726 (void)new wxCheckBox( panel
, ID_RADIOBOX_ENABLE
, _T("&Disable"), wxPoint(340,130), wxDefaultSize
);
727 wxRadioButton
*rb
= new wxRadioButton( panel
, ID_RADIOBUTTON_1
, _T("Radiobutton1"), wxPoint(210,170), wxDefaultSize
, wxRB_GROUP
);
728 rb
->SetValue( FALSE
);
729 (void)new wxRadioButton( panel
, ID_RADIOBUTTON_2
, _T("&Radiobutton2"), wxPoint(340,170), wxDefaultSize
);
730 m_notebook
->AddPage(panel
, _T("wxRadioBox"), FALSE
, Image_Radio
);
732 panel
= new wxPanel(m_notebook
);
733 (void)new wxStaticBox( panel
, -1, _T("&wxGauge and wxSlider"), wxPoint(10,10), wxSize(222,130) );
734 m_gauge
= new wxGauge( panel
, -1, 200, wxPoint(18,50), wxSize(155, 30), wxGA_HORIZONTAL
|wxNO_BORDER
);
735 m_gauge
->SetBackgroundColour(*wxGREEN
);
736 m_gauge
->SetForegroundColour(*wxRED
);
737 m_gaugeVert
= new wxGauge( panel
, -1, 100,
738 wxPoint(195,35), wxSize(30, 90),
739 wxGA_VERTICAL
| wxGA_SMOOTH
| wxNO_BORDER
);
740 m_slider
= new wxSlider( panel
, ID_SLIDER
, 0, 0, 200, wxPoint(18,90), wxSize(155,-1),
741 wxSL_AUTOTICKS
| wxSL_LABELS
);
742 m_slider
->SetTickFreq(40, 0);
744 m_slider
->SetToolTip(_T("This is a sliding slider"));
745 #endif // wxUSE_TOOLTIPS
747 (void)new wxStaticBox( panel
, -1, _T("&Explanation"),
748 wxPoint(230,10), wxSize(270,130),
752 // No wrapping text in wxStaticText yet :-(
753 (void)new wxStaticText( panel
, -1,
754 _T("Drag the slider!"),
759 (void)new wxStaticText( panel
, -1,
760 _T("In order see the gauge (aka progress bar)\n")
761 _T("control do something you have to drag the\n")
762 _T("handle of the slider to the right.\n")
764 _T("This is also supposed to demonstrate how\n")
765 _T("to use static controls.\n"),
770 int initialSpinValue
= -5;
772 s
<< initialSpinValue
;
773 m_spintext
= new wxTextCtrl( panel
, -1, s
, wxPoint(20,160), wxSize(80,-1) );
775 m_spinbutton
= new wxSpinButton( panel
, ID_SPIN
, wxPoint(103,160), wxSize(80, -1) );
776 m_spinbutton
->SetRange(-40,30);
777 m_spinbutton
->SetValue(initialSpinValue
);
779 m_btnProgress
= new wxButton( panel
, ID_BTNPROGRESS
, _T("&Show progress dialog"),
781 #endif // wxUSE_SPINBTN
784 m_spinctrl
= new wxSpinCtrl( panel
, ID_SPINCTRL
, _T(""), wxPoint(200, 160), wxSize(80, -1) );
785 m_spinctrl
->SetRange(10,30);
786 m_spinctrl
->SetValue(15);
787 #endif // wxUSE_SPINCTRL
789 m_notebook
->AddPage(panel
, _T("wxGauge"), FALSE
, Image_Gauge
);
791 panel
= new wxPanel(m_notebook
);
793 #if !defined(__WXMOTIF__) && !defined(__WIN16__) // wxStaticBitmap not working under Motif yet; and icons not allowed under WIN16.
794 wxIcon icon
= wxArtProvider::GetIcon(wxART_INFORMATION
);
795 (void) new wxStaticBitmap( panel
, -1, icon
, wxPoint(10, 10) );
797 // VZ: don't leak memory
798 // bmpStatic = new wxStaticBitmap(panel, -1, wxNullIcon, wxPoint(50, 10));
799 // bmpStatic->SetIcon(wxArtProvider::GetIcon(wxART_QUESTION));
802 wxBitmap
bitmap( 100, 100 );
804 dc
.SelectObject( bitmap
);
805 dc
.SetPen(*wxGREEN_PEN
);
807 dc
.DrawEllipse(5, 5, 90, 90);
808 dc
.DrawText(_T("Bitmap"), 30, 40);
809 dc
.SelectObject( wxNullBitmap
);
811 (void)new wxBitmapButton(panel
, ID_BITMAP_BTN
, bitmap
, wxPoint(100, 20));
814 // test for masked bitmap display
815 bitmap
= wxBitmap(_T("test2.bmp"), wxBITMAP_TYPE_BMP
);
818 bitmap
.SetMask(new wxMask(bitmap
, *wxBLUE
));
820 (void)new wxStaticBitmap
/* wxBitmapButton */ (panel
, -1, bitmap
, wxPoint(300, 120));
824 wxBitmap
bmp1(wxArtProvider::GetBitmap(wxART_INFORMATION
)),
825 bmp2(wxArtProvider::GetBitmap(wxART_WARNING
)),
826 bmp3(wxArtProvider::GetBitmap(wxART_QUESTION
));
827 wxBitmapButton
*bmpBtn
= new wxBitmapButton
834 bmpBtn
->SetBitmapSelected(bmp2
);
835 bmpBtn
->SetBitmapFocus(bmp3
);
838 (void)new wxToggleButton(panel
, ID_BUTTON_LABEL
,
839 _T("&Toggle label"), wxPoint(250, 20));
840 #endif // wxUSE_TOGGLEBTN
842 m_label
= new wxStaticText(panel
, -1, _T("Label with some long text"),
843 wxPoint(250, 60), wxDefaultSize
,
844 wxALIGN_RIGHT
/*| wxST_NO_AUTORESIZE*/);
845 m_label
->SetForegroundColour( *wxBLUE
);
847 m_notebook
->AddPage(panel
, _T("wxBitmapXXX"));
849 // layout constraints
850 #if wxUSE_CONSTRAINTS
851 wxLayoutConstraints
*c
;
853 panel
= new wxPanel(m_notebook
);
854 panel
->SetAutoLayout( TRUE
);
856 c
= new wxLayoutConstraints
;
857 c
->top
.SameAs( panel
, wxTop
, 10 );
859 c
->left
.SameAs( panel
, wxLeft
, 10 );
860 c
->width
.PercentOf( panel
, wxWidth
, 40 );
862 wxButton
*pMyButton
= new wxButton(panel
, ID_BUTTON_TEST1
, _T("Test Button &1") );
863 pMyButton
->SetConstraints( c
);
865 c
= new wxLayoutConstraints
;
866 c
->top
.SameAs( panel
, wxTop
, 10 );
867 c
->bottom
.SameAs( panel
, wxBottom
, 10 );
868 c
->right
.SameAs( panel
, wxRight
, 10 );
869 c
->width
.PercentOf( panel
, wxWidth
, 40 );
871 wxButton
*pMyButton2
= new wxButton(panel
, ID_BUTTON_TEST2
, _T("Test Button &2") );
872 pMyButton2
->SetConstraints( c
);
874 m_notebook
->AddPage(panel
, _T("wxLayoutConstraint"));
879 panel
= new wxPanel(m_notebook
);
880 panel
->SetAutoLayout( TRUE
);
882 wxBoxSizer
*sizer
= new wxBoxSizer( wxVERTICAL
);
884 wxStaticBoxSizer
*csizer
=
885 new wxStaticBoxSizer (new wxStaticBox (panel
, -1, _T("Show Buttons")),
888 wxCheckBox
*check1
, *check2
, *check3
, *check4
, *check14
, *checkBig
;
889 check1
= new wxCheckBox (panel
, ID_SIZER_CHECK1
, _T("1"));
890 check1
->SetValue (TRUE
);
891 csizer
->Add (check1
);
892 check2
= new wxCheckBox (panel
, ID_SIZER_CHECK2
, _T("2"));
893 check2
->SetValue (TRUE
);
894 csizer
->Add (check2
);
895 check3
= new wxCheckBox (panel
, ID_SIZER_CHECK3
, _T("3"));
896 check3
->SetValue (TRUE
);
897 csizer
->Add (check3
);
898 check4
= new wxCheckBox (panel
, ID_SIZER_CHECK4
, _T("4"));
899 check4
->SetValue (TRUE
);
900 csizer
->Add (check4
);
901 check14
= new wxCheckBox (panel
, ID_SIZER_CHECK14
, _T("1-4"));
902 check14
->SetValue (TRUE
);
903 csizer
->Add (check14
);
904 checkBig
= new wxCheckBox (panel
, ID_SIZER_CHECKBIG
, _T("Big"));
905 checkBig
->SetValue (TRUE
);
906 csizer
->Add (checkBig
);
910 m_hsizer
= new wxBoxSizer( wxHORIZONTAL
);
912 m_buttonSizer
= new wxBoxSizer (wxVERTICAL
);
914 m_sizerBtn1
= new wxButton(panel
, -1, _T("Test Button &1") );
915 m_buttonSizer
->Add( m_sizerBtn1
, 0, wxALL
, 10 );
916 m_sizerBtn2
= new wxButton(panel
, -1, _T("Test Button &2") );
917 m_buttonSizer
->Add( m_sizerBtn2
, 0, wxALL
, 10 );
918 m_sizerBtn3
= new wxButton(panel
, -1, _T("Test Button &3") );
919 m_buttonSizer
->Add( m_sizerBtn3
, 0, wxALL
, 10 );
920 m_sizerBtn4
= new wxButton(panel
, -1, _T("Test Button &4") );
921 m_buttonSizer
->Add( m_sizerBtn4
, 0, wxALL
, 10 );
923 m_hsizer
->Add (m_buttonSizer
);
924 m_hsizer
->Add( 20,20, 1 );
925 m_bigBtn
= new wxButton(panel
, -1, _T("Multiline\nbutton") );
926 m_hsizer
->Add( m_bigBtn
, 3, wxGROW
|wxALL
, 10 );
928 sizer
->Add (m_hsizer
, 1, wxGROW
);
930 panel
->SetSizer( sizer
);
932 m_notebook
->AddPage(panel
, _T("wxSizer"));
935 void MyPanel::OnSize( wxSizeEvent
& WXUNUSED(event
) )
939 GetClientSize( &x
, &y
);
941 if (m_notebook
) m_notebook
->SetSize( 2, 2, x
-4, y
*2/3-4 );
942 if (m_text
) m_text
->SetSize( 2, y
*2/3+2, x
-4, y
/3-4 );
945 void MyPanel::OnPageChanging( wxNotebookEvent
&event
)
947 int selOld
= event
.GetOldSelection();
950 if ( wxMessageBox(_T("This demonstrates how a program may prevent the\n")
951 _T("page change from taking place - if you select\n")
952 _T("[No] the current page will stay the third one\n"),
953 _T("Control sample"),
954 wxICON_QUESTION
| wxYES_NO
, this) != wxYES
)
962 *m_text
<< _T("Notebook selection is being changed from ") << selOld
963 << _T(" to ") << event
.GetSelection()
964 << _T(" (current page from notebook is ")
965 << m_notebook
->GetSelection() << _T(")\n");
968 void MyPanel::OnPageChanged( wxNotebookEvent
&event
)
970 *m_text
<< _T("Notebook selection is now ") << event
.GetSelection()
971 << _T(" (from notebook: ") << m_notebook
->GetSelection()
975 void MyPanel::OnTestButton(wxCommandEvent
& event
)
977 wxLogMessage(_T("Button %c clicked."),
978 event
.GetId() == ID_BUTTON_TEST1
? _T('1') : _T('2'));
981 void MyPanel::OnBmpButton(wxCommandEvent
& event
)
983 wxLogMessage(_T("Bitmap button clicked."));
986 void MyPanel::OnChangeColour(wxCommandEvent
& WXUNUSED(event
))
988 static wxColour s_colOld
;
990 // test panel colour changing and propagation to the subcontrols
993 SetBackgroundColour(s_colOld
);
994 s_colOld
= wxNullColour
;
996 m_lbSelectThis
->SetForegroundColour(wxT("red"));
997 m_lbSelectThis
->SetBackgroundColour(wxT("white"));
1001 s_colOld
= wxColour(wxT("red"));
1002 SetBackgroundColour(wxT("white"));
1004 m_lbSelectThis
->SetForegroundColour(wxT("white"));
1005 m_lbSelectThis
->SetBackgroundColour(wxT("red"));
1008 m_lbSelectThis
->Refresh();
1012 void MyPanel::OnListBox( wxCommandEvent
&event
)
1014 // GetParent()->Move(100, 100);
1016 if (event
.GetInt() == -1)
1018 m_text
->AppendText( _T("ListBox has no selections anymore\n") );
1022 wxListBox
*listbox
= event
.GetId() == ID_LISTBOX
? m_listbox
1025 m_text
->AppendText( _T("ListBox event selection string is: '") );
1026 m_text
->AppendText( event
.GetString() );
1027 m_text
->AppendText( _T("'\n") );
1028 m_text
->AppendText( _T("ListBox control selection string is: '") );
1029 m_text
->AppendText( listbox
->GetStringSelection() );
1030 m_text
->AppendText( _T("'\n") );
1032 wxStringClientData
*obj
= ((wxStringClientData
*)event
.GetClientObject());
1033 m_text
->AppendText( _T("ListBox event client data string is: '") );
1034 if (obj
) // BC++ doesn't like use of '? .. : .. ' in this context
1035 m_text
->AppendText( obj
->GetData() );
1037 m_text
->AppendText( wxString(_T("none")) );
1039 m_text
->AppendText( _T("'\n") );
1040 m_text
->AppendText( _T("ListBox control client data string is: '") );
1041 obj
= (wxStringClientData
*)listbox
->GetClientObject(listbox
->GetSelection());
1043 m_text
->AppendText( obj
->GetData() );
1045 m_text
->AppendText( wxString(_T("none")) );
1046 m_text
->AppendText( _T("'\n") );
1049 void MyPanel::OnListBoxDoubleClick( wxCommandEvent
&event
)
1051 m_text
->AppendText( _T("ListBox double click string is: ") );
1052 m_text
->AppendText( event
.GetString() );
1053 m_text
->AppendText( _T("\n") );
1056 void MyPanel::OnListBoxButtons( wxCommandEvent
&event
)
1058 switch (event
.GetId())
1060 case ID_LISTBOX_ENABLE
:
1062 m_text
->AppendText(_T("Checkbox clicked.\n"));
1064 wxCheckBox
*cb
= (wxCheckBox
*)event
.GetEventObject();
1066 cb
->SetToolTip( _T("Click to enable listbox") );
1068 cb
->SetToolTip( _T("Click to disable listbox") );
1069 #endif // wxUSE_TOOLTIPS
1070 m_listbox
->Enable( event
.GetInt() == 0 );
1071 m_lbSelectThis
->Enable( event
.GetInt() == 0 );
1072 m_lbSelectNum
->Enable( event
.GetInt() == 0 );
1073 m_listboxSorted
->Enable( event
.GetInt() == 0 );
1074 FindWindow(ID_CHANGE_COLOUR
)->Enable( event
.GetInt() == 0 );
1077 case ID_LISTBOX_SEL_NUM
:
1079 m_listbox
->SetSelection( 2 );
1080 m_listboxSorted
->SetSelection( 2 );
1081 m_lbSelectThis
->WarpPointer( 40, 14 );
1084 case ID_LISTBOX_SEL_STR
:
1086 m_listbox
->SetStringSelection( _T("This") );
1087 m_listboxSorted
->SetStringSelection( _T("This") );
1088 m_lbSelectNum
->WarpPointer( 40, 14 );
1091 case ID_LISTBOX_CLEAR
:
1094 m_listboxSorted
->Clear();
1097 case ID_LISTBOX_APPEND
:
1099 m_listbox
->Append( _T("Hi!") );
1100 m_listboxSorted
->Append( _T("Hi!") );
1103 case ID_LISTBOX_DELETE
:
1106 idx
= m_listbox
->GetSelection();
1107 if ( idx
!= wxNOT_FOUND
)
1108 m_listbox
->Delete( idx
);
1109 idx
= m_listboxSorted
->GetSelection();
1110 if ( idx
!= wxNOT_FOUND
)
1111 m_listboxSorted
->Delete( idx
);
1114 case ID_LISTBOX_FONT
:
1116 m_listbox
->SetFont( *wxITALIC_FONT
);
1117 m_listboxSorted
->SetFont( *wxITALIC_FONT
);
1118 m_checkbox
->SetFont( *wxITALIC_FONT
);
1125 void MyPanel::OnChoice( wxCommandEvent
&event
)
1127 wxChoice
*choice
= event
.GetId() == ID_CHOICE
? m_choice
1130 m_text
->AppendText( _T("Choice event selection string is: '") );
1131 m_text
->AppendText( event
.GetString() );
1132 m_text
->AppendText( _T("'\n") );
1133 m_text
->AppendText( _T("Choice control selection string is: '") );
1134 m_text
->AppendText( choice
->GetStringSelection() );
1135 m_text
->AppendText( _T("'\n") );
1137 wxStringClientData
*obj
= ((wxStringClientData
*)event
.GetClientObject());
1138 m_text
->AppendText( _T("Choice event client data string is: '") );
1141 m_text
->AppendText( obj
->GetData() );
1143 m_text
->AppendText( wxString(_T("none")) );
1145 m_text
->AppendText( _T("'\n") );
1146 m_text
->AppendText( _T("Choice control client data string is: '") );
1147 obj
= (wxStringClientData
*)choice
->GetClientObject(choice
->GetSelection());
1150 m_text
->AppendText( obj
->GetData() );
1152 m_text
->AppendText( wxString(_T("none")) );
1153 m_text
->AppendText( _T("'\n") );
1156 void MyPanel::OnChoiceButtons( wxCommandEvent
&event
)
1158 switch (event
.GetId())
1160 case ID_CHOICE_ENABLE
:
1162 m_choice
->Enable( event
.GetInt() == 0 );
1163 m_choiceSorted
->Enable( event
.GetInt() == 0 );
1166 case ID_CHOICE_SEL_NUM
:
1168 m_choice
->SetSelection( 2 );
1169 m_choiceSorted
->SetSelection( 2 );
1172 case ID_CHOICE_SEL_STR
:
1174 m_choice
->SetStringSelection( _T("This") );
1175 m_choiceSorted
->SetStringSelection( _T("This") );
1178 case ID_CHOICE_CLEAR
:
1181 m_choiceSorted
->Clear();
1184 case ID_CHOICE_APPEND
:
1186 m_choice
->Append( _T("Hi!") );
1187 m_choiceSorted
->Append( _T("Hi!") );
1190 case ID_CHOICE_DELETE
:
1192 int idx
= m_choice
->GetSelection();
1193 if ( idx
!= wxNOT_FOUND
)
1194 m_choice
->Delete( idx
);
1195 idx
= m_choiceSorted
->GetSelection();
1196 if ( idx
!= wxNOT_FOUND
)
1197 m_choiceSorted
->Delete( idx
);
1200 case ID_CHOICE_FONT
:
1202 m_choice
->SetFont( *wxITALIC_FONT
);
1203 m_choiceSorted
->SetFont( *wxITALIC_FONT
);
1208 #endif // wxUSE_CHOICE
1210 void MyPanel::OnCombo( wxCommandEvent
&event
)
1212 m_text
->AppendText( _T("ComboBox event selection string is: ") );
1213 m_text
->AppendText( event
.GetString() );
1214 m_text
->AppendText( _T("\n") );
1215 m_text
->AppendText( _T("ComboBox control selection string is: ") );
1216 m_text
->AppendText( m_combo
->GetStringSelection() );
1217 m_text
->AppendText( _T("\n") );
1220 void MyPanel::OnComboTextChanged(wxCommandEvent
& event
)
1223 str
.Printf( wxT("Text in the combobox changed: now is '%s'."),
1224 event
.GetString().c_str() );
1225 wxLogMessage( str
.c_str() );
1228 void MyPanel::OnComboTextEnter(wxCommandEvent
& WXUNUSED(event
))
1230 wxLogMessage(_T("Enter pressed in the combobox: value is '%s'."),
1231 m_combo
->GetValue().c_str());
1234 void MyPanel::OnComboButtons( wxCommandEvent
&event
)
1236 switch (event
.GetId())
1238 case ID_COMBO_ENABLE
:
1240 m_combo
->Enable( event
.GetInt() == 0 );
1243 case ID_COMBO_SEL_NUM
:
1245 m_combo
->SetSelection( 2 );
1248 case ID_COMBO_SEL_STR
:
1250 m_combo
->SetStringSelection( _T("This") );
1253 case ID_COMBO_CLEAR
:
1258 case ID_COMBO_APPEND
:
1260 m_combo
->Append( _T("Hi!") );
1263 case ID_COMBO_DELETE
:
1265 int idx
= m_combo
->GetSelection();
1266 m_combo
->Delete( idx
);
1271 m_combo
->SetFont( *wxITALIC_FONT
);
1277 void MyPanel::OnRadio( wxCommandEvent
&event
)
1279 m_text
->AppendText( _T("RadioBox selection string is: ") );
1280 m_text
->AppendText( event
.GetString() );
1281 m_text
->AppendText( _T("\n") );
1284 void MyPanel::OnRadioButtons( wxCommandEvent
&event
)
1286 switch (event
.GetId())
1288 case ID_RADIOBOX_ENABLE
:
1290 m_radio
->Enable( event
.GetInt() == 0 );
1293 case ID_RADIOBOX_SEL_NUM
:
1295 m_radio
->SetSelection( 2 );
1298 case ID_RADIOBOX_SEL_STR
:
1300 m_radio
->SetStringSelection( _T("This") );
1303 case ID_RADIOBOX_FONT
:
1305 m_radio
->SetForegroundColour(*wxGREEN
);
1307 m_radio
->SetFont( *wxITALIC_FONT
);
1313 void MyPanel::OnSetFont( wxCommandEvent
&WXUNUSED(event
) )
1315 m_fontButton
->SetFont( *wxITALIC_FONT
);
1316 m_text
->SetFont( *wxITALIC_FONT
);
1319 void MyPanel::OnUpdateLabel( wxCommandEvent
&event
)
1321 m_label
->SetLabel(event
.GetInt() ? _T("Very very very very very long text.")
1322 : _T("Shorter text."));
1325 void MyPanel::OnSliderUpdate( wxCommandEvent
&WXUNUSED(event
) )
1327 m_gauge
->SetValue( m_slider
->GetValue() );
1328 m_gaugeVert
->SetValue( m_slider
->GetValue() / 2 );
1333 void MyPanel::OnSpinCtrlText(wxCommandEvent
& event
)
1338 s
.Printf( _T("Spin ctrl text changed: now %d (from event: %s)\n"),
1339 m_spinctrl
->GetValue(), event
.GetString().c_str() );
1340 m_text
->AppendText(s
);
1344 void MyPanel::OnSpinCtrl(wxSpinEvent
& event
)
1349 s
.Printf( _T("Spin ctrl changed: now %d (from event: %ld)\n"),
1350 m_spinctrl
->GetValue(), event
.GetInt() );
1351 m_text
->AppendText(s
);
1355 void MyPanel::OnSpinCtrlUp(wxSpinEvent
& event
)
1359 m_text
->AppendText( wxString::Format(
1360 _T("Spin up: %d (from event: %ld)\n"),
1361 m_spinctrl
->GetValue(), event
.GetInt() ) );
1365 void MyPanel::OnSpinCtrlDown(wxSpinEvent
& event
)
1369 m_text
->AppendText( wxString::Format(
1370 _T("Spin down: %d (from event: %ld)\n"),
1371 m_spinctrl
->GetValue(), event
.GetInt() ) );
1375 #endif // wxUSE_SPINCTRL
1378 void MyPanel::OnSpinUp( wxSpinEvent
&event
)
1381 value
.Printf( _T("Spin control up: current = %d\n"),
1382 m_spinbutton
->GetValue());
1384 if ( event
.GetPosition() > 17 )
1386 value
+= _T("Preventing the spin button from going above 17.\n");
1391 m_text
->AppendText(value
);
1394 void MyPanel::OnSpinDown( wxSpinEvent
&event
)
1397 value
.Printf( _T("Spin control down: current = %d\n"),
1398 m_spinbutton
->GetValue());
1400 if ( event
.GetPosition() < -17 )
1402 value
+= _T("Preventing the spin button from going below -17.\n");
1407 m_text
->AppendText(value
);
1410 void MyPanel::OnSpinUpdate( wxSpinEvent
&event
)
1413 value
.Printf( _T("%d"), event
.GetPosition() );
1414 m_spintext
->SetValue( value
);
1416 value
.Printf( _T("Spin control range: (%d, %d), current = %d\n"),
1417 m_spinbutton
->GetMin(), m_spinbutton
->GetMax(),
1418 m_spinbutton
->GetValue());
1420 m_text
->AppendText(value
);
1423 void MyPanel::OnUpdateShowProgress( wxUpdateUIEvent
& event
)
1425 event
.Enable( m_spinbutton
->GetValue() > 0 );
1428 void MyPanel::OnShowProgress( wxCommandEvent
& WXUNUSED(event
) )
1430 int max
= m_spinbutton
->GetValue();
1434 wxLogError(_T("You must set positive range!"));
1438 wxProgressDialog
dialog(_T("Progress dialog example"),
1439 _T("An informative message"),
1446 wxPD_ESTIMATED_TIME
|
1447 wxPD_REMAINING_TIME
);
1451 for ( int i
= 0; i
<= max
&& cont
; i
++ )
1456 cont
= dialog
.Update(i
, _T("That's all, folks!"));
1458 else if ( i
== max
/ 2 )
1460 cont
= dialog
.Update(i
, _T("Only a half left (very long message)!"));
1464 cont
= dialog
.Update(i
);
1470 *m_text
<< _T("Progress dialog aborted!\n");
1474 *m_text
<< _T("Countdown from ") << max
<< _T(" finished.\n");
1478 #endif // wxUSE_SPINBTN
1480 void MyPanel::OnSizerCheck( wxCommandEvent
&event
)
1482 switch (event
.GetId ()) {
1483 case ID_SIZER_CHECK1
:
1484 m_buttonSizer
->Show (m_sizerBtn1
, event
.IsChecked ());
1485 m_buttonSizer
->Layout ();
1487 case ID_SIZER_CHECK2
:
1488 m_buttonSizer
->Show (m_sizerBtn2
, event
.IsChecked ());
1489 m_buttonSizer
->Layout ();
1491 case ID_SIZER_CHECK3
:
1492 m_buttonSizer
->Show (m_sizerBtn3
, event
.IsChecked ());
1493 m_buttonSizer
->Layout ();
1495 case ID_SIZER_CHECK4
:
1496 m_buttonSizer
->Show (m_sizerBtn4
, event
.IsChecked ());
1497 m_buttonSizer
->Layout ();
1499 case ID_SIZER_CHECK14
:
1500 m_hsizer
->Show (m_buttonSizer
, event
.IsChecked ());
1501 m_hsizer
->Layout ();
1503 case ID_SIZER_CHECKBIG
:
1504 m_hsizer
->Show (m_bigBtn
, event
.IsChecked ());
1505 m_hsizer
->Layout ();
1513 //wxLog::RemoveTraceMask(_T("focus"));
1514 delete wxLog::SetActiveTarget(m_logTargetOld
);
1516 delete m_notebook
->GetImageList();
1519 //----------------------------------------------------------------------
1521 //----------------------------------------------------------------------
1523 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
1524 EVT_MENU(CONTROLS_QUIT
, MyFrame::OnQuit
)
1525 EVT_MENU(CONTROLS_ABOUT
, MyFrame::OnAbout
)
1526 EVT_MENU(CONTROLS_CLEAR_LOG
, MyFrame::OnClearLog
)
1528 EVT_MENU(CONTROLS_SET_TOOLTIP_DELAY
, MyFrame::OnSetTooltipDelay
)
1529 EVT_MENU(CONTROLS_ENABLE_TOOLTIPS
, MyFrame::OnToggleTooltips
)
1530 #endif // wxUSE_TOOLTIPS
1532 EVT_MENU(CONTROLS_ENABLE_ALL
, MyFrame::OnEnableAll
)
1534 EVT_SIZE(MyFrame::OnSize
)
1535 EVT_MOVE(MyFrame::OnMove
)
1537 EVT_IDLE(MyFrame::OnIdle
)
1540 MyFrame::MyFrame(const wxChar
*title
, int x
, int y
)
1541 : wxFrame(NULL
, -1, title
, wxPoint(x
, y
), wxSize(500, 430))
1544 // The wxICON() macros loads an icon from a resource under Windows
1545 // and uses an #included XPM image under GTK+ and Motif
1547 SetIcon( wxICON(mondrian
) );
1549 wxMenu
*file_menu
= new wxMenu
;
1551 file_menu
->Append(CONTROLS_CLEAR_LOG
, _T("&Clear log\tCtrl-L"));
1552 file_menu
->AppendSeparator();
1553 file_menu
->Append(CONTROLS_ABOUT
, _T("&About\tF1"));
1554 file_menu
->AppendSeparator();
1555 file_menu
->Append(CONTROLS_QUIT
, _T("E&xit\tAlt-X"), _T("Quit controls sample"));
1557 wxMenuBar
*menu_bar
= new wxMenuBar
;
1558 menu_bar
->Append(file_menu
, _T("&File"));
1561 wxMenu
*tooltip_menu
= new wxMenu
;
1562 tooltip_menu
->Append(CONTROLS_SET_TOOLTIP_DELAY
, _T("Set &delay\tCtrl-D"));
1563 tooltip_menu
->AppendSeparator();
1564 tooltip_menu
->Append(CONTROLS_ENABLE_TOOLTIPS
, _T("&Toggle tooltips\tCtrl-T"),
1565 _T("enable/disable tooltips"), TRUE
);
1566 tooltip_menu
->Check(CONTROLS_ENABLE_TOOLTIPS
, TRUE
);
1567 menu_bar
->Append(tooltip_menu
, _T("&Tooltips"));
1568 #endif // wxUSE_TOOLTIPS
1570 wxMenu
*panel_menu
= new wxMenu
;
1571 panel_menu
->Append(CONTROLS_ENABLE_ALL
, _T("&Disable all\tCtrl-E"),
1572 _T("Enable/disable all panel controls"), TRUE
);
1573 menu_bar
->Append(panel_menu
, _T("&Panel"));
1575 SetMenuBar(menu_bar
);
1579 m_panel
= new MyPanel( this, 10, 10, 300, 100 );
1581 SetSizeHints( 500, 425 );
1584 void MyFrame::OnQuit (wxCommandEvent
& WXUNUSED(event
) )
1589 void MyFrame::OnAbout( wxCommandEvent
& WXUNUSED(event
) )
1593 wxMessageDialog
dialog(this, _T("This is a control sample"), _T("About Controls"), wxOK
);
1597 void MyFrame::OnClearLog(wxCommandEvent
& WXUNUSED(event
))
1599 m_panel
->m_text
->Clear();
1603 void MyFrame::OnSetTooltipDelay(wxCommandEvent
& event
)
1605 static long s_delay
= 5000;
1608 delay
.Printf( _T("%ld"), s_delay
);
1610 delay
= wxGetTextFromUser(_T("Enter delay (in milliseconds)"),
1611 _T("Set tooltip delay"),
1615 return; // cancelled
1617 wxSscanf(delay
, _T("%ld"), &s_delay
);
1619 wxToolTip::SetDelay(s_delay
);
1621 wxLogStatus(this, _T("Tooltip delay set to %ld milliseconds"), s_delay
);
1624 void MyFrame::OnToggleTooltips(wxCommandEvent
& event
)
1626 static bool s_enabled
= TRUE
;
1628 s_enabled
= !s_enabled
;
1630 wxToolTip::Enable(s_enabled
);
1632 wxLogStatus(this, _T("Tooltips %sabled"), s_enabled
? _T("en") : _T("dis") );
1636 void MyFrame::OnEnableAll(wxCommandEvent
& WXUNUSED(event
))
1638 static bool s_enable
= TRUE
;
1640 s_enable
= !s_enable
;
1641 m_panel
->Enable(s_enable
);
1644 void MyFrame::OnMove( wxMoveEvent
& event
)
1646 UpdateStatusBar(event
.GetPosition(), GetSize());
1651 void MyFrame::OnSize( wxSizeEvent
& event
)
1653 UpdateStatusBar(GetPosition(), event
.GetSize());
1658 void MyFrame::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
1660 // track the window which has the focus in the status bar
1661 static wxWindow
*s_windowFocus
= (wxWindow
*)NULL
;
1662 wxWindow
*focus
= wxWindow::FindFocus();
1663 if ( focus
&& (focus
!= s_windowFocus
) )
1665 s_windowFocus
= focus
;
1670 _T("Focus: %s, HWND = %08x"),
1674 s_windowFocus
->GetClassInfo()->GetClassName()
1676 , (unsigned int) s_windowFocus
->GetHWND()
1684 void MyComboBox::OnChar(wxKeyEvent
& event
)
1686 wxLogMessage(_T("MyComboBox::OnChar"));
1688 if ( event
.KeyCode() == 'w' )
1689 wxLogMessage(_T("MyComboBox: 'w' will be ignored."));
1694 void MyComboBox::OnKeyDown(wxKeyEvent
& event
)
1696 wxLogMessage(_T("MyComboBox::OnKeyDown"));
1698 if ( event
.KeyCode() == 'w' )
1699 wxLogMessage(_T("MyComboBox: 'w' will be ignored."));
1704 void MyComboBox::OnKeyUp(wxKeyEvent
& event
)
1706 wxLogMessage(_T("MyComboBox::OnKeyUp"));
1711 static void SetListboxClientData(const wxChar
*name
, wxListBox
*control
)
1713 size_t count
= control
->GetCount();
1714 for ( size_t n
= 0; n
< count
; n
++ )
1717 s
.Printf(wxT("%s client data for '%s'"),
1718 name
, control
->GetString(n
).c_str());
1720 control
->SetClientObject(n
, new wxStringClientData(s
));
1726 static void SetChoiceClientData(const wxChar
*name
, wxChoice
*control
)
1728 size_t count
= control
->GetCount();
1729 for ( size_t n
= 0; n
< count
; n
++ )
1732 s
.Printf(wxT("%s client data for '%s'"),
1733 name
, control
->GetString(n
).c_str());
1735 control
->SetClientObject(n
, new wxStringClientData(s
));
1739 #endif // wxUSE_CHOICE