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