]>
Commit | Line | Data |
---|---|---|
1c005ff7 | 1 | ///////////////////////////////////////////////////////////////////////////// |
dfad0599 | 2 | // Name: controls.cpp |
be5a51fb | 3 | // Purpose: Controls wxWidgets sample |
1c005ff7 RR |
4 | // Author: Robert Roebling |
5 | // Modified by: | |
6 | // RCS-ID: $Id$ | |
c67d8618 | 7 | // Copyright: (c) Robert Roebling, Julian Smart |
655822f3 | 8 | // Licence: wxWindows license |
1c005ff7 RR |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
1c005ff7 RR |
11 | // For compilers that support precompilation, includes "wx/wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
9f3362c4 | 15 | #pragma hdrstop |
1c005ff7 RR |
16 | #endif |
17 | ||
18 | #ifndef WX_PRECOMP | |
9f3362c4 | 19 | #include "wx/wx.h" |
1c005ff7 RR |
20 | #endif |
21 | ||
4fabb575 | 22 | #include "wx/spinbutt.h" |
1db8dc4a | 23 | #include "wx/tglbtn.h" |
61c083e7 | 24 | #include "wx/bookctrl.h" |
2cb21a45 | 25 | #include "wx/imaglist.h" |
389d906b | 26 | #include "wx/artprov.h" |
b8653fbf VZ |
27 | |
28 | #if wxUSE_TOOLTIPS | |
29 | #include "wx/tooltip.h" | |
30 | #endif | |
1c005ff7 | 31 | |
a5e635be | 32 | #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__) |
73c700fd | 33 | #define USE_XPM |
4fabb575 JS |
34 | #endif |
35 | ||
36 | #ifdef USE_XPM | |
73c700fd VZ |
37 | #include "mondrian.xpm" |
38 | #include "icons/choice.xpm" | |
39 | #include "icons/combo.xpm" | |
40 | #include "icons/list.xpm" | |
41 | #include "icons/radio.xpm" | |
42 | #include "icons/text.xpm" | |
43 | #include "icons/gauge.xpm" | |
47908e25 RR |
44 | #endif |
45 | ||
3a5bcc4d | 46 | #ifndef wxUSE_SPINBTN |
ad556aa9 | 47 | #define wxUSE_SPINBTN 1 |
3a5bcc4d | 48 | #endif |
9726da4f VZ |
49 | |
50 | #include "wx/progdlg.h" | |
51 | ||
b782f2e0 VZ |
52 | #if wxUSE_SPINCTRL |
53 | #include "wx/spinctrl.h" | |
54 | #endif // wxUSE_SPINCTRL | |
55 | ||
bebc503c VZ |
56 | #if !wxUSE_TOGGLEBTN |
57 | #define wxToggleButton wxCheckBox | |
58 | #define EVT_TOGGLEBUTTON EVT_CHECKBOX | |
59 | #endif | |
60 | ||
1c005ff7 RR |
61 | //---------------------------------------------------------------------- |
62 | // class definitions | |
63 | //---------------------------------------------------------------------- | |
64 | ||
65 | class MyApp: public wxApp | |
655822f3 | 66 | { |
b8653fbf VZ |
67 | public: |
68 | bool OnInit(); | |
1c005ff7 RR |
69 | }; |
70 | ||
71 | class MyPanel: public wxPanel | |
72 | { | |
b8653fbf | 73 | public: |
1c005ff7 | 74 | MyPanel(wxFrame *frame, int x, int y, int w, int h); |
2cb21a45 | 75 | virtual ~MyPanel(); |
16f6dfd8 | 76 | |
f226be17 | 77 | void OnIdle( wxIdleEvent &event ); |
1c005ff7 | 78 | void OnListBox( wxCommandEvent &event ); |
5b077d48 | 79 | void OnListBoxDoubleClick( wxCommandEvent &event ); |
1c005ff7 | 80 | void OnListBoxButtons( wxCommandEvent &event ); |
1ccd23f5 | 81 | #if wxUSE_CHOICE |
47908e25 RR |
82 | void OnChoice( wxCommandEvent &event ); |
83 | void OnChoiceButtons( wxCommandEvent &event ); | |
1ccd23f5 | 84 | #endif |
47908e25 | 85 | void OnCombo( wxCommandEvent &event ); |
f6bcfd97 BP |
86 | void OnComboTextChanged( wxCommandEvent &event ); |
87 | void OnComboTextEnter( wxCommandEvent &event ); | |
47908e25 RR |
88 | void OnComboButtons( wxCommandEvent &event ); |
89 | void OnRadio( wxCommandEvent &event ); | |
90 | void OnRadioButtons( wxCommandEvent &event ); | |
a48b9bfb VZ |
91 | void OnRadioButton1( wxCommandEvent &event ); |
92 | void OnRadioButton2( wxCommandEvent &event ); | |
868a2826 | 93 | void OnSetFont( wxCommandEvent &event ); |
61c083e7 WS |
94 | void OnPageChanged( wxBookCtrlEvent &event ); |
95 | void OnPageChanging( wxBookCtrlEvent &event ); | |
7bce6aec | 96 | void OnSliderUpdate( wxCommandEvent &event ); |
185fa6bf | 97 | void OnUpdateLabel( wxCommandEvent &event ); |
0e528b99 | 98 | #if wxUSE_SPINBTN |
8c3c31d4 VZ |
99 | void OnSpinUp( wxSpinEvent &event ); |
100 | void OnSpinDown( wxSpinEvent &event ); | |
e380f72b | 101 | void OnSpinUpdate( wxSpinEvent &event ); |
516ab399 | 102 | #if wxUSE_PROGRESSDLG |
9726da4f VZ |
103 | void OnUpdateShowProgress( wxUpdateUIEvent& event ); |
104 | void OnShowProgress( wxCommandEvent &event ); | |
516ab399 | 105 | #endif // wxUSE_PROGRESSDLG |
0e528b99 | 106 | #endif // wxUSE_SPINBTN |
1dd815f3 | 107 | void OnNewText( wxCommandEvent &event ); |
baccb514 | 108 | #if wxUSE_SPINCTRL |
457e6c54 | 109 | void OnSpinCtrl(wxSpinEvent& event); |
76106901 VZ |
110 | void OnSpinCtrlUp(wxSpinEvent& event); |
111 | void OnSpinCtrlDown(wxSpinEvent& event); | |
112 | void OnSpinCtrlText(wxCommandEvent& event); | |
baccb514 VZ |
113 | #endif // wxUSE_SPINCTRL |
114 | ||
87a1e308 VZ |
115 | void OnEnableAll(wxCommandEvent& event); |
116 | void OnChangeColour(wxCommandEvent& event); | |
3e2dd3db | 117 | void OnTestButton(wxCommandEvent& event); |
9121bed2 | 118 | void OnBmpButton(wxCommandEvent& event); |
bebc503c | 119 | void OnBmpButtonToggle(wxCommandEvent& event); |
87a1e308 | 120 | |
2b5f62a0 VZ |
121 | void OnSizerCheck (wxCommandEvent &event); |
122 | ||
6c8a980f VZ |
123 | wxListBox *m_listbox, |
124 | *m_listboxSorted; | |
1ccd23f5 | 125 | #if wxUSE_CHOICE |
b56c2246 VZ |
126 | wxChoice *m_choice, |
127 | *m_choiceSorted; | |
2b5f62a0 VZ |
128 | #endif // wxUSE_CHOICE |
129 | ||
e380f72b RR |
130 | wxComboBox *m_combo; |
131 | wxRadioBox *m_radio; | |
516ab399 | 132 | #if wxUSE_GAUGE |
37ed3ae3 VZ |
133 | wxGauge *m_gauge, |
134 | *m_gaugeVert; | |
516ab399 | 135 | #endif // wxUSE_GAUGE |
6bb44116 | 136 | #if wxUSE_SLIDER |
e380f72b | 137 | wxSlider *m_slider; |
6bb44116 | 138 | #endif // wxUSE_SLIDER |
e380f72b | 139 | wxButton *m_fontButton; |
85eb36c2 RR |
140 | wxButton *m_lbSelectNum; |
141 | wxButton *m_lbSelectThis; | |
0e528b99 | 142 | #if wxUSE_SPINBTN |
e380f72b | 143 | wxSpinButton *m_spinbutton; |
516ab399 | 144 | #if wxUSE_PROGRESSDLG |
9726da4f | 145 | wxButton *m_btnProgress; |
516ab399 | 146 | #endif // wxUSE_PROGRESSDLG |
0e528b99 | 147 | #endif // wxUSE_SPINBTN |
1dd815f3 RR |
148 | wxStaticText *m_wrappingText; |
149 | wxStaticText *m_nonWrappingText; | |
b782f2e0 VZ |
150 | |
151 | #if wxUSE_SPINCTRL | |
152 | wxSpinCtrl *m_spinctrl; | |
153 | #endif // wxUSE_SPINCTRL | |
154 | ||
e380f72b | 155 | wxTextCtrl *m_spintext; |
ae0bdb01 | 156 | wxCheckBox *m_checkbox; |
16f6dfd8 | 157 | |
e380f72b | 158 | wxTextCtrl *m_text; |
61c083e7 | 159 | wxBookCtrl *m_book; |
655822f3 | 160 | |
185fa6bf VZ |
161 | wxStaticText *m_label; |
162 | ||
2b5f62a0 VZ |
163 | wxBoxSizer *m_buttonSizer; |
164 | wxButton *m_sizerBtn1; | |
165 | wxButton *m_sizerBtn2; | |
166 | wxButton *m_sizerBtn3; | |
167 | wxButton *m_sizerBtn4; | |
168 | wxBoxSizer *m_hsizer; | |
169 | wxButton *m_bigBtn; | |
170 | ||
b8653fbf | 171 | private: |
29e7e51a VZ |
172 | wxLog *m_logTargetOld; |
173 | ||
b8653fbf | 174 | DECLARE_EVENT_TABLE() |
1c005ff7 RR |
175 | }; |
176 | ||
177 | class MyFrame: public wxFrame | |
178 | { | |
b8653fbf | 179 | public: |
9f84eccd | 180 | MyFrame(const wxChar *title, int x, int y); |
655822f3 | 181 | |
1c005ff7 RR |
182 | void OnQuit(wxCommandEvent& event); |
183 | void OnAbout(wxCommandEvent& event); | |
3e2dd3db | 184 | void OnClearLog(wxCommandEvent& event); |
87a1e308 | 185 | |
16f6dfd8 VZ |
186 | #if wxUSE_TOOLTIPS |
187 | void OnSetTooltipDelay(wxCommandEvent& event); | |
188 | void OnToggleTooltips(wxCommandEvent& event); | |
189 | #endif // wxUSE_TOOLTIPS | |
87a1e308 VZ |
190 | |
191 | void OnEnableAll(wxCommandEvent& event); | |
192 | ||
9f3362c4 | 193 | void OnIdle( wxIdleEvent& event ); |
35960bbf VZ |
194 | void OnIconized( wxIconizeEvent& event ); |
195 | void OnMaximized( wxMaximizeEvent& event ); | |
5fb9fcfc | 196 | void OnSize( wxSizeEvent& event ); |
97206645 | 197 | void OnMove( wxMoveEvent& event ); |
655822f3 | 198 | |
f048e32f VZ |
199 | MyPanel *GetPanel() const { return m_panel; } |
200 | ||
b8653fbf | 201 | private: |
960a83cc | 202 | #if wxUSE_STATUSBAR |
97206645 VZ |
203 | void UpdateStatusBar(const wxPoint& pos, const wxSize& size) |
204 | { | |
7bfc22f6 VZ |
205 | if ( m_frameStatusBar ) |
206 | { | |
207 | wxString msg; | |
0545d965 VZ |
208 | wxSize sizeAll = GetSize(), |
209 | sizeCl = GetClientSize(); | |
210 | msg.Printf(_("pos=(%d, %d), size=%dx%d or %dx%d (client=%dx%d)"), | |
7bfc22f6 VZ |
211 | pos.x, pos.y, |
212 | size.x, size.y, | |
0545d965 | 213 | sizeAll.x, sizeAll.y, |
7bfc22f6 VZ |
214 | sizeCl.x, sizeCl.y); |
215 | SetStatusText(msg, 1); | |
216 | } | |
97206645 | 217 | } |
960a83cc | 218 | #endif // wxUSE_STATUSBAR |
97206645 | 219 | |
f048e32f | 220 | MyPanel *m_panel; |
87a1e308 | 221 | |
b8653fbf | 222 | DECLARE_EVENT_TABLE() |
1c005ff7 RR |
223 | }; |
224 | ||
f6bcfd97 BP |
225 | // a button which intercepts double clicks (for testing...) |
226 | class MyButton : public wxButton | |
227 | { | |
228 | public: | |
229 | MyButton(wxWindow *parent, | |
230 | wxWindowID id, | |
231 | const wxString& label = wxEmptyString, | |
232 | const wxPoint& pos = wxDefaultPosition, | |
233 | const wxSize& size = wxDefaultSize) | |
234 | : wxButton(parent, id, label, pos, size) | |
235 | { | |
236 | } | |
237 | ||
238 | void OnDClick(wxMouseEvent& event) | |
239 | { | |
240 | wxLogMessage(_T("MyButton::OnDClick")); | |
241 | ||
242 | event.Skip(); | |
243 | } | |
244 | ||
245 | private: | |
246 | DECLARE_EVENT_TABLE() | |
247 | }; | |
248 | ||
249 | // a combo which intercepts chars (to test Windows behaviour) | |
250 | class MyComboBox : public wxComboBox | |
251 | { | |
252 | public: | |
253 | MyComboBox(wxWindow *parent, wxWindowID id, | |
254 | const wxString& value = wxEmptyString, | |
255 | const wxPoint& pos = wxDefaultPosition, | |
256 | const wxSize& size = wxDefaultSize, | |
257 | int n = 0, const wxString choices[] = NULL, | |
258 | long style = 0, | |
259 | const wxValidator& validator = wxDefaultValidator, | |
260 | const wxString& name = wxComboBoxNameStr) | |
261 | : wxComboBox(parent, id, value, pos, size, n, choices, style, | |
262 | validator, name) { } | |
263 | ||
264 | protected: | |
265 | void OnChar(wxKeyEvent& event); | |
266 | void OnKeyDown(wxKeyEvent& event); | |
267 | void OnKeyUp(wxKeyEvent& event); | |
268 | void OnFocusGot(wxFocusEvent& event) | |
269 | { | |
270 | wxLogMessage(_T("MyComboBox::OnFocusGot")); | |
271 | ||
272 | event.Skip(); | |
273 | } | |
274 | ||
275 | private: | |
276 | DECLARE_EVENT_TABLE() | |
277 | }; | |
278 | ||
279 | // a radiobox which handles focus set/kill (for testing) | |
280 | class MyRadioBox : public wxRadioBox | |
281 | { | |
282 | public: | |
283 | MyRadioBox(wxWindow *parent, | |
284 | wxWindowID id, | |
285 | const wxString& title = wxEmptyString, | |
286 | const wxPoint& pos = wxDefaultPosition, | |
287 | const wxSize& size = wxDefaultSize, | |
288 | int n = 0, const wxString choices[] = NULL, | |
289 | int majorDim = 1, | |
290 | long style = wxRA_HORIZONTAL, | |
291 | const wxValidator& validator = wxDefaultValidator, | |
0bb62421 | 292 | const wxString& name = wxRadioBoxNameStr) |
f6bcfd97 | 293 | : wxRadioBox(parent, id, title, pos, size, n, choices, majorDim, |
7891b4d4 VZ |
294 | style, validator, name) |
295 | { | |
296 | } | |
f6bcfd97 BP |
297 | |
298 | protected: | |
299 | void OnFocusGot(wxFocusEvent& event) | |
300 | { | |
301 | wxLogMessage(_T("MyRadioBox::OnFocusGot")); | |
302 | ||
303 | event.Skip(); | |
304 | } | |
305 | ||
306 | void OnFocusLost(wxFocusEvent& event) | |
307 | { | |
308 | wxLogMessage(_T("MyRadioBox::OnFocusLost")); | |
309 | ||
310 | event.Skip(); | |
311 | } | |
312 | ||
313 | private: | |
314 | DECLARE_EVENT_TABLE() | |
315 | }; | |
316 | ||
1a84e759 RR |
317 | // a choice which handles focus set/kill (for testing) |
318 | class MyChoice : public wxChoice | |
319 | { | |
320 | public: | |
321 | MyChoice(wxWindow *parent, | |
322 | wxWindowID id, | |
323 | const wxPoint& pos = wxDefaultPosition, | |
324 | const wxSize& size = wxDefaultSize, | |
325 | int n = 0, const wxString choices[] = NULL, | |
326 | long style = 0, | |
327 | const wxValidator& validator = wxDefaultValidator, | |
328 | const wxString& name = wxChoiceNameStr ) | |
0d29fecd | 329 | : wxChoice(parent, id, pos, size, n, choices, |
1a84e759 RR |
330 | style, validator, name) { } |
331 | ||
332 | protected: | |
333 | void OnFocusGot(wxFocusEvent& event) | |
334 | { | |
335 | wxLogMessage(_T("MyChoice::OnFocusGot")); | |
336 | ||
337 | event.Skip(); | |
338 | } | |
339 | ||
340 | void OnFocusLost(wxFocusEvent& event) | |
341 | { | |
342 | wxLogMessage(_T("MyChoice::OnFocusLost")); | |
343 | ||
344 | event.Skip(); | |
345 | } | |
346 | ||
347 | private: | |
348 | DECLARE_EVENT_TABLE() | |
349 | }; | |
350 | ||
351 | ||
352 | ||
1c005ff7 | 353 | //---------------------------------------------------------------------- |
6c8a980f | 354 | // other |
1c005ff7 RR |
355 | //---------------------------------------------------------------------- |
356 | ||
8b81a824 | 357 | static void SetListboxClientData(const wxChar *name, wxListBox *control); |
2b5f62a0 VZ |
358 | |
359 | #if wxUSE_CHOICE | |
8b81a824 | 360 | static void SetChoiceClientData(const wxChar *name, wxChoice *control); |
2b5f62a0 | 361 | #endif // wxUSE_CHOICE |
6c8a980f | 362 | |
d59051dd | 363 | IMPLEMENT_APP(MyApp) |
1c005ff7 RR |
364 | |
365 | //---------------------------------------------------------------------- | |
366 | // MyApp | |
367 | //---------------------------------------------------------------------- | |
368 | ||
16f6dfd8 VZ |
369 | enum |
370 | { | |
91b07357 JS |
371 | CONTROLS_QUIT = wxID_EXIT, |
372 | CONTROLS_ABOUT = wxID_ABOUT, | |
373 | CONTROLS_TEXT = 100, | |
3e2dd3db | 374 | CONTROLS_CLEAR_LOG, |
16f6dfd8 VZ |
375 | |
376 | // tooltip menu | |
3e2dd3db VZ |
377 | CONTROLS_SET_TOOLTIP_DELAY = 200, |
378 | CONTROLS_ENABLE_TOOLTIPS, | |
87a1e308 VZ |
379 | |
380 | // panel menu | |
3e2dd3db | 381 | CONTROLS_ENABLE_ALL |
16f6dfd8 | 382 | }; |
1c005ff7 | 383 | |
b8653fbf | 384 | bool MyApp::OnInit() |
1c005ff7 | 385 | { |
41b66be9 VS |
386 | // use standard command line handling: |
387 | if ( !wxApp::OnInit() ) | |
9230b621 | 388 | return false; |
41b66be9 | 389 | |
e66ad5c6 VZ |
390 | // parse the cmd line |
391 | int x = 50, | |
392 | y = 50; | |
3ca6a5f0 | 393 | if ( argc == 3 ) |
e66ad5c6 | 394 | { |
a60b1f5d MB |
395 | wxSscanf(wxString(argv[1]), wxT("%d"), &x); |
396 | wxSscanf(wxString(argv[2]), wxT("%d"), &y); | |
e66ad5c6 VZ |
397 | } |
398 | ||
ec9f7884 | 399 | // Create the main frame window |
be5a51fb | 400 | MyFrame *frame = new MyFrame(_T("Controls wxWidgets App"), x, y); |
9230b621 | 401 | frame->Show(true); |
655822f3 | 402 | |
9230b621 | 403 | return true; |
1c005ff7 RR |
404 | } |
405 | ||
406 | //---------------------------------------------------------------------- | |
407 | // MyPanel | |
408 | //---------------------------------------------------------------------- | |
409 | ||
61c083e7 | 410 | const int ID_BOOK = 1000; |
1c005ff7 | 411 | |
4fabb575 JS |
412 | const int ID_LISTBOX = 130; |
413 | const int ID_LISTBOX_SEL_NUM = 131; | |
414 | const int ID_LISTBOX_SEL_STR = 132; | |
415 | const int ID_LISTBOX_CLEAR = 133; | |
416 | const int ID_LISTBOX_APPEND = 134; | |
417 | const int ID_LISTBOX_DELETE = 135; | |
418 | const int ID_LISTBOX_FONT = 136; | |
419 | const int ID_LISTBOX_ENABLE = 137; | |
6c8a980f | 420 | const int ID_LISTBOX_SORTED = 138; |
1c005ff7 | 421 | |
4fabb575 JS |
422 | const int ID_CHOICE = 120; |
423 | const int ID_CHOICE_SEL_NUM = 121; | |
424 | const int ID_CHOICE_SEL_STR = 122; | |
425 | const int ID_CHOICE_CLEAR = 123; | |
426 | const int ID_CHOICE_APPEND = 124; | |
427 | const int ID_CHOICE_DELETE = 125; | |
428 | const int ID_CHOICE_FONT = 126; | |
429 | const int ID_CHOICE_ENABLE = 127; | |
b56c2246 | 430 | const int ID_CHOICE_SORTED = 128; |
53010e52 | 431 | |
4fabb575 JS |
432 | const int ID_COMBO = 140; |
433 | const int ID_COMBO_SEL_NUM = 141; | |
434 | const int ID_COMBO_SEL_STR = 142; | |
435 | const int ID_COMBO_CLEAR = 143; | |
436 | const int ID_COMBO_APPEND = 144; | |
437 | const int ID_COMBO_DELETE = 145; | |
438 | const int ID_COMBO_FONT = 146; | |
439 | const int ID_COMBO_ENABLE = 147; | |
cc7e9e20 | 440 | const int ID_COMBO_SET_TEXT = 148; |
53010e52 | 441 | |
4fabb575 JS |
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; | |
868a2826 | 447 | |
f5d29b39 RR |
448 | const int ID_RADIOBUTTON_1 = 166; |
449 | const int ID_RADIOBUTTON_2 = 167; | |
450 | ||
4fabb575 | 451 | const int ID_SET_FONT = 170; |
47908e25 | 452 | |
516ab399 | 453 | #if wxUSE_GAUGE |
4fabb575 | 454 | const int ID_GAUGE = 180; |
516ab399 WS |
455 | #endif // wxUSE_GAUGE |
456 | ||
6bb44116 | 457 | #if wxUSE_SLIDER |
4fabb575 | 458 | const int ID_SLIDER = 181; |
6bb44116 | 459 | #endif // wxUSE_SLIDER |
58614078 | 460 | |
4fabb575 | 461 | const int ID_SPIN = 182; |
516ab399 | 462 | #if wxUSE_PROGRESSDLG |
9726da4f | 463 | const int ID_BTNPROGRESS = 183; |
516ab399 | 464 | #endif // wxUSE_PROGRESSDLG |
185fa6bf | 465 | const int ID_BUTTON_LABEL = 184; |
baccb514 | 466 | const int ID_SPINCTRL = 185; |
1dd815f3 | 467 | const int ID_BTNNEWTEXT = 186; |
e380f72b | 468 | |
3e2dd3db VZ |
469 | const int ID_BUTTON_TEST1 = 190; |
470 | const int ID_BUTTON_TEST2 = 191; | |
9121bed2 | 471 | const int ID_BITMAP_BTN = 192; |
bebc503c | 472 | const int ID_BITMAP_BTN_ENABLE = 193; |
3e2dd3db | 473 | |
87a1e308 VZ |
474 | const int ID_CHANGE_COLOUR = 200; |
475 | ||
2b5f62a0 VZ |
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; | |
482 | ||
1c005ff7 | 483 | BEGIN_EVENT_TABLE(MyPanel, wxPanel) |
f226be17 | 484 | EVT_IDLE ( MyPanel::OnIdle) |
61c083e7 WS |
485 | EVT_BOOKCTRL_PAGE_CHANGING(ID_BOOK, MyPanel::OnPageChanging) |
486 | EVT_BOOKCTRL_PAGE_CHANGED(ID_BOOK, MyPanel::OnPageChanged) | |
ec9f7884 | 487 | EVT_LISTBOX (ID_LISTBOX, MyPanel::OnListBox) |
6c8a980f | 488 | EVT_LISTBOX (ID_LISTBOX_SORTED, MyPanel::OnListBox) |
ec9f7884 VZ |
489 | EVT_LISTBOX_DCLICK(ID_LISTBOX, MyPanel::OnListBoxDoubleClick) |
490 | EVT_BUTTON (ID_LISTBOX_SEL_NUM, MyPanel::OnListBoxButtons) | |
491 | EVT_BUTTON (ID_LISTBOX_SEL_STR, MyPanel::OnListBoxButtons) | |
492 | EVT_BUTTON (ID_LISTBOX_CLEAR, MyPanel::OnListBoxButtons) | |
493 | EVT_BUTTON (ID_LISTBOX_APPEND, MyPanel::OnListBoxButtons) | |
494 | EVT_BUTTON (ID_LISTBOX_DELETE, MyPanel::OnListBoxButtons) | |
495 | EVT_BUTTON (ID_LISTBOX_FONT, MyPanel::OnListBoxButtons) | |
496 | EVT_CHECKBOX (ID_LISTBOX_ENABLE, MyPanel::OnListBoxButtons) | |
1ccd23f5 | 497 | #if wxUSE_CHOICE |
ec9f7884 | 498 | EVT_CHOICE (ID_CHOICE, MyPanel::OnChoice) |
b56c2246 | 499 | EVT_CHOICE (ID_CHOICE_SORTED, MyPanel::OnChoice) |
ec9f7884 VZ |
500 | EVT_BUTTON (ID_CHOICE_SEL_NUM, MyPanel::OnChoiceButtons) |
501 | EVT_BUTTON (ID_CHOICE_SEL_STR, MyPanel::OnChoiceButtons) | |
502 | EVT_BUTTON (ID_CHOICE_CLEAR, MyPanel::OnChoiceButtons) | |
503 | EVT_BUTTON (ID_CHOICE_APPEND, MyPanel::OnChoiceButtons) | |
504 | EVT_BUTTON (ID_CHOICE_DELETE, MyPanel::OnChoiceButtons) | |
505 | EVT_BUTTON (ID_CHOICE_FONT, MyPanel::OnChoiceButtons) | |
506 | EVT_CHECKBOX (ID_CHOICE_ENABLE, MyPanel::OnChoiceButtons) | |
1ccd23f5 | 507 | #endif |
ec9f7884 | 508 | EVT_COMBOBOX (ID_COMBO, MyPanel::OnCombo) |
f6bcfd97 BP |
509 | EVT_TEXT (ID_COMBO, MyPanel::OnComboTextChanged) |
510 | EVT_TEXT_ENTER(ID_COMBO, MyPanel::OnComboTextEnter) | |
ec9f7884 VZ |
511 | EVT_BUTTON (ID_COMBO_SEL_NUM, MyPanel::OnComboButtons) |
512 | EVT_BUTTON (ID_COMBO_SEL_STR, MyPanel::OnComboButtons) | |
513 | EVT_BUTTON (ID_COMBO_CLEAR, MyPanel::OnComboButtons) | |
514 | EVT_BUTTON (ID_COMBO_APPEND, MyPanel::OnComboButtons) | |
515 | EVT_BUTTON (ID_COMBO_DELETE, MyPanel::OnComboButtons) | |
516 | EVT_BUTTON (ID_COMBO_FONT, MyPanel::OnComboButtons) | |
cc7e9e20 | 517 | EVT_BUTTON (ID_COMBO_SET_TEXT, MyPanel::OnComboButtons) |
ec9f7884 VZ |
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) | |
a48b9bfb VZ |
524 | EVT_RADIOBUTTON(ID_RADIOBUTTON_1, MyPanel::OnRadioButton1) |
525 | EVT_RADIOBUTTON(ID_RADIOBUTTON_2, MyPanel::OnRadioButton2) | |
ec9f7884 | 526 | EVT_BUTTON (ID_SET_FONT, MyPanel::OnSetFont) |
6bb44116 | 527 | #if wxUSE_SLIDER |
ec9f7884 | 528 | EVT_SLIDER (ID_SLIDER, MyPanel::OnSliderUpdate) |
6bb44116 | 529 | #endif // wxUSE_SLIDER |
0e528b99 | 530 | #if wxUSE_SPINBTN |
ec9f7884 | 531 | EVT_SPIN (ID_SPIN, MyPanel::OnSpinUpdate) |
8c3c31d4 VZ |
532 | EVT_SPIN_UP (ID_SPIN, MyPanel::OnSpinUp) |
533 | EVT_SPIN_DOWN (ID_SPIN, MyPanel::OnSpinDown) | |
516ab399 | 534 | #if wxUSE_PROGRESSDLG |
9726da4f VZ |
535 | EVT_UPDATE_UI (ID_BTNPROGRESS, MyPanel::OnUpdateShowProgress) |
536 | EVT_BUTTON (ID_BTNPROGRESS, MyPanel::OnShowProgress) | |
516ab399 | 537 | #endif // wxUSE_PROGRESSDLG |
0e528b99 | 538 | #endif // wxUSE_SPINBTN |
baccb514 | 539 | #if wxUSE_SPINCTRL |
57160afe | 540 | EVT_SPINCTRL (ID_SPINCTRL, MyPanel::OnSpinCtrl) |
76106901 VZ |
541 | EVT_SPIN_UP (ID_SPINCTRL, MyPanel::OnSpinCtrlUp) |
542 | EVT_SPIN_DOWN (ID_SPINCTRL, MyPanel::OnSpinCtrlDown) | |
543 | EVT_TEXT (ID_SPINCTRL, MyPanel::OnSpinCtrlText) | |
baccb514 | 544 | #endif // wxUSE_SPINCTRL |
1dd815f3 | 545 | EVT_BUTTON (ID_BTNNEWTEXT, MyPanel::OnNewText) |
1db8dc4a | 546 | EVT_TOGGLEBUTTON(ID_BUTTON_LABEL, MyPanel::OnUpdateLabel) |
87a1e308 | 547 | EVT_CHECKBOX (ID_CHANGE_COLOUR, MyPanel::OnChangeColour) |
3e2dd3db VZ |
548 | EVT_BUTTON (ID_BUTTON_TEST1, MyPanel::OnTestButton) |
549 | EVT_BUTTON (ID_BUTTON_TEST2, MyPanel::OnTestButton) | |
9121bed2 | 550 | EVT_BUTTON (ID_BITMAP_BTN, MyPanel::OnBmpButton) |
bebc503c | 551 | EVT_TOGGLEBUTTON(ID_BITMAP_BTN_ENABLE, MyPanel::OnBmpButtonToggle) |
2b5f62a0 VZ |
552 | |
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) | |
559 | ||
1c005ff7 RR |
560 | END_EVENT_TABLE() |
561 | ||
f6bcfd97 BP |
562 | BEGIN_EVENT_TABLE(MyButton, wxButton) |
563 | EVT_LEFT_DCLICK(MyButton::OnDClick) | |
564 | END_EVENT_TABLE() | |
565 | ||
566 | BEGIN_EVENT_TABLE(MyComboBox, wxComboBox) | |
567 | EVT_CHAR(MyComboBox::OnChar) | |
568 | EVT_KEY_DOWN(MyComboBox::OnKeyDown) | |
569 | EVT_KEY_UP(MyComboBox::OnKeyUp) | |
570 | ||
571 | EVT_SET_FOCUS(MyComboBox::OnFocusGot) | |
572 | END_EVENT_TABLE() | |
573 | ||
574 | BEGIN_EVENT_TABLE(MyRadioBox, wxRadioBox) | |
575 | EVT_SET_FOCUS(MyRadioBox::OnFocusGot) | |
576 | EVT_KILL_FOCUS(MyRadioBox::OnFocusLost) | |
577 | END_EVENT_TABLE() | |
578 | ||
1a84e759 RR |
579 | BEGIN_EVENT_TABLE(MyChoice, wxChoice) |
580 | EVT_SET_FOCUS(MyChoice::OnFocusGot) | |
581 | EVT_KILL_FOCUS(MyChoice::OnFocusLost) | |
582 | END_EVENT_TABLE() | |
583 | ||
f6bcfd97 BP |
584 | // ============================================================================ |
585 | // implementation | |
586 | // ============================================================================ | |
587 | ||
5fb9fcfc | 588 | MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h ) |
9230b621 | 589 | : wxPanel( frame, wxID_ANY, wxPoint(x, y), wxSize(w, h) ) |
1c005ff7 | 590 | { |
946fb2b9 JS |
591 | m_listbox = NULL; |
592 | m_listboxSorted = NULL; | |
593 | #if wxUSE_CHOICE | |
594 | m_choice = NULL; | |
595 | m_choiceSorted = NULL; | |
6bb44116 | 596 | #endif // wxUSE_CHOICE |
946fb2b9 JS |
597 | m_combo = NULL; |
598 | m_radio = NULL; | |
516ab399 | 599 | #if wxUSE_GAUGE |
946fb2b9 JS |
600 | m_gauge = NULL; |
601 | m_gaugeVert = NULL; | |
516ab399 | 602 | #endif // wxUSE_GAUGE |
6bb44116 | 603 | #if wxUSE_SLIDER |
946fb2b9 | 604 | m_slider = NULL; |
6bb44116 | 605 | #endif // wxUSE_SLIDER |
946fb2b9 JS |
606 | m_fontButton = NULL; |
607 | m_lbSelectNum = NULL; | |
608 | m_lbSelectThis = NULL; | |
609 | #if wxUSE_SPINBTN | |
610 | m_spinbutton = NULL; | |
516ab399 | 611 | #if wxUSE_PROGRESSDLG |
946fb2b9 | 612 | m_btnProgress = NULL; |
516ab399 | 613 | #endif // wxUSE_PROGRESSDLG |
946fb2b9 JS |
614 | #endif // wxUSE_SPINBTN |
615 | #if wxUSE_SPINCTRL | |
616 | m_spinctrl = NULL; | |
617 | #endif // wxUSE_SPINCTRL | |
618 | m_spintext = NULL; | |
619 | m_checkbox = NULL; | |
620 | m_text = NULL; | |
61c083e7 | 621 | m_book = NULL; |
946fb2b9 JS |
622 | m_label = NULL; |
623 | ||
9230b621 | 624 | m_text = new wxTextCtrl(this, wxID_ANY, _T("This is the log window.\n"), |
3e2dd3db | 625 | wxPoint(0, 250), wxSize(100, 50), wxTE_MULTILINE); |
655822f3 | 626 | |
29e7e51a | 627 | m_logTargetOld = wxLog::SetActiveTarget(new wxLogTextCtrl(m_text)); |
0a772322 | 628 | |
61c083e7 | 629 | m_book = new wxBookCtrl(this, ID_BOOK); |
655822f3 | 630 | |
ec9f7884 VZ |
631 | wxString choices[] = |
632 | { | |
9f84eccd MB |
633 | _T("This"), |
634 | _T("is one of my"), | |
635 | _T("really"), | |
636 | _T("wonderful"), | |
637 | _T("examples.") | |
ec9f7884 | 638 | }; |
655822f3 | 639 | |
4fabb575 | 640 | #ifdef USE_XPM |
ec9f7884 VZ |
641 | // image ids |
642 | enum | |
643 | { | |
516ab399 WS |
644 | Image_List, |
645 | Image_Choice, | |
646 | Image_Combo, | |
647 | Image_Text, | |
648 | Image_Radio, | |
649 | #if wxUSE_GAUGE | |
650 | Image_Gauge, | |
651 | #endif // wxUSE_GAUGE | |
652 | Image_Max | |
ec9f7884 VZ |
653 | }; |
654 | ||
655 | // fill the image list | |
a374426f | 656 | wxBitmap bmp(list_xpm); |
ec9f7884 | 657 | |
a374426f VZ |
658 | wxImageList *imagelist = new wxImageList(bmp.GetWidth(), bmp.GetHeight()); |
659 | ||
660 | imagelist-> Add( bmp ); | |
ec9f7884 VZ |
661 | imagelist-> Add( wxBitmap( choice_xpm )); |
662 | imagelist-> Add( wxBitmap( combo_xpm )); | |
663 | imagelist-> Add( wxBitmap( text_xpm )); | |
664 | imagelist-> Add( wxBitmap( radio_xpm )); | |
516ab399 | 665 | #if wxUSE_GAUGE |
ec9f7884 | 666 | imagelist-> Add( wxBitmap( gauge_xpm )); |
516ab399 | 667 | #endif // wxUSE_GAUGE |
61c083e7 | 668 | m_book->SetImageList(imagelist); |
73c700fd | 669 | #elif defined(__WXMSW__) |
ec9f7884 VZ |
670 | // load images from resources |
671 | enum | |
672 | { | |
516ab399 WS |
673 | Image_List, |
674 | Image_Choice, | |
675 | Image_Combo, | |
676 | Image_Text, | |
677 | Image_Radio, | |
678 | #if wxUSE_GAUGE | |
679 | Image_Gauge, | |
680 | #endif // wxUSE_GAUGE | |
681 | Image_Max | |
ec9f7884 | 682 | }; |
9230b621 | 683 | wxImageList *imagelist = new wxImageList(16, 16, false, Image_Max); |
ec9f7884 | 684 | |
9f84eccd | 685 | static const wxChar *s_iconNames[Image_Max] = |
ec9f7884 | 686 | { |
516ab399 WS |
687 | _T("list") |
688 | , _T("choice") | |
689 | , _T("combo") | |
690 | , _T("text") | |
691 | , _T("radio") | |
692 | #if wxUSE_GAUGE | |
693 | , _T("gauge") | |
694 | #endif // wxUSE_GAUGE | |
ec9f7884 VZ |
695 | }; |
696 | ||
697 | for ( size_t n = 0; n < Image_Max; n++ ) | |
698 | { | |
699 | wxBitmap bmp(s_iconNames[n]); | |
700 | if ( !bmp.Ok() || (imagelist->Add(bmp) == -1) ) | |
701 | { | |
61c083e7 | 702 | wxLogWarning(wxT("Couldn't load the image '%s' for the book control page %d."), |
ec9f7884 VZ |
703 | s_iconNames[n], n); |
704 | } | |
705 | } | |
706 | ||
61c083e7 | 707 | m_book->SetImageList(imagelist); |
4fabb575 JS |
708 | #else |
709 | ||
ec9f7884 | 710 | // No images for now |
4fabb575 JS |
711 | #define Image_List -1 |
712 | #define Image_Choice -1 | |
713 | #define Image_Combo -1 | |
714 | #define Image_Text -1 | |
715 | #define Image_Radio -1 | |
516ab399 | 716 | #if wxUSE_GAUGE |
4fabb575 | 717 | #define Image_Gauge -1 |
516ab399 | 718 | #endif // wxUSE_GAUGE |
4fabb575 JS |
719 | #define Image_Max -1 |
720 | ||
fc54776e | 721 | #endif |
2cb21a45 | 722 | |
61c083e7 | 723 | wxPanel *panel = new wxPanel(m_book); |
6c8a980f VZ |
724 | m_listbox = new wxListBox( panel, ID_LISTBOX, |
725 | wxPoint(10,10), wxSize(120,70), | |
376c0148 | 726 | 5, choices, wxLB_MULTIPLE |wxLB_ALWAYS_SB ); |
6c8a980f VZ |
727 | m_listboxSorted = new wxListBox( panel, ID_LISTBOX_SORTED, |
728 | wxPoint(10,90), wxSize(120,70), | |
354aa1e3 | 729 | 5, choices, wxLB_SORT ); |
6c8a980f | 730 | |
8b81a824 VS |
731 | SetListboxClientData(wxT("listbox"), m_listbox); |
732 | SetListboxClientData(wxT("listbox"), m_listboxSorted); | |
9838df2c | 733 | |
ec9f7884 | 734 | m_listbox->SetCursor(*wxCROSS_CURSOR); |
b8653fbf | 735 | #if wxUSE_TOOLTIPS |
9f84eccd | 736 | m_listbox->SetToolTip( _T("This is a list box") ); |
16f6dfd8 | 737 | #endif // wxUSE_TOOLTIPS |
9f3362c4 | 738 | |
9f84eccd MB |
739 | m_lbSelectNum = new wxButton( panel, ID_LISTBOX_SEL_NUM, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) ); |
740 | m_lbSelectThis = new wxButton( panel, ID_LISTBOX_SEL_STR, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) ); | |
741 | (void)new wxButton( panel, ID_LISTBOX_CLEAR, _T("&Clear"), wxPoint(180,80), wxSize(140,30) ); | |
742 | (void)new MyButton( panel, ID_LISTBOX_APPEND, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) ); | |
743 | (void)new wxButton( panel, ID_LISTBOX_DELETE, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) ); | |
744 | wxButton *button = new MyButton( panel, ID_LISTBOX_FONT, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) ); | |
57160afe VZ |
745 | |
746 | button->SetDefault(); | |
57160afe | 747 | |
b8653fbf | 748 | #if wxUSE_TOOLTIPS |
9f84eccd | 749 | button->SetToolTip( _T("Press here to set italic font") ); |
16f6dfd8 | 750 | #endif // wxUSE_TOOLTIPS |
b1170810 | 751 | |
9f84eccd | 752 | m_checkbox = new wxCheckBox( panel, ID_LISTBOX_ENABLE, _T("&Disable"), wxPoint(20,170) ); |
9230b621 | 753 | m_checkbox->SetValue(false); |
35960bbf | 754 | button->MoveAfterInTabOrder(m_checkbox); |
b8653fbf | 755 | #if wxUSE_TOOLTIPS |
9f84eccd | 756 | m_checkbox->SetToolTip( _T("Click here to disable the listbox") ); |
16f6dfd8 | 757 | #endif // wxUSE_TOOLTIPS |
9f84eccd | 758 | (void)new wxCheckBox( panel, ID_CHANGE_COLOUR, _T("&Toggle colour"), |
87a1e308 | 759 | wxPoint(110,170) ); |
9121bed2 | 760 | panel->SetCursor(wxCursor(wxCURSOR_HAND)); |
61c083e7 | 761 | m_book->AddPage(panel, _T("wxListBox"), true, Image_List); |
ec9f7884 | 762 | |
1ccd23f5 | 763 | #if wxUSE_CHOICE |
61c083e7 | 764 | panel = new wxPanel(m_book); |
1a84e759 RR |
765 | m_choice = new MyChoice( panel, ID_CHOICE, wxPoint(10,10), wxSize(120,wxDefaultCoord), 5, choices ); |
766 | m_choiceSorted = new MyChoice( panel, ID_CHOICE_SORTED, wxPoint(10,70), wxSize(120,wxDefaultCoord), | |
b56c2246 | 767 | 5, choices, wxCB_SORT ); |
6c8a980f | 768 | |
8b81a824 VS |
769 | SetChoiceClientData(wxT("choice"), m_choice); |
770 | SetChoiceClientData(wxT("choice"), m_choiceSorted); | |
6c8a980f | 771 | |
ddc8c2e3 | 772 | m_choice->SetSelection(2); |
9f84eccd MB |
773 | (void)new wxButton( panel, ID_CHOICE_SEL_NUM, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) ); |
774 | (void)new wxButton( panel, ID_CHOICE_SEL_STR, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) ); | |
775 | (void)new wxButton( panel, ID_CHOICE_CLEAR, _T("&Clear"), wxPoint(180,80), wxSize(140,30) ); | |
776 | (void)new wxButton( panel, ID_CHOICE_APPEND, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) ); | |
777 | (void)new wxButton( panel, ID_CHOICE_DELETE, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) ); | |
778 | (void)new wxButton( panel, ID_CHOICE_FONT, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) ); | |
779 | (void)new wxCheckBox( panel, ID_CHOICE_ENABLE, _T("&Disable"), wxPoint(20,130), wxSize(140,30) ); | |
780 | ||
61c083e7 | 781 | m_book->AddPage(panel, _T("wxChoice"), false, Image_Choice); |
1ccd23f5 | 782 | #endif // wxUSE_CHOICE |
ec9f7884 | 783 | |
61c083e7 | 784 | panel = new wxPanel(m_book); |
9230b621 | 785 | (void)new wxStaticBox( panel, wxID_ANY, _T("&Box around combobox"), |
f048e32f | 786 | wxPoint(5, 5), wxSize(150, 100)); |
9f84eccd | 787 | m_combo = new MyComboBox( panel, ID_COMBO, _T("This"), |
422d0ff0 | 788 | wxPoint(20,25), wxSize(120, wxDefaultCoord), |
f6bcfd97 | 789 | 5, choices, |
361484a8 | 790 | wxPROCESS_ENTER); |
f6bcfd97 | 791 | |
9f84eccd MB |
792 | (void)new wxButton( panel, ID_COMBO_SEL_NUM, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) ); |
793 | (void)new wxButton( panel, ID_COMBO_SEL_STR, _T("&Select 'This'"), wxPoint(340,30), wxSize(140,30) ); | |
794 | (void)new wxButton( panel, ID_COMBO_CLEAR, _T("&Clear"), wxPoint(180,80), wxSize(140,30) ); | |
795 | (void)new wxButton( panel, ID_COMBO_APPEND, _T("&Append 'Hi!'"), wxPoint(340,80), wxSize(140,30) ); | |
796 | (void)new wxButton( panel, ID_COMBO_DELETE, _T("D&elete selected item"), wxPoint(180,130), wxSize(140,30) ); | |
797 | (void)new wxButton( panel, ID_COMBO_FONT, _T("Set &Italic font"), wxPoint(340,130), wxSize(140,30) ); | |
cc7e9e20 | 798 | (void)new wxButton( panel, ID_COMBO_SET_TEXT, _T("Set 'Hi!' at #2"), wxPoint(340,180), wxSize(140,30) ); |
9f84eccd | 799 | (void)new wxCheckBox( panel, ID_COMBO_ENABLE, _T("&Disable"), wxPoint(20,130), wxSize(140,30) ); |
61c083e7 | 800 | m_book->AddPage(panel, _T("wxComboBox"), false, Image_Combo); |
ec9f7884 | 801 | |
ec9f7884 VZ |
802 | wxString choices2[] = |
803 | { | |
9f84eccd | 804 | _T("First"), _T("Second"), |
0a772322 | 805 | /* "Third", |
17867d61 RR |
806 | "Fourth", "Fifth", "Sixth", |
807 | "Seventh", "Eighth", "Nineth", "Tenth" */ | |
ec9f7884 VZ |
808 | }; |
809 | ||
61c083e7 | 810 | panel = new wxPanel(m_book); |
9230b621 VS |
811 | (void)new MyRadioBox( panel, ID_RADIOBOX, _T("&That"), wxPoint(10,160), wxDefaultSize, WXSIZEOF(choices2), choices2, 1, wxRA_SPECIFY_ROWS ); |
812 | m_radio = new wxRadioBox( panel, ID_RADIOBOX, _T("T&his"), wxPoint(10,10), wxDefaultSize, WXSIZEOF(choices), choices, 1, wxRA_SPECIFY_COLS ); | |
f048e32f VZ |
813 | |
814 | #if wxUSE_TOOLTIPS | |
9f84eccd MB |
815 | m_combo->SetToolTip(_T("This is a natural\ncombobox - can you believe me?")); |
816 | m_radio->SetToolTip(_T("Ever seen a radiobox?")); | |
f048e32f VZ |
817 | #endif // wxUSE_TOOLTIPS |
818 | ||
9f84eccd MB |
819 | (void)new wxButton( panel, ID_RADIOBOX_SEL_NUM, _T("Select #&2"), wxPoint(180,30), wxSize(140,30) ); |
820 | (void)new wxButton( panel, ID_RADIOBOX_SEL_STR, _T("&Select 'This'"), wxPoint(180,80), wxSize(140,30) ); | |
821 | m_fontButton = new wxButton( panel, ID_SET_FONT, _T("Set &more Italic font"), wxPoint(340,30), wxSize(140,30) ); | |
822 | (void)new wxButton( panel, ID_RADIOBOX_FONT, _T("Set &Italic font"), wxPoint(340,80), wxSize(140,30) ); | |
823 | (void)new wxCheckBox( panel, ID_RADIOBOX_ENABLE, _T("&Disable"), wxPoint(340,130), wxDefaultSize ); | |
bc50a2ae | 824 | |
9f84eccd | 825 | wxRadioButton *rb = new wxRadioButton( panel, ID_RADIOBUTTON_1, _T("Radiobutton1"), wxPoint(210,170), wxDefaultSize, wxRB_GROUP ); |
9230b621 | 826 | rb->SetValue( false ); |
9f84eccd | 827 | (void)new wxRadioButton( panel, ID_RADIOBUTTON_2, _T("&Radiobutton2"), wxPoint(340,170), wxDefaultSize ); |
61c083e7 | 828 | m_book->AddPage(panel, _T("wxRadioBox"), false, Image_Radio); |
ec9f7884 | 829 | |
1dd815f3 | 830 | |
6bb44116 | 831 | #if wxUSE_SLIDER && wxUSE_GAUGE |
61c083e7 | 832 | panel = new wxPanel(m_book); |
0d29fecd | 833 | |
1dd815f3 RR |
834 | wxBoxSizer *main_sizer = new wxBoxSizer( wxHORIZONTAL ); |
835 | panel->SetSizer( main_sizer ); | |
0d29fecd | 836 | |
1dd815f3 RR |
837 | wxStaticBoxSizer *gauge_sizer = new wxStaticBoxSizer( wxHORIZONTAL, panel, _T("&wxGauge and wxSlider") ); |
838 | main_sizer->Add( gauge_sizer, 0, wxALL, 5 ); | |
839 | wxBoxSizer *sz = new wxBoxSizer( wxVERTICAL ); | |
840 | gauge_sizer->Add( sz ); | |
841 | m_gauge = new wxGauge( panel, wxID_ANY, 200, wxDefaultPosition, wxSize(155, 30), wxGA_HORIZONTAL|wxNO_BORDER ); | |
1dd815f3 | 842 | sz->Add( m_gauge, 0, wxALL, 10 ); |
bebc503c | 843 | m_slider = new wxSlider( panel, ID_SLIDER, 0, 0, 200, |
1dd815f3 | 844 | wxDefaultPosition, wxSize(155,wxDefaultCoord), |
bebc503c | 845 | wxSL_AUTOTICKS | wxSL_LABELS); |
7ba4fbeb | 846 | m_slider->SetTickFreq(40, 0); |
413d43d3 | 847 | #if wxUSE_TOOLTIPS |
8b1d8f36 | 848 | m_slider->SetToolTip(_T("This is a sliding slider")); |
413d43d3 | 849 | #endif // wxUSE_TOOLTIPS |
1dd815f3 | 850 | sz->Add( m_slider, 0, wxALL, 10 ); |
0d29fecd | 851 | |
1dd815f3 RR |
852 | m_gaugeVert = new wxGauge( panel, wxID_ANY, 100, |
853 | wxDefaultPosition, wxSize(wxDefaultCoord, 90), | |
854 | wxGA_VERTICAL | wxGA_SMOOTH | wxNO_BORDER ); | |
855 | gauge_sizer->Add( m_gaugeVert, 0, wxALL, 10 ); | |
856 | ||
8b1d8f36 | 857 | |
1dd815f3 RR |
858 | |
859 | wxStaticBox *sb = new wxStaticBox( panel, wxID_ANY, _T("&Explanation"), | |
860 | wxDefaultPosition, wxDefaultSize ); //, wxALIGN_CENTER ); | |
861 | wxStaticBoxSizer *wrapping_sizer = new wxStaticBoxSizer( sb, wxVERTICAL ); | |
862 | main_sizer->Add( wrapping_sizer, 0, wxALL, 5 ); | |
4d23a4bf | 863 | |
9838df2c | 864 | #ifdef __WXMOTIF__ |
ec9f7884 | 865 | // No wrapping text in wxStaticText yet :-( |
1dd815f3 | 866 | m_wrappingText = new wxStaticText( panel, wxID_ANY, |
9f84eccd | 867 | _T("Drag the slider!"), |
37ed3ae3 | 868 | wxPoint(250,30), |
422d0ff0 | 869 | wxSize(240, wxDefaultCoord) |
ec9f7884 | 870 | ); |
9838df2c | 871 | #else |
1dd815f3 RR |
872 | m_wrappingText = new wxStaticText( panel, wxID_ANY, |
873 | _T("In order see the gauge (aka progress bar) ") | |
874 | _T("control do something you have to drag the ") | |
875 | _T("handle of the slider to the right.") | |
876 | _T("\n\n") | |
877 | _T("This is also supposed to demonstrate how ") | |
878 | _T("to use static controls with line wrapping."), | |
879 | wxDefaultPosition, | |
a71d815b | 880 | wxSize(240, wxDefaultCoord) |
ec9f7884 | 881 | ); |
9838df2c | 882 | #endif |
1dd815f3 RR |
883 | wrapping_sizer->Add( m_wrappingText ); |
884 | ||
885 | wxStaticBoxSizer *non_wrapping_sizer = new wxStaticBoxSizer( wxVERTICAL, panel, wxT("Non-wrapping") ); | |
886 | main_sizer->Add( non_wrapping_sizer, 0, wxALL, 5 ); | |
887 | ||
888 | m_nonWrappingText = new wxStaticText( panel, wxID_ANY, | |
889 | _T("This static text has two lines.\nThey do not wrap."), | |
890 | wxDefaultPosition, | |
891 | wxDefaultSize | |
892 | ); | |
893 | non_wrapping_sizer->Add( m_nonWrappingText ); | |
894 | ||
895 | (void)new wxButton( panel, ID_BTNNEWTEXT, wxT("New text"), wxPoint(450, 160) ); | |
896 | ||
8c3c31d4 VZ |
897 | int initialSpinValue = -5; |
898 | wxString s; | |
899 | s << initialSpinValue; | |
422d0ff0 | 900 | m_spintext = new wxTextCtrl( panel, wxID_ANY, s, wxPoint(20,160), wxSize(80,wxDefaultCoord) ); |
0e528b99 | 901 | #if wxUSE_SPINBTN |
1dd815f3 | 902 | m_spinbutton = new wxSpinButton( panel, ID_SPIN, wxPoint(103,160) ); |
e94ff4cb | 903 | m_spinbutton->SetRange(-40,30); |
8c3c31d4 | 904 | m_spinbutton->SetValue(initialSpinValue); |
9726da4f | 905 | |
516ab399 | 906 | #if wxUSE_PROGRESSDLG |
9f84eccd | 907 | m_btnProgress = new wxButton( panel, ID_BTNPROGRESS, _T("&Show progress dialog"), |
738f9e5a | 908 | wxPoint(300, 160) ); |
516ab399 | 909 | #endif // wxUSE_PROGRESSDLG |
0e528b99 | 910 | #endif // wxUSE_SPINBTN |
b782f2e0 VZ |
911 | |
912 | #if wxUSE_SPINCTRL | |
a71d815b | 913 | m_spinctrl = new wxSpinCtrl( panel, ID_SPINCTRL, wxEmptyString, wxPoint(200, 160), wxSize(80, wxDefaultCoord) ); |
b782f2e0 VZ |
914 | m_spinctrl->SetRange(10,30); |
915 | m_spinctrl->SetValue(15); | |
916 | #endif // wxUSE_SPINCTRL | |
917 | ||
61c083e7 | 918 | m_book->AddPage(panel, _T("wxGauge"), false, Image_Gauge); |
6bb44116 | 919 | #endif // wxUSE_SLIDER && wxUSE_GAUGE |
45e41c05 | 920 | |
1dd815f3 | 921 | |
61c083e7 | 922 | panel = new wxPanel(m_book); |
b782f2e0 | 923 | |
3a5bcc4d | 924 | #if !defined(__WXMOTIF__) // wxStaticBitmap not working under Motif yet. |
389d906b | 925 | wxIcon icon = wxArtProvider::GetIcon(wxART_INFORMATION); |
9230b621 | 926 | (void) new wxStaticBitmap( panel, wxID_ANY, icon, wxPoint(10, 10) ); |
45e41c05 | 927 | |
bebe1443 | 928 | // VZ: don't leak memory |
9230b621 | 929 | // bmpStatic = new wxStaticBitmap(panel, wxID_ANY, wxNullIcon, wxPoint(50, 10)); |
bebe1443 | 930 | // bmpStatic->SetIcon(wxArtProvider::GetIcon(wxART_QUESTION)); |
b782f2e0 VZ |
931 | #endif // !Motif |
932 | ||
45e41c05 VZ |
933 | wxBitmap bitmap( 100, 100 ); |
934 | wxMemoryDC dc; | |
935 | dc.SelectObject( bitmap ); | |
936 | dc.SetPen(*wxGREEN_PEN); | |
f048e32f | 937 | dc.Clear(); |
45e41c05 | 938 | dc.DrawEllipse(5, 5, 90, 90); |
9f84eccd | 939 | dc.DrawText(_T("Bitmap"), 30, 40); |
45e41c05 VZ |
940 | dc.SelectObject( wxNullBitmap ); |
941 | ||
9121bed2 | 942 | (void)new wxBitmapButton(panel, ID_BITMAP_BTN, bitmap, wxPoint(100, 20)); |
bebc503c VZ |
943 | (void)new wxToggleButton(panel, ID_BITMAP_BTN_ENABLE, |
944 | _T("Enable/disable &bitmap"), wxPoint(100, 140)); | |
f048e32f | 945 | |
aae0472b | 946 | #if defined(__WXMSW__) || defined(__WXMOTIF__) |
3e2dd3db | 947 | // test for masked bitmap display |
9f84eccd | 948 | bitmap = wxBitmap(_T("test2.bmp"), wxBITMAP_TYPE_BMP); |
9bb3479c JS |
949 | if (bitmap.Ok()) |
950 | { | |
951 | bitmap.SetMask(new wxMask(bitmap, *wxBLUE)); | |
669f7a11 | 952 | |
bebc503c | 953 | (void)new wxStaticBitmap(panel, wxID_ANY, bitmap, wxPoint(300, 120)); |
9bb3479c | 954 | } |
57160afe | 955 | #endif |
5ef2e633 | 956 | |
389d906b VS |
957 | wxBitmap bmp1(wxArtProvider::GetBitmap(wxART_INFORMATION)), |
958 | bmp2(wxArtProvider::GetBitmap(wxART_WARNING)), | |
959 | bmp3(wxArtProvider::GetBitmap(wxART_QUESTION)); | |
f048e32f VZ |
960 | wxBitmapButton *bmpBtn = new wxBitmapButton |
961 | ( | |
9230b621 | 962 | panel, wxID_ANY, |
f048e32f | 963 | bmp1, |
1db8dc4a | 964 | wxPoint(30, 70) |
f048e32f | 965 | ); |
76fcf0f2 | 966 | |
f048e32f VZ |
967 | bmpBtn->SetBitmapSelected(bmp2); |
968 | bmpBtn->SetBitmapFocus(bmp3); | |
969 | ||
1db8dc4a | 970 | (void)new wxToggleButton(panel, ID_BUTTON_LABEL, |
9f84eccd | 971 | _T("&Toggle label"), wxPoint(250, 20)); |
bedaf53e | 972 | |
9230b621 | 973 | m_label = new wxStaticText(panel, wxID_ANY, _T("Label with some long text"), |
185fa6bf | 974 | wxPoint(250, 60), wxDefaultSize, |
f6bcfd97 | 975 | wxALIGN_RIGHT /*| wxST_NO_AUTORESIZE*/); |
103aab26 | 976 | m_label->SetForegroundColour( *wxBLUE ); |
2ac1b69a | 977 | |
61c083e7 | 978 | m_book->AddPage(panel, _T("wxBitmapXXX")); |
dcc71398 | 979 | |
9d9b7755 | 980 | // sizer |
dcc71398 | 981 | |
61c083e7 | 982 | panel = new wxPanel(m_book); |
9230b621 | 983 | panel->SetAutoLayout( true ); |
dcc71398 | 984 | |
2b5f62a0 VZ |
985 | wxBoxSizer *sizer = new wxBoxSizer( wxVERTICAL ); |
986 | ||
987 | wxStaticBoxSizer *csizer = | |
5014bb3a | 988 | new wxStaticBoxSizer (new wxStaticBox (panel, wxID_ANY, _T("Show Buttons")), wxHORIZONTAL ); |
61c083e7 | 989 | |
2b5f62a0 | 990 | wxCheckBox *check1, *check2, *check3, *check4, *check14, *checkBig; |
9f84eccd | 991 | check1 = new wxCheckBox (panel, ID_SIZER_CHECK1, _T("1")); |
9230b621 | 992 | check1->SetValue (true); |
2b5f62a0 | 993 | csizer->Add (check1); |
9f84eccd | 994 | check2 = new wxCheckBox (panel, ID_SIZER_CHECK2, _T("2")); |
9230b621 | 995 | check2->SetValue (true); |
2b5f62a0 | 996 | csizer->Add (check2); |
9f84eccd | 997 | check3 = new wxCheckBox (panel, ID_SIZER_CHECK3, _T("3")); |
9230b621 | 998 | check3->SetValue (true); |
2b5f62a0 | 999 | csizer->Add (check3); |
9f84eccd | 1000 | check4 = new wxCheckBox (panel, ID_SIZER_CHECK4, _T("4")); |
9230b621 | 1001 | check4->SetValue (true); |
2b5f62a0 | 1002 | csizer->Add (check4); |
9f84eccd | 1003 | check14 = new wxCheckBox (panel, ID_SIZER_CHECK14, _T("1-4")); |
9230b621 | 1004 | check14->SetValue (true); |
2b5f62a0 | 1005 | csizer->Add (check14); |
9f84eccd | 1006 | checkBig = new wxCheckBox (panel, ID_SIZER_CHECKBIG, _T("Big")); |
9230b621 | 1007 | checkBig->SetValue (true); |
2b5f62a0 | 1008 | csizer->Add (checkBig); |
61c083e7 | 1009 | |
2b5f62a0 VZ |
1010 | sizer->Add (csizer); |
1011 | ||
1012 | m_hsizer = new wxBoxSizer( wxHORIZONTAL ); | |
9d9b7755 | 1013 | |
2b5f62a0 | 1014 | m_buttonSizer = new wxBoxSizer (wxVERTICAL); |
61c083e7 | 1015 | |
3f93f659 | 1016 | m_sizerBtn1 = new wxButton(panel, wxID_ANY, _T("Test Button &1 (tab order 1)") ); |
2b5f62a0 | 1017 | m_buttonSizer->Add( m_sizerBtn1, 0, wxALL, 10 ); |
3f93f659 | 1018 | m_sizerBtn2 = new wxButton(panel, wxID_ANY, _T("Test Button &2 (tab order 3)") ); |
2b5f62a0 | 1019 | m_buttonSizer->Add( m_sizerBtn2, 0, wxALL, 10 ); |
3f93f659 | 1020 | m_sizerBtn3 = new wxButton(panel, wxID_ANY, _T("Test Button &3 (tab order 2)") ); |
2b5f62a0 | 1021 | m_buttonSizer->Add( m_sizerBtn3, 0, wxALL, 10 ); |
3f93f659 | 1022 | m_sizerBtn4 = new wxButton(panel, wxID_ANY, _T("Test Button &4 (tab order 4)") ); |
2b5f62a0 VZ |
1023 | m_buttonSizer->Add( m_sizerBtn4, 0, wxALL, 10 ); |
1024 | ||
3f93f659 VS |
1025 | m_sizerBtn3->MoveBeforeInTabOrder(m_sizerBtn2); |
1026 | ||
2b5f62a0 VZ |
1027 | m_hsizer->Add (m_buttonSizer); |
1028 | m_hsizer->Add( 20,20, 1 ); | |
9230b621 | 1029 | m_bigBtn = new wxButton(panel, wxID_ANY, _T("Multiline\nbutton") ); |
2b5f62a0 VZ |
1030 | m_hsizer->Add( m_bigBtn , 3, wxGROW|wxALL, 10 ); |
1031 | ||
1032 | sizer->Add (m_hsizer, 1, wxGROW); | |
9d9b7755 VZ |
1033 | |
1034 | panel->SetSizer( sizer ); | |
1035 | ||
61c083e7 | 1036 | m_book->AddPage(panel, _T("wxSizer")); |
655822f3 | 1037 | |
9ae19599 VZ |
1038 | // set the sizer for the panel itself |
1039 | sizer = new wxBoxSizer(wxVERTICAL); | |
1040 | sizer->Add(m_book, wxSizerFlags().Border().Expand()); | |
1041 | sizer->Add(m_text, wxSizerFlags(1).Border().Expand()); | |
1042 | SetSizer(sizer); | |
1c005ff7 RR |
1043 | } |
1044 | ||
f226be17 VZ |
1045 | void MyPanel::OnIdle(wxIdleEvent& event) |
1046 | { | |
1047 | static const int INVALID_SELECTION = -2; | |
1048 | ||
1049 | static int s_selCombo = INVALID_SELECTION; | |
1050 | int sel = m_combo->GetSelection(); | |
1051 | if ( sel != s_selCombo ) | |
1052 | { | |
1053 | if ( s_selCombo != INVALID_SELECTION ) | |
1054 | { | |
1055 | wxLogMessage(_T("EVT_IDLE: combobox selection changed from %d to %d"), | |
1056 | s_selCombo, sel); | |
1057 | } | |
1058 | ||
1059 | s_selCombo = sel; | |
1060 | } | |
1061 | ||
d6bbc10c VZ |
1062 | static int s_selChoice = INVALID_SELECTION; |
1063 | sel = m_choice->GetSelection(); | |
1064 | if ( sel != s_selChoice ) | |
1065 | { | |
1066 | if ( s_selChoice != INVALID_SELECTION ) | |
1067 | { | |
1068 | wxLogMessage(_T("EVT_IDLE: choice selection changed from %d to %d"), | |
1069 | s_selChoice, sel); | |
1070 | } | |
1071 | ||
1072 | s_selChoice = sel; | |
1073 | } | |
1074 | ||
f226be17 VZ |
1075 | event.Skip(); |
1076 | } | |
1077 | ||
61c083e7 | 1078 | void MyPanel::OnPageChanging( wxBookCtrlEvent &event ) |
4d0f3cd6 | 1079 | { |
45e41c05 VZ |
1080 | int selOld = event.GetOldSelection(); |
1081 | if ( selOld == 2 ) | |
4d0f3cd6 | 1082 | { |
9f84eccd MB |
1083 | if ( wxMessageBox(_T("This demonstrates how a program may prevent the\n") |
1084 | _T("page change from taking place - if you select\n") | |
1085 | _T("[No] the current page will stay the third one\n"), | |
1086 | _T("Control sample"), | |
f6bcfd97 | 1087 | wxICON_QUESTION | wxYES_NO, this) != wxYES ) |
8c3c31d4 VZ |
1088 | { |
1089 | event.Veto(); | |
45e41c05 | 1090 | |
8c3c31d4 VZ |
1091 | return; |
1092 | } | |
4d0f3cd6 | 1093 | } |
45e41c05 | 1094 | |
61c083e7 | 1095 | *m_text << _T("Book selection is being changed from ") << selOld |
9f84eccd | 1096 | << _T(" to ") << event.GetSelection() |
61c083e7 WS |
1097 | << _T(" (current page from book is ") |
1098 | << m_book->GetSelection() << _T(")\n"); | |
4d0f3cd6 VZ |
1099 | } |
1100 | ||
61c083e7 | 1101 | void MyPanel::OnPageChanged( wxBookCtrlEvent &event ) |
cb43b372 | 1102 | { |
61c083e7 WS |
1103 | *m_text << _T("Book selection is now ") << event.GetSelection() |
1104 | << _T(" (from book: ") << m_book->GetSelection() | |
9f84eccd | 1105 | << _T(")\n"); |
cb43b372 RR |
1106 | } |
1107 | ||
3e2dd3db VZ |
1108 | void MyPanel::OnTestButton(wxCommandEvent& event) |
1109 | { | |
1110 | wxLogMessage(_T("Button %c clicked."), | |
1111 | event.GetId() == ID_BUTTON_TEST1 ? _T('1') : _T('2')); | |
1112 | } | |
1113 | ||
87728739 | 1114 | void MyPanel::OnBmpButton(wxCommandEvent& WXUNUSED(event)) |
9121bed2 VZ |
1115 | { |
1116 | wxLogMessage(_T("Bitmap button clicked.")); | |
1117 | } | |
1118 | ||
bebc503c VZ |
1119 | void MyPanel::OnBmpButtonToggle(wxCommandEvent& event) |
1120 | { | |
1121 | FindWindow(ID_BITMAP_BTN)->Enable(!event.IsChecked()); | |
1122 | } | |
1123 | ||
87a1e308 VZ |
1124 | void MyPanel::OnChangeColour(wxCommandEvent& WXUNUSED(event)) |
1125 | { | |
1126 | static wxColour s_colOld; | |
1127 | ||
29c749b8 | 1128 | SetThemeEnabled(false); |
87a1e308 VZ |
1129 | // test panel colour changing and propagation to the subcontrols |
1130 | if ( s_colOld.Ok() ) | |
1131 | { | |
1132 | SetBackgroundColour(s_colOld); | |
1133 | s_colOld = wxNullColour; | |
1134 | ||
29c749b8 VS |
1135 | m_lbSelectThis->SetForegroundColour(wxNullColour); |
1136 | m_lbSelectThis->SetBackgroundColour(wxNullColour); | |
87a1e308 VZ |
1137 | } |
1138 | else | |
1139 | { | |
a60b1f5d MB |
1140 | s_colOld = wxColour(wxT("red")); |
1141 | SetBackgroundColour(wxT("white")); | |
87a1e308 | 1142 | |
a60b1f5d MB |
1143 | m_lbSelectThis->SetForegroundColour(wxT("white")); |
1144 | m_lbSelectThis->SetBackgroundColour(wxT("red")); | |
87a1e308 VZ |
1145 | } |
1146 | ||
1147 | m_lbSelectThis->Refresh(); | |
1148 | Refresh(); | |
1149 | } | |
1150 | ||
1c005ff7 RR |
1151 | void MyPanel::OnListBox( wxCommandEvent &event ) |
1152 | { | |
2e0e025e | 1153 | // GetParent()->Move(100, 100); |
e66ad5c6 | 1154 | |
846e1424 RR |
1155 | if (event.GetInt() == -1) |
1156 | { | |
9f84eccd | 1157 | m_text->AppendText( _T("ListBox has no selections anymore\n") ); |
846e1424 RR |
1158 | return; |
1159 | } | |
1160 | ||
6c8a980f VZ |
1161 | wxListBox *listbox = event.GetId() == ID_LISTBOX ? m_listbox |
1162 | : m_listboxSorted; | |
1163 | ||
9f84eccd | 1164 | m_text->AppendText( _T("ListBox event selection string is: '") ); |
ec9f7884 | 1165 | m_text->AppendText( event.GetString() ); |
9f84eccd MB |
1166 | m_text->AppendText( _T("'\n") ); |
1167 | m_text->AppendText( _T("ListBox control selection string is: '") ); | |
6c8a980f | 1168 | m_text->AppendText( listbox->GetStringSelection() ); |
9f84eccd | 1169 | m_text->AppendText( _T("'\n") ); |
6c8a980f VZ |
1170 | |
1171 | wxStringClientData *obj = ((wxStringClientData *)event.GetClientObject()); | |
9f84eccd | 1172 | m_text->AppendText( _T("ListBox event client data string is: '") ); |
6e47faf1 | 1173 | if (obj) // BC++ doesn't like use of '? .. : .. ' in this context |
74a533f7 | 1174 | m_text->AppendText( obj->GetData() ); |
6e47faf1 | 1175 | else |
9f84eccd | 1176 | m_text->AppendText( wxString(_T("none")) ); |
6e47faf1 | 1177 | |
9f84eccd MB |
1178 | m_text->AppendText( _T("'\n") ); |
1179 | m_text->AppendText( _T("ListBox control client data string is: '") ); | |
6c8a980f | 1180 | obj = (wxStringClientData *)listbox->GetClientObject(listbox->GetSelection()); |
6e47faf1 | 1181 | if (obj) |
74a533f7 | 1182 | m_text->AppendText( obj->GetData() ); |
6e47faf1 | 1183 | else |
9f84eccd MB |
1184 | m_text->AppendText( wxString(_T("none")) ); |
1185 | m_text->AppendText( _T("'\n") ); | |
1c005ff7 RR |
1186 | } |
1187 | ||
5b077d48 RR |
1188 | void MyPanel::OnListBoxDoubleClick( wxCommandEvent &event ) |
1189 | { | |
9f84eccd | 1190 | m_text->AppendText( _T("ListBox double click string is: ") ); |
ec9f7884 | 1191 | m_text->AppendText( event.GetString() ); |
9f84eccd | 1192 | m_text->AppendText( _T("\n") ); |
5b077d48 RR |
1193 | } |
1194 | ||
47908e25 RR |
1195 | void MyPanel::OnListBoxButtons( wxCommandEvent &event ) |
1196 | { | |
ec9f7884 | 1197 | switch (event.GetId()) |
d3904ceb | 1198 | { |
ec9f7884 VZ |
1199 | case ID_LISTBOX_ENABLE: |
1200 | { | |
9f84eccd | 1201 | m_text->AppendText(_T("Checkbox clicked.\n")); |
b8653fbf | 1202 | #if wxUSE_TOOLTIPS |
0ae0226b | 1203 | wxCheckBox *cb = (wxCheckBox*)event.GetEventObject(); |
ec9f7884 | 1204 | if (event.GetInt()) |
9f84eccd | 1205 | cb->SetToolTip( _T("Click to enable listbox") ); |
ec9f7884 | 1206 | else |
9f84eccd | 1207 | cb->SetToolTip( _T("Click to disable listbox") ); |
16f6dfd8 | 1208 | #endif // wxUSE_TOOLTIPS |
ec9f7884 | 1209 | m_listbox->Enable( event.GetInt() == 0 ); |
57160afe VZ |
1210 | m_lbSelectThis->Enable( event.GetInt() == 0 ); |
1211 | m_lbSelectNum->Enable( event.GetInt() == 0 ); | |
6c8a980f | 1212 | m_listboxSorted->Enable( event.GetInt() == 0 ); |
ee6e1b1d | 1213 | FindWindow(ID_CHANGE_COLOUR)->Enable( event.GetInt() == 0 ); |
ec9f7884 VZ |
1214 | break; |
1215 | } | |
1216 | case ID_LISTBOX_SEL_NUM: | |
1217 | { | |
91f2c154 JS |
1218 | if (m_listbox->GetCount() > 2) |
1219 | m_listbox->SetSelection( 2 ); | |
1220 | if (m_listboxSorted->GetCount() > 2) | |
1221 | m_listboxSorted->SetSelection( 2 ); | |
8c3c31d4 | 1222 | m_lbSelectThis->WarpPointer( 40, 14 ); |
ec9f7884 VZ |
1223 | break; |
1224 | } | |
1225 | case ID_LISTBOX_SEL_STR: | |
1226 | { | |
5014bb3a | 1227 | if (m_listbox->FindString(_T("This")) != wxNOT_FOUND) |
91f2c154 | 1228 | m_listbox->SetStringSelection( _T("This") ); |
5014bb3a | 1229 | if (m_listboxSorted->FindString(_T("This")) != wxNOT_FOUND) |
91f2c154 | 1230 | m_listboxSorted->SetStringSelection( _T("This") ); |
8c3c31d4 | 1231 | m_lbSelectNum->WarpPointer( 40, 14 ); |
ec9f7884 VZ |
1232 | break; |
1233 | } | |
1234 | case ID_LISTBOX_CLEAR: | |
1235 | { | |
1236 | m_listbox->Clear(); | |
6c8a980f | 1237 | m_listboxSorted->Clear(); |
ec9f7884 VZ |
1238 | break; |
1239 | } | |
1240 | case ID_LISTBOX_APPEND: | |
1241 | { | |
9f84eccd MB |
1242 | m_listbox->Append( _T("Hi!") ); |
1243 | m_listboxSorted->Append( _T("Hi!") ); | |
ec9f7884 VZ |
1244 | break; |
1245 | } | |
1246 | case ID_LISTBOX_DELETE: | |
1247 | { | |
6c8a980f VZ |
1248 | int idx; |
1249 | idx = m_listbox->GetSelection(); | |
f6bcfd97 BP |
1250 | if ( idx != wxNOT_FOUND ) |
1251 | m_listbox->Delete( idx ); | |
6c8a980f | 1252 | idx = m_listboxSorted->GetSelection(); |
f6bcfd97 BP |
1253 | if ( idx != wxNOT_FOUND ) |
1254 | m_listboxSorted->Delete( idx ); | |
ec9f7884 VZ |
1255 | break; |
1256 | } | |
1257 | case ID_LISTBOX_FONT: | |
1258 | { | |
1259 | m_listbox->SetFont( *wxITALIC_FONT ); | |
6c8a980f | 1260 | m_listboxSorted->SetFont( *wxITALIC_FONT ); |
ec9f7884 VZ |
1261 | m_checkbox->SetFont( *wxITALIC_FONT ); |
1262 | break; | |
1263 | } | |
868a2826 | 1264 | } |
47908e25 RR |
1265 | } |
1266 | ||
1ccd23f5 | 1267 | #if wxUSE_CHOICE |
bc50a2ae VZ |
1268 | |
1269 | static const wxChar *GetDataString(wxClientData *data) | |
1270 | { | |
1271 | return data ? wx_static_cast(wxStringClientData *, data)->GetData().c_str() | |
1272 | : _T("none"); | |
1273 | } | |
1274 | ||
47908e25 RR |
1275 | void MyPanel::OnChoice( wxCommandEvent &event ) |
1276 | { | |
6c8a980f VZ |
1277 | wxChoice *choice = event.GetId() == ID_CHOICE ? m_choice |
1278 | : m_choiceSorted; | |
1279 | ||
bc50a2ae | 1280 | const int sel = choice->GetSelection(); |
6c8a980f | 1281 | |
bc50a2ae VZ |
1282 | wxClientData *dataEvt = event.GetClientObject(), |
1283 | *dataCtrl = choice->GetClientObject(sel); | |
6e47faf1 | 1284 | |
bc50a2ae VZ |
1285 | wxLogMessage(_T("EVT_CHOICE: item %d/%d (event/control), ") |
1286 | _T("string \"%s\"/\"%s\", ") | |
1287 | _T("data \"%s\"/\"%s\""), | |
1288 | (int)event.GetInt(), | |
1289 | sel, | |
1290 | event.GetString().c_str(), | |
1291 | choice->GetStringSelection().c_str(), | |
1292 | GetDataString(dataEvt), | |
1293 | GetDataString(dataCtrl)); | |
47908e25 RR |
1294 | } |
1295 | ||
1296 | void MyPanel::OnChoiceButtons( wxCommandEvent &event ) | |
1297 | { | |
ec9f7884 | 1298 | switch (event.GetId()) |
47908e25 | 1299 | { |
ec9f7884 VZ |
1300 | case ID_CHOICE_ENABLE: |
1301 | { | |
1302 | m_choice->Enable( event.GetInt() == 0 ); | |
b56c2246 | 1303 | m_choiceSorted->Enable( event.GetInt() == 0 ); |
ec9f7884 VZ |
1304 | break; |
1305 | } | |
1306 | case ID_CHOICE_SEL_NUM: | |
1307 | { | |
1308 | m_choice->SetSelection( 2 ); | |
b56c2246 | 1309 | m_choiceSorted->SetSelection( 2 ); |
ec9f7884 VZ |
1310 | break; |
1311 | } | |
1312 | case ID_CHOICE_SEL_STR: | |
1313 | { | |
9f84eccd MB |
1314 | m_choice->SetStringSelection( _T("This") ); |
1315 | m_choiceSorted->SetStringSelection( _T("This") ); | |
ec9f7884 VZ |
1316 | break; |
1317 | } | |
1318 | case ID_CHOICE_CLEAR: | |
1319 | { | |
1320 | m_choice->Clear(); | |
b56c2246 | 1321 | m_choiceSorted->Clear(); |
ec9f7884 VZ |
1322 | break; |
1323 | } | |
1324 | case ID_CHOICE_APPEND: | |
1325 | { | |
9f84eccd MB |
1326 | m_choice->Append( _T("Hi!") ); |
1327 | m_choiceSorted->Append( _T("Hi!") ); | |
ec9f7884 VZ |
1328 | break; |
1329 | } | |
1330 | case ID_CHOICE_DELETE: | |
1331 | { | |
1332 | int idx = m_choice->GetSelection(); | |
f6bcfd97 BP |
1333 | if ( idx != wxNOT_FOUND ) |
1334 | m_choice->Delete( idx ); | |
b56c2246 | 1335 | idx = m_choiceSorted->GetSelection(); |
f6bcfd97 BP |
1336 | if ( idx != wxNOT_FOUND ) |
1337 | m_choiceSorted->Delete( idx ); | |
ec9f7884 VZ |
1338 | break; |
1339 | } | |
1340 | case ID_CHOICE_FONT: | |
1341 | { | |
1342 | m_choice->SetFont( *wxITALIC_FONT ); | |
b56c2246 | 1343 | m_choiceSorted->SetFont( *wxITALIC_FONT ); |
ec9f7884 VZ |
1344 | break; |
1345 | } | |
868a2826 | 1346 | } |
47908e25 | 1347 | } |
1ccd23f5 | 1348 | #endif // wxUSE_CHOICE |
47908e25 RR |
1349 | |
1350 | void MyPanel::OnCombo( wxCommandEvent &event ) | |
1351 | { | |
f226be17 | 1352 | wxLogMessage(_T("EVT_COMBOBOX: item %d/%d (event/control), string \"%s\"/\"%s\""), |
0d29fecd | 1353 | (int)event.GetInt(), |
f226be17 VZ |
1354 | m_combo->GetSelection(), |
1355 | event.GetString().c_str(), | |
1356 | m_combo->GetStringSelection().c_str()); | |
47908e25 RR |
1357 | } |
1358 | ||
27ff87da | 1359 | void MyPanel::OnComboTextChanged(wxCommandEvent& event) |
f6bcfd97 | 1360 | { |
f226be17 VZ |
1361 | wxLogMessage(wxT("EVT_TEXT for the combobox: \"%s\" (event) or \"%s\" (control)."), |
1362 | event.GetString().c_str(), | |
1363 | m_combo->GetValue().c_str()); | |
f6bcfd97 BP |
1364 | } |
1365 | ||
1366 | void MyPanel::OnComboTextEnter(wxCommandEvent& WXUNUSED(event)) | |
1367 | { | |
1368 | wxLogMessage(_T("Enter pressed in the combobox: value is '%s'."), | |
1369 | m_combo->GetValue().c_str()); | |
1370 | } | |
1371 | ||
47908e25 | 1372 | void MyPanel::OnComboButtons( wxCommandEvent &event ) |
1c005ff7 | 1373 | { |
ec9f7884 | 1374 | switch (event.GetId()) |
2f6407b9 | 1375 | { |
ec9f7884 VZ |
1376 | case ID_COMBO_ENABLE: |
1377 | { | |
1378 | m_combo->Enable( event.GetInt() == 0 ); | |
1379 | break; | |
1380 | } | |
1381 | case ID_COMBO_SEL_NUM: | |
1382 | { | |
1383 | m_combo->SetSelection( 2 ); | |
1384 | break; | |
1385 | } | |
1386 | case ID_COMBO_SEL_STR: | |
1387 | { | |
9f84eccd | 1388 | m_combo->SetStringSelection( _T("This") ); |
ec9f7884 VZ |
1389 | break; |
1390 | } | |
1391 | case ID_COMBO_CLEAR: | |
1392 | { | |
1393 | m_combo->Clear(); | |
1394 | break; | |
1395 | } | |
1396 | case ID_COMBO_APPEND: | |
1397 | { | |
9f84eccd | 1398 | m_combo->Append( _T("Hi!") ); |
ec9f7884 VZ |
1399 | break; |
1400 | } | |
1401 | case ID_COMBO_DELETE: | |
1402 | { | |
1403 | int idx = m_combo->GetSelection(); | |
1404 | m_combo->Delete( idx ); | |
1405 | break; | |
1406 | } | |
1407 | case ID_COMBO_FONT: | |
1408 | { | |
1409 | m_combo->SetFont( *wxITALIC_FONT ); | |
1410 | break; | |
1411 | } | |
cc7e9e20 RR |
1412 | case ID_COMBO_SET_TEXT: |
1413 | { | |
1414 | m_combo->SetString( 2, wxT("Hi!") ); | |
1415 | break; | |
1416 | } | |
868a2826 | 1417 | } |
47908e25 RR |
1418 | } |
1419 | ||
1420 | void MyPanel::OnRadio( wxCommandEvent &event ) | |
1421 | { | |
9f84eccd | 1422 | m_text->AppendText( _T("RadioBox selection string is: ") ); |
ec9f7884 | 1423 | m_text->AppendText( event.GetString() ); |
9f84eccd | 1424 | m_text->AppendText( _T("\n") ); |
47908e25 RR |
1425 | } |
1426 | ||
a48b9bfb VZ |
1427 | void MyPanel::OnRadioButton1( wxCommandEvent & WXUNUSED(event) ) |
1428 | { | |
1429 | wxMessageBox(_T("First wxRadioButton selected."), _T("wxControl sample")); | |
1430 | } | |
1431 | ||
1432 | void MyPanel::OnRadioButton2( wxCommandEvent & WXUNUSED(event) ) | |
1433 | { | |
1434 | m_text->AppendText(_T("Second wxRadioButton selected.\n")); | |
1435 | } | |
1436 | ||
47908e25 RR |
1437 | void MyPanel::OnRadioButtons( wxCommandEvent &event ) |
1438 | { | |
ec9f7884 | 1439 | switch (event.GetId()) |
d3904ceb | 1440 | { |
ec9f7884 | 1441 | case ID_RADIOBOX_ENABLE: |
7891b4d4 VZ |
1442 | m_radio->Enable( event.GetInt() == 0 ); |
1443 | break; | |
1444 | ||
ec9f7884 | 1445 | case ID_RADIOBOX_SEL_NUM: |
7891b4d4 VZ |
1446 | m_radio->SetSelection( 2 ); |
1447 | break; | |
1448 | ||
ec9f7884 | 1449 | case ID_RADIOBOX_SEL_STR: |
7891b4d4 VZ |
1450 | m_radio->SetStringSelection( _T("This") ); |
1451 | break; | |
8b1d8f36 | 1452 | |
7891b4d4 VZ |
1453 | case ID_RADIOBOX_FONT: |
1454 | m_radio->SetFont( *wxITALIC_FONT ); | |
1455 | break; | |
868a2826 | 1456 | } |
1c005ff7 RR |
1457 | } |
1458 | ||
868a2826 RR |
1459 | void MyPanel::OnSetFont( wxCommandEvent &WXUNUSED(event) ) |
1460 | { | |
ec9f7884 VZ |
1461 | m_fontButton->SetFont( *wxITALIC_FONT ); |
1462 | m_text->SetFont( *wxITALIC_FONT ); | |
868a2826 RR |
1463 | } |
1464 | ||
1db8dc4a | 1465 | void MyPanel::OnUpdateLabel( wxCommandEvent &event ) |
185fa6bf | 1466 | { |
9f84eccd MB |
1467 | m_label->SetLabel(event.GetInt() ? _T("Very very very very very long text.") |
1468 | : _T("Shorter text.")); | |
185fa6bf VZ |
1469 | } |
1470 | ||
6bb44116 WS |
1471 | #if wxUSE_SLIDER |
1472 | ||
7bce6aec RR |
1473 | void MyPanel::OnSliderUpdate( wxCommandEvent &WXUNUSED(event) ) |
1474 | { | |
516ab399 | 1475 | #if wxUSE_GAUGE |
ec9f7884 | 1476 | m_gauge->SetValue( m_slider->GetValue() ); |
37ed3ae3 | 1477 | m_gaugeVert->SetValue( m_slider->GetValue() / 2 ); |
516ab399 | 1478 | #endif // wxUSE_GAUGE |
7bce6aec RR |
1479 | } |
1480 | ||
6bb44116 WS |
1481 | #endif // wxUSE_SLIDER |
1482 | ||
baccb514 VZ |
1483 | #if wxUSE_SPINCTRL |
1484 | ||
76106901 VZ |
1485 | void MyPanel::OnSpinCtrlText(wxCommandEvent& event) |
1486 | { | |
1487 | if ( m_spinctrl ) | |
1488 | { | |
1489 | wxString s; | |
508d586e MB |
1490 | s.Printf( _T("Spin ctrl text changed: now %d (from event: %s)\n"), |
1491 | m_spinctrl->GetValue(), event.GetString().c_str() ); | |
76106901 VZ |
1492 | m_text->AppendText(s); |
1493 | } | |
1494 | } | |
1495 | ||
457e6c54 | 1496 | void MyPanel::OnSpinCtrl(wxSpinEvent& event) |
baccb514 | 1497 | { |
76106901 VZ |
1498 | if ( m_spinctrl ) |
1499 | { | |
1500 | wxString s; | |
508d586e MB |
1501 | s.Printf( _T("Spin ctrl changed: now %d (from event: %ld)\n"), |
1502 | m_spinctrl->GetValue(), event.GetInt() ); | |
76106901 VZ |
1503 | m_text->AppendText(s); |
1504 | } | |
1505 | } | |
1506 | ||
1507 | void MyPanel::OnSpinCtrlUp(wxSpinEvent& event) | |
1508 | { | |
1509 | if ( m_spinctrl ) | |
1510 | { | |
508d586e MB |
1511 | m_text->AppendText( wxString::Format( |
1512 | _T("Spin up: %d (from event: %ld)\n"), | |
1513 | m_spinctrl->GetValue(), event.GetInt() ) ); | |
76106901 VZ |
1514 | } |
1515 | } | |
1516 | ||
1517 | void MyPanel::OnSpinCtrlDown(wxSpinEvent& event) | |
1518 | { | |
1519 | if ( m_spinctrl ) | |
1520 | { | |
508d586e MB |
1521 | m_text->AppendText( wxString::Format( |
1522 | _T("Spin down: %d (from event: %ld)\n"), | |
1523 | m_spinctrl->GetValue(), event.GetInt() ) ); | |
76106901 | 1524 | } |
baccb514 VZ |
1525 | } |
1526 | ||
1527 | #endif // wxUSE_SPINCTRL | |
1528 | ||
0e528b99 | 1529 | #if wxUSE_SPINBTN |
8c3c31d4 VZ |
1530 | void MyPanel::OnSpinUp( wxSpinEvent &event ) |
1531 | { | |
1532 | wxString value; | |
1533 | value.Printf( _T("Spin control up: current = %d\n"), | |
1534 | m_spinbutton->GetValue()); | |
1535 | ||
e94ff4cb | 1536 | if ( event.GetPosition() > 17 ) |
8c3c31d4 VZ |
1537 | { |
1538 | value += _T("Preventing the spin button from going above 17.\n"); | |
1539 | ||
1540 | event.Veto(); | |
1541 | } | |
1542 | ||
1543 | m_text->AppendText(value); | |
1544 | } | |
1545 | ||
1546 | void MyPanel::OnSpinDown( wxSpinEvent &event ) | |
1547 | { | |
1548 | wxString value; | |
1549 | value.Printf( _T("Spin control down: current = %d\n"), | |
1550 | m_spinbutton->GetValue()); | |
1551 | ||
e94ff4cb | 1552 | if ( event.GetPosition() < -17 ) |
8c3c31d4 VZ |
1553 | { |
1554 | value += _T("Preventing the spin button from going below -17.\n"); | |
1555 | ||
1556 | event.Veto(); | |
1557 | } | |
1558 | ||
1559 | m_text->AppendText(value); | |
1560 | } | |
1561 | ||
e380f72b RR |
1562 | void MyPanel::OnSpinUpdate( wxSpinEvent &event ) |
1563 | { | |
ec9f7884 | 1564 | wxString value; |
f70d5829 | 1565 | value.Printf( _T("%d"), event.GetPosition() ); |
ec9f7884 | 1566 | m_spintext->SetValue( value ); |
6380910c | 1567 | |
f70d5829 | 1568 | value.Printf( _T("Spin control range: (%d, %d), current = %d\n"), |
6380910c VZ |
1569 | m_spinbutton->GetMin(), m_spinbutton->GetMax(), |
1570 | m_spinbutton->GetValue()); | |
1571 | ||
1572 | m_text->AppendText(value); | |
e380f72b | 1573 | } |
9726da4f | 1574 | |
fe1bc285 | 1575 | void MyPanel::OnNewText( wxCommandEvent& /* event */) |
1dd815f3 RR |
1576 | { |
1577 | m_nonWrappingText->SetLabel( wxT("This text is short\nbut still spans\nover three lines.") ); | |
1578 | m_wrappingText->SetLabel( wxT("This text is short but will still be wrapped if it is too long.") ); | |
1579 | m_wrappingText->GetParent()->Layout(); | |
1580 | } | |
1581 | ||
516ab399 WS |
1582 | #if wxUSE_PROGRESSDLG |
1583 | ||
9726da4f VZ |
1584 | void MyPanel::OnUpdateShowProgress( wxUpdateUIEvent& event ) |
1585 | { | |
1586 | event.Enable( m_spinbutton->GetValue() > 0 ); | |
1587 | } | |
1588 | ||
1589 | void MyPanel::OnShowProgress( wxCommandEvent& WXUNUSED(event) ) | |
1590 | { | |
1591 | int max = m_spinbutton->GetValue(); | |
61c083e7 | 1592 | |
601964ff VS |
1593 | if ( max <= 0 ) |
1594 | { | |
1595 | wxLogError(_T("You must set positive range!")); | |
1596 | return; | |
1597 | } | |
61c083e7 | 1598 | |
9f84eccd MB |
1599 | wxProgressDialog dialog(_T("Progress dialog example"), |
1600 | _T("An informative message"), | |
9726da4f VZ |
1601 | max, // range |
1602 | this, // parent | |
8c3c31d4 | 1603 | wxPD_CAN_ABORT | |
2c8e4738 | 1604 | wxPD_AUTO_HIDE | |
8c3c31d4 VZ |
1605 | wxPD_APP_MODAL | |
1606 | wxPD_ELAPSED_TIME | | |
1607 | wxPD_ESTIMATED_TIME | | |
1608 | wxPD_REMAINING_TIME); | |
2ac1b69a | 1609 | |
9726da4f | 1610 | |
9230b621 | 1611 | bool cont = true; |
abceee76 | 1612 | for ( int i = 0; i <= max && cont; i++ ) |
9726da4f VZ |
1613 | { |
1614 | wxSleep(1); | |
abceee76 | 1615 | if ( i == max ) |
be9abe3f | 1616 | { |
9f84eccd | 1617 | cont = dialog.Update(i, _T("That's all, folks!")); |
be9abe3f VZ |
1618 | } |
1619 | else if ( i == max / 2 ) | |
9726da4f | 1620 | { |
9f84eccd | 1621 | cont = dialog.Update(i, _T("Only a half left (very long message)!")); |
9726da4f VZ |
1622 | } |
1623 | else | |
1624 | { | |
1625 | cont = dialog.Update(i); | |
1626 | } | |
1627 | } | |
1628 | ||
1629 | if ( !cont ) | |
1630 | { | |
9f84eccd | 1631 | *m_text << _T("Progress dialog aborted!\n"); |
9726da4f VZ |
1632 | } |
1633 | else | |
1634 | { | |
9f84eccd | 1635 | *m_text << _T("Countdown from ") << max << _T(" finished.\n"); |
9726da4f VZ |
1636 | } |
1637 | } | |
1638 | ||
516ab399 | 1639 | #endif // wxUSE_PROGRESSDLG |
0e528b99 | 1640 | #endif // wxUSE_SPINBTN |
e380f72b | 1641 | |
2b5f62a0 VZ |
1642 | void MyPanel::OnSizerCheck( wxCommandEvent &event) |
1643 | { | |
1644 | switch (event.GetId ()) { | |
1645 | case ID_SIZER_CHECK1: | |
1646 | m_buttonSizer->Show (m_sizerBtn1, event.IsChecked ()); | |
1647 | m_buttonSizer->Layout (); | |
1648 | break; | |
1649 | case ID_SIZER_CHECK2: | |
1650 | m_buttonSizer->Show (m_sizerBtn2, event.IsChecked ()); | |
1651 | m_buttonSizer->Layout (); | |
1652 | break; | |
1653 | case ID_SIZER_CHECK3: | |
1654 | m_buttonSizer->Show (m_sizerBtn3, event.IsChecked ()); | |
1655 | m_buttonSizer->Layout (); | |
1656 | break; | |
1657 | case ID_SIZER_CHECK4: | |
1658 | m_buttonSizer->Show (m_sizerBtn4, event.IsChecked ()); | |
1659 | m_buttonSizer->Layout (); | |
1660 | break; | |
1661 | case ID_SIZER_CHECK14: | |
1662 | m_hsizer->Show (m_buttonSizer, event.IsChecked ()); | |
1663 | m_hsizer->Layout (); | |
1664 | break; | |
1665 | case ID_SIZER_CHECKBIG: | |
1666 | m_hsizer->Show (m_bigBtn, event.IsChecked ()); | |
1667 | m_hsizer->Layout (); | |
1668 | break; | |
1669 | } | |
1670 | ||
1671 | } | |
1672 | ||
2cb21a45 VZ |
1673 | MyPanel::~MyPanel() |
1674 | { | |
29e7e51a VZ |
1675 | //wxLog::RemoveTraceMask(_T("focus")); |
1676 | delete wxLog::SetActiveTarget(m_logTargetOld); | |
1677 | ||
61c083e7 | 1678 | delete m_book->GetImageList(); |
2cb21a45 VZ |
1679 | } |
1680 | ||
1c005ff7 RR |
1681 | //---------------------------------------------------------------------- |
1682 | // MyFrame | |
1683 | //---------------------------------------------------------------------- | |
1684 | ||
1685 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
3e2dd3db VZ |
1686 | EVT_MENU(CONTROLS_QUIT, MyFrame::OnQuit) |
1687 | EVT_MENU(CONTROLS_ABOUT, MyFrame::OnAbout) | |
1688 | EVT_MENU(CONTROLS_CLEAR_LOG, MyFrame::OnClearLog) | |
16f6dfd8 | 1689 | #if wxUSE_TOOLTIPS |
3e2dd3db VZ |
1690 | EVT_MENU(CONTROLS_SET_TOOLTIP_DELAY, MyFrame::OnSetTooltipDelay) |
1691 | EVT_MENU(CONTROLS_ENABLE_TOOLTIPS, MyFrame::OnToggleTooltips) | |
16f6dfd8 | 1692 | #endif // wxUSE_TOOLTIPS |
87a1e308 | 1693 | |
3e2dd3db | 1694 | EVT_MENU(CONTROLS_ENABLE_ALL, MyFrame::OnEnableAll) |
87a1e308 | 1695 | |
35960bbf VZ |
1696 | EVT_ICONIZE(MyFrame::OnIconized) |
1697 | EVT_MAXIMIZE(MyFrame::OnMaximized) | |
87a1e308 | 1698 | EVT_SIZE(MyFrame::OnSize) |
97206645 VZ |
1699 | EVT_MOVE(MyFrame::OnMove) |
1700 | ||
87a1e308 | 1701 | EVT_IDLE(MyFrame::OnIdle) |
1c005ff7 RR |
1702 | END_EVENT_TABLE() |
1703 | ||
9f84eccd | 1704 | MyFrame::MyFrame(const wxChar *title, int x, int y) |
9230b621 | 1705 | : wxFrame(NULL, wxID_ANY, title, wxPoint(x, y), wxSize(500, 430)) |
1c005ff7 | 1706 | { |
7bfc22f6 VZ |
1707 | // Give it an icon |
1708 | // The wxICON() macros loads an icon from a resource under Windows | |
1709 | // and uses an #included XPM image under GTK+ and Motif | |
1710 | ||
cbf3565d | 1711 | #ifdef USE_XPM |
7bfc22f6 | 1712 | SetIcon( wxICON(mondrian) ); |
cbf3565d | 1713 | #endif |
7bfc22f6 VZ |
1714 | |
1715 | wxMenu *file_menu = new wxMenu; | |
1716 | ||
9f84eccd | 1717 | file_menu->Append(CONTROLS_CLEAR_LOG, _T("&Clear log\tCtrl-L")); |
7bfc22f6 | 1718 | file_menu->AppendSeparator(); |
9f84eccd | 1719 | file_menu->Append(CONTROLS_ABOUT, _T("&About\tF1")); |
7bfc22f6 | 1720 | file_menu->AppendSeparator(); |
9f84eccd | 1721 | file_menu->Append(CONTROLS_QUIT, _T("E&xit\tAlt-X"), _T("Quit controls sample")); |
7bfc22f6 VZ |
1722 | |
1723 | wxMenuBar *menu_bar = new wxMenuBar; | |
9f84eccd | 1724 | menu_bar->Append(file_menu, _T("&File")); |
7bfc22f6 VZ |
1725 | |
1726 | #if wxUSE_TOOLTIPS | |
1727 | wxMenu *tooltip_menu = new wxMenu; | |
9f84eccd | 1728 | tooltip_menu->Append(CONTROLS_SET_TOOLTIP_DELAY, _T("Set &delay\tCtrl-D")); |
7bfc22f6 | 1729 | tooltip_menu->AppendSeparator(); |
9f84eccd | 1730 | tooltip_menu->Append(CONTROLS_ENABLE_TOOLTIPS, _T("&Toggle tooltips\tCtrl-T"), |
9230b621 VS |
1731 | _T("enable/disable tooltips"), true); |
1732 | tooltip_menu->Check(CONTROLS_ENABLE_TOOLTIPS, true); | |
9f84eccd | 1733 | menu_bar->Append(tooltip_menu, _T("&Tooltips")); |
7bfc22f6 VZ |
1734 | #endif // wxUSE_TOOLTIPS |
1735 | ||
1736 | wxMenu *panel_menu = new wxMenu; | |
9f84eccd | 1737 | panel_menu->Append(CONTROLS_ENABLE_ALL, _T("&Disable all\tCtrl-E"), |
9230b621 | 1738 | _T("Enable/disable all panel controls"), true); |
9f84eccd | 1739 | menu_bar->Append(panel_menu, _T("&Panel")); |
7bfc22f6 VZ |
1740 | |
1741 | SetMenuBar(menu_bar); | |
1742 | ||
960a83cc | 1743 | #if wxUSE_STATUSBAR |
5fb9fcfc | 1744 | CreateStatusBar(2); |
960a83cc | 1745 | #endif // wxUSE_STATUSBAR |
9f3362c4 | 1746 | |
87a1e308 | 1747 | m_panel = new MyPanel( this, 10, 10, 300, 100 ); |
7bfc22f6 VZ |
1748 | |
1749 | SetSizeHints( 500, 425 ); | |
1c005ff7 RR |
1750 | } |
1751 | ||
1752 | void MyFrame::OnQuit (wxCommandEvent& WXUNUSED(event) ) | |
1753 | { | |
9230b621 | 1754 | Close(true); |
1c005ff7 RR |
1755 | } |
1756 | ||
1757 | void MyFrame::OnAbout( wxCommandEvent& WXUNUSED(event) ) | |
1758 | { | |
abceee76 VZ |
1759 | wxBusyCursor bc; |
1760 | ||
9f84eccd | 1761 | wxMessageDialog dialog(this, _T("This is a control sample"), _T("About Controls"), wxOK ); |
ec9f7884 | 1762 | dialog.ShowModal(); |
1c005ff7 | 1763 | } |
9f3362c4 | 1764 | |
3e2dd3db VZ |
1765 | void MyFrame::OnClearLog(wxCommandEvent& WXUNUSED(event)) |
1766 | { | |
1767 | m_panel->m_text->Clear(); | |
1768 | } | |
1769 | ||
16f6dfd8 | 1770 | #if wxUSE_TOOLTIPS |
87728739 | 1771 | void MyFrame::OnSetTooltipDelay(wxCommandEvent& WXUNUSED(event)) |
16f6dfd8 VZ |
1772 | { |
1773 | static long s_delay = 5000; | |
1774 | ||
1775 | wxString delay; | |
f70d5829 | 1776 | delay.Printf( _T("%ld"), s_delay); |
16f6dfd8 | 1777 | |
9f84eccd MB |
1778 | delay = wxGetTextFromUser(_T("Enter delay (in milliseconds)"), |
1779 | _T("Set tooltip delay"), | |
ec9f7884 VZ |
1780 | delay, |
1781 | this); | |
16f6dfd8 VZ |
1782 | if ( !delay ) |
1783 | return; // cancelled | |
1784 | ||
f70d5829 | 1785 | wxSscanf(delay, _T("%ld"), &s_delay); |
16f6dfd8 VZ |
1786 | |
1787 | wxToolTip::SetDelay(s_delay); | |
1788 | ||
f70d5829 | 1789 | wxLogStatus(this, _T("Tooltip delay set to %ld milliseconds"), s_delay); |
16f6dfd8 VZ |
1790 | } |
1791 | ||
87728739 | 1792 | void MyFrame::OnToggleTooltips(wxCommandEvent& WXUNUSED(event)) |
16f6dfd8 | 1793 | { |
9230b621 | 1794 | static bool s_enabled = true; |
16f6dfd8 VZ |
1795 | |
1796 | s_enabled = !s_enabled; | |
1797 | ||
1798 | wxToolTip::Enable(s_enabled); | |
1799 | ||
f70d5829 | 1800 | wxLogStatus(this, _T("Tooltips %sabled"), s_enabled ? _T("en") : _T("dis") ); |
16f6dfd8 VZ |
1801 | } |
1802 | #endif // tooltips | |
1803 | ||
87a1e308 VZ |
1804 | void MyFrame::OnEnableAll(wxCommandEvent& WXUNUSED(event)) |
1805 | { | |
9230b621 | 1806 | static bool s_enable = true; |
87a1e308 VZ |
1807 | |
1808 | s_enable = !s_enable; | |
1809 | m_panel->Enable(s_enable); | |
1810 | } | |
1811 | ||
97206645 VZ |
1812 | void MyFrame::OnMove( wxMoveEvent& event ) |
1813 | { | |
960a83cc | 1814 | #if wxUSE_STATUSBAR |
97206645 | 1815 | UpdateStatusBar(event.GetPosition(), GetSize()); |
960a83cc | 1816 | #endif // wxUSE_STATUSBAR |
97206645 VZ |
1817 | |
1818 | event.Skip(); | |
1819 | } | |
1820 | ||
35960bbf VZ |
1821 | void MyFrame::OnIconized( wxIconizeEvent& event ) |
1822 | { | |
1823 | wxLogMessage(_T("Frame %s"), event.Iconized() ? _T("iconized") | |
1824 | : _T("restored")); | |
1825 | event.Skip(); | |
1826 | } | |
1827 | ||
1828 | void MyFrame::OnMaximized( wxMaximizeEvent& WXUNUSED(event) ) | |
1829 | { | |
1830 | wxLogMessage(_T("Frame maximized")); | |
1831 | } | |
1832 | ||
5fb9fcfc VZ |
1833 | void MyFrame::OnSize( wxSizeEvent& event ) |
1834 | { | |
960a83cc | 1835 | #if wxUSE_STATUSBAR |
97206645 | 1836 | UpdateStatusBar(GetPosition(), event.GetSize()); |
960a83cc | 1837 | #endif // wxUSE_STATUSBAR |
5fb9fcfc VZ |
1838 | |
1839 | event.Skip(); | |
1840 | } | |
1841 | ||
9f3362c4 VZ |
1842 | void MyFrame::OnIdle( wxIdleEvent& WXUNUSED(event) ) |
1843 | { | |
1844 | // track the window which has the focus in the status bar | |
1845 | static wxWindow *s_windowFocus = (wxWindow *)NULL; | |
1846 | wxWindow *focus = wxWindow::FindFocus(); | |
1847 | if ( focus && (focus != s_windowFocus) ) | |
1848 | { | |
1849 | s_windowFocus = focus; | |
1850 | ||
1851 | wxString msg; | |
f70d5829 | 1852 | msg.Printf( |
9f3362c4 | 1853 | #ifdef __WXMSW__ |
29e7e51a | 1854 | _T("Focus: %s, HWND = %08x"), |
f70d5829 | 1855 | #else |
29e7e51a | 1856 | _T("Focus: %s"), |
f70d5829 | 1857 | #endif |
29e7e51a | 1858 | s_windowFocus->GetClassInfo()->GetClassName() |
9f3362c4 | 1859 | #ifdef __WXMSW__ |
8b1d8f36 | 1860 | , (unsigned int) s_windowFocus->GetHWND() |
f70d5829 | 1861 | #endif |
9f3362c4 VZ |
1862 | ); |
1863 | ||
960a83cc | 1864 | #if wxUSE_STATUSBAR |
9f3362c4 | 1865 | SetStatusText(msg); |
960a83cc | 1866 | #endif // wxUSE_STATUSBAR |
9f3362c4 | 1867 | } |
341c92a8 | 1868 | } |
6c8a980f | 1869 | |
f6bcfd97 BP |
1870 | void MyComboBox::OnChar(wxKeyEvent& event) |
1871 | { | |
1872 | wxLogMessage(_T("MyComboBox::OnChar")); | |
1873 | ||
b1d4dd7a | 1874 | if ( event.GetKeyCode() == 'w' ) |
f6bcfd97 BP |
1875 | wxLogMessage(_T("MyComboBox: 'w' will be ignored.")); |
1876 | else | |
1877 | event.Skip(); | |
1878 | } | |
1879 | ||
1880 | void MyComboBox::OnKeyDown(wxKeyEvent& event) | |
1881 | { | |
1882 | wxLogMessage(_T("MyComboBox::OnKeyDown")); | |
1883 | ||
b1d4dd7a | 1884 | if ( event.GetKeyCode() == 'w' ) |
f6bcfd97 BP |
1885 | wxLogMessage(_T("MyComboBox: 'w' will be ignored.")); |
1886 | else | |
1887 | event.Skip(); | |
1888 | } | |
1889 | ||
1890 | void MyComboBox::OnKeyUp(wxKeyEvent& event) | |
1891 | { | |
1892 | wxLogMessage(_T("MyComboBox::OnKeyUp")); | |
1893 | ||
1894 | event.Skip(); | |
1895 | } | |
1896 | ||
8b81a824 VS |
1897 | static void SetListboxClientData(const wxChar *name, wxListBox *control) |
1898 | { | |
1899 | size_t count = control->GetCount(); | |
1900 | for ( size_t n = 0; n < count; n++ ) | |
1901 | { | |
1902 | wxString s; | |
1903 | s.Printf(wxT("%s client data for '%s'"), | |
1904 | name, control->GetString(n).c_str()); | |
1905 | ||
1906 | control->SetClientObject(n, new wxStringClientData(s)); | |
1907 | } | |
1908 | } | |
1909 | ||
2b5f62a0 VZ |
1910 | #if wxUSE_CHOICE |
1911 | ||
8b81a824 | 1912 | static void SetChoiceClientData(const wxChar *name, wxChoice *control) |
6c8a980f VZ |
1913 | { |
1914 | size_t count = control->GetCount(); | |
1915 | for ( size_t n = 0; n < count; n++ ) | |
1916 | { | |
1917 | wxString s; | |
4acb6ca6 | 1918 | s.Printf(wxT("%s client data for '%s'"), |
6c8a980f VZ |
1919 | name, control->GetString(n).c_str()); |
1920 | ||
1921 | control->SetClientObject(n, new wxStringClientData(s)); | |
1922 | } | |
1923 | } | |
2b5f62a0 VZ |
1924 | |
1925 | #endif // wxUSE_CHOICE |