1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Controls wxWindows sample
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling, Julian Smart
8 // Licence: wxWindows license
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "controls.h"
15 // For compilers that support precompilation, includes "wx/wx.h".
16 #include "wx/wxprec.h"
26 #include "wx/spinbutt.h"
27 #include "wx/notebook.h"
28 #include "wx/imaglist.h"
29 #include "wx/spinbutt.h"
32 #include "wx/dataobj.h"
33 #include "wx/clipbrd.h"
37 #include "wx/tooltip.h"
40 #if defined(__WXGTK__) || defined(__WXMOTIF__)
45 #include "mondrian.xpm"
46 #include "icons/choice.xpm"
47 #include "icons/combo.xpm"
48 #include "icons/list.xpm"
49 #include "icons/radio.xpm"
50 #include "icons/text.xpm"
51 #include "icons/gauge.xpm"
55 // Win16 doesn't have them
56 #undef wxUSE_SPINBUTTON
57 #define wxUSE_SPINBUTTON 0
60 #include "wx/progdlg.h"
62 //----------------------------------------------------------------------
64 //----------------------------------------------------------------------
66 class MyApp
: public wxApp
72 // a text ctrl which allows to call different wxTextCtrl functions
73 // interactively by pressing function keys in it
74 class MyTextCtrl
: public wxTextCtrl
77 MyTextCtrl(wxWindow
*parent
, wxWindowID id
, const wxString
&value
,
78 const wxPoint
&pos
, const wxSize
&size
, int style
= 0)
79 : wxTextCtrl(parent
, id
, value
, pos
, size
, style
) { }
81 void OnKeyDown(wxKeyEvent
& event
);
82 void OnKeyUp(wxKeyEvent
& event
);
83 void OnChar(wxKeyEvent
& event
);
86 static inline char GetChar(bool on
, char c
) { return on
? c
: '-'; }
87 void LogEvent(const char *name
, wxKeyEvent
& event
) const;
92 class MyPanel
: public wxPanel
95 MyPanel(wxFrame
*frame
, int x
, int y
, int w
, int h
);
98 void OnSize( wxSizeEvent
& event
);
99 void OnListBox( wxCommandEvent
&event
);
100 void OnListBoxDoubleClick( wxCommandEvent
&event
);
101 void OnListBoxButtons( wxCommandEvent
&event
);
102 void OnChoice( wxCommandEvent
&event
);
103 void OnChoiceButtons( wxCommandEvent
&event
);
104 void OnCombo( wxCommandEvent
&event
);
105 void OnComboButtons( wxCommandEvent
&event
);
106 void OnRadio( wxCommandEvent
&event
);
107 void OnRadioButtons( wxCommandEvent
&event
);
108 void OnSetFont( wxCommandEvent
&event
);
109 void OnPageChanged( wxNotebookEvent
&event
);
110 void OnPageChanging( wxNotebookEvent
&event
);
111 void OnSliderUpdate( wxCommandEvent
&event
);
112 #ifndef wxUSE_SPINBUTTON
113 void OnSpinUpdate( wxSpinEvent
&event
);
114 void OnUpdateShowProgress( wxUpdateUIEvent
& event
);
115 void OnShowProgress( wxCommandEvent
&event
);
116 #endif // wxUSE_SPINBUTTON
117 void OnPasteFromClipboard( wxCommandEvent
&event
);
118 void OnCopyToClipboard( wxCommandEvent
&event
);
119 void OnMoveToEndOfText( wxCommandEvent
&event
);
120 void OnMoveToEndOfEntry( wxCommandEvent
&event
);
122 wxListBox
*m_listbox
;
128 wxButton
*m_fontButton
;
129 #ifndef wxUSE_SPINBUTTON
130 wxSpinButton
*m_spinbutton
;
131 wxButton
*m_btnProgress
;
133 wxTextCtrl
*m_spintext
;
134 MyTextCtrl
*m_multitext
;
135 MyTextCtrl
*m_textentry
;
136 wxCheckBox
*m_checkbox
;
139 wxNotebook
*m_notebook
;
142 DECLARE_EVENT_TABLE()
145 class MyFrame
: public wxFrame
148 MyFrame(wxFrame
*frame
, char *title
, int x
, int y
, int w
, int h
);
150 void OnQuit(wxCommandEvent
& event
);
151 void OnAbout(wxCommandEvent
& event
);
153 void OnSetTooltipDelay(wxCommandEvent
& event
);
154 void OnToggleTooltips(wxCommandEvent
& event
);
155 #endif // wxUSE_TOOLTIPS
156 void OnIdle( wxIdleEvent
& event
);
157 void OnSize( wxSizeEvent
& event
);
160 DECLARE_EVENT_TABLE()
163 //----------------------------------------------------------------------
165 //----------------------------------------------------------------------
169 //----------------------------------------------------------------------
171 //----------------------------------------------------------------------
180 MINIMAL_SET_TOOLTIP_DELAY
= 200,
181 MINIMAL_ENABLE_TOOLTIPS
186 // Create the main frame window
187 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
,
188 "Controls wxWindows App",
192 // The wxICON() macros loads an icon from a resource under Windows
193 // and uses an #included XPM image under GTK+ and Motif
195 frame
->SetIcon( wxICON(mondrian
) );
197 wxMenu
*file_menu
= new wxMenu
;
198 file_menu
->Append(MINIMAL_ABOUT
, "&About\tF1");
199 file_menu
->Append(MINIMAL_QUIT
, "E&xit\tAlt-X", "Quit controls sample");
201 wxMenuBar
*menu_bar
= new wxMenuBar( wxMB_DOCKABLE
);
202 menu_bar
->Append(file_menu
, "&File");
205 wxMenu
*tooltip_menu
= new wxMenu
;
206 tooltip_menu
->Append(MINIMAL_SET_TOOLTIP_DELAY
, "Set &delay\tCtrl-D");
207 tooltip_menu
->AppendSeparator();
208 tooltip_menu
->Append(MINIMAL_ENABLE_TOOLTIPS
, "&Toggle tooltips\tCrtl-T",
209 "enable/disable tooltips", TRUE
);
210 tooltip_menu
->Check(MINIMAL_ENABLE_TOOLTIPS
, TRUE
);
211 menu_bar
->Append(tooltip_menu
, "&Tooltips");
212 #endif // wxUSE_TOOLTIPS
214 frame
->SetMenuBar(menu_bar
);
217 frame
->SetCursor(wxCursor(wxCURSOR_HAND
));
224 //----------------------------------------------------------------------
226 //----------------------------------------------------------------------
228 BEGIN_EVENT_TABLE(MyTextCtrl
, wxTextCtrl
)
229 EVT_KEY_DOWN(MyTextCtrl::OnKeyDown
)
230 EVT_KEY_UP(MyTextCtrl::OnKeyUp
)
231 EVT_CHAR(MyTextCtrl::OnChar
)
234 void MyTextCtrl::LogEvent(const char *name
, wxKeyEvent
& event
) const
237 long keycode
= event
.KeyCode();
238 if ( isprint((int)keycode
) )
239 key
.Printf("'%c'", (char)keycode
);
244 case WXK_BACK
: key
= "BACK"; break;
245 case WXK_TAB
: key
= "TAB"; break;
246 case WXK_RETURN
: key
= "RETURN"; break;
247 case WXK_ESCAPE
: key
= "ESCAPE"; break;
248 case WXK_SPACE
: key
= "SPACE"; break;
249 case WXK_DELETE
: key
= "DELETE"; break;
250 case WXK_START
: key
= "START"; break;
251 case WXK_LBUTTON
: key
= "LBUTTON"; break;
252 case WXK_RBUTTON
: key
= "RBUTTON"; break;
253 case WXK_CANCEL
: key
= "CANCEL"; break;
254 case WXK_MBUTTON
: key
= "MBUTTON"; break;
255 case WXK_CLEAR
: key
= "CLEAR"; break;
256 case WXK_SHIFT
: key
= "SHIFT"; break;
257 case WXK_CONTROL
: key
= "CONTROL"; break;
258 case WXK_MENU
: key
= "MENU"; break;
259 case WXK_PAUSE
: key
= "PAUSE"; break;
260 case WXK_CAPITAL
: key
= "CAPITAL"; break;
261 case WXK_PRIOR
: key
= "PRIOR"; break;
262 case WXK_NEXT
: key
= "NEXT"; break;
263 case WXK_END
: key
= "END"; break;
264 case WXK_HOME
: key
= "HOME"; break;
265 case WXK_LEFT
: key
= "LEFT"; break;
266 case WXK_UP
: key
= "UP"; break;
267 case WXK_RIGHT
: key
= "RIGHT"; break;
268 case WXK_DOWN
: key
= "DOWN"; break;
269 case WXK_SELECT
: key
= "SELECT"; break;
270 case WXK_PRINT
: key
= "PRINT"; break;
271 case WXK_EXECUTE
: key
= "EXECUTE"; break;
272 case WXK_SNAPSHOT
: key
= "SNAPSHOT"; break;
273 case WXK_INSERT
: key
= "INSERT"; break;
274 case WXK_HELP
: key
= "HELP"; break;
275 case WXK_NUMPAD0
: key
= "NUMPAD0"; break;
276 case WXK_NUMPAD1
: key
= "NUMPAD1"; break;
277 case WXK_NUMPAD2
: key
= "NUMPAD2"; break;
278 case WXK_NUMPAD3
: key
= "NUMPAD3"; break;
279 case WXK_NUMPAD4
: key
= "NUMPAD4"; break;
280 case WXK_NUMPAD5
: key
= "NUMPAD5"; break;
281 case WXK_NUMPAD6
: key
= "NUMPAD6"; break;
282 case WXK_NUMPAD7
: key
= "NUMPAD7"; break;
283 case WXK_NUMPAD8
: key
= "NUMPAD8"; break;
284 case WXK_NUMPAD9
: key
= "NUMPAD9"; break;
285 case WXK_MULTIPLY
: key
= "MULTIPLY"; break;
286 case WXK_ADD
: key
= "ADD"; break;
287 case WXK_SEPARATOR
: key
= "SEPARATOR"; break;
288 case WXK_SUBTRACT
: key
= "SUBTRACT"; break;
289 case WXK_DECIMAL
: key
= "DECIMAL"; break;
290 case WXK_DIVIDE
: key
= "DIVIDE"; break;
291 case WXK_F1
: key
= "F1"; break;
292 case WXK_F2
: key
= "F2"; break;
293 case WXK_F3
: key
= "F3"; break;
294 case WXK_F4
: key
= "F4"; break;
295 case WXK_F5
: key
= "F5"; break;
296 case WXK_F6
: key
= "F6"; break;
297 case WXK_F7
: key
= "F7"; break;
298 case WXK_F8
: key
= "F8"; break;
299 case WXK_F9
: key
= "F9"; break;
300 case WXK_F10
: key
= "F10"; break;
301 case WXK_F11
: key
= "F11"; break;
302 case WXK_F12
: key
= "F12"; break;
303 case WXK_F13
: key
= "F13"; break;
304 case WXK_F14
: key
= "F14"; break;
305 case WXK_F15
: key
= "F15"; break;
306 case WXK_F16
: key
= "F16"; break;
307 case WXK_F17
: key
= "F17"; break;
308 case WXK_F18
: key
= "F18"; break;
309 case WXK_F19
: key
= "F19"; break;
310 case WXK_F20
: key
= "F20"; break;
311 case WXK_F21
: key
= "F21"; break;
312 case WXK_F22
: key
= "F22"; break;
313 case WXK_F23
: key
= "F23"; break;
314 case WXK_F24
: key
= "F24"; break;
315 case WXK_NUMLOCK
: key
= "NUMLOCK"; break;
316 case WXK_SCROLL
: key
= "SCROLL"; break;
317 case WXK_PAGEUP
: key
= "PAGEUP"; break;
318 case WXK_PAGEDOWN
: key
= "PAGEDOWN"; break;
319 case WXK_NUMPAD_SPACE
: key
= "NUMPAD_SPACE"; break;
320 case WXK_NUMPAD_TAB
: key
= "NUMPAD_TAB"; break;
321 case WXK_NUMPAD_ENTER
: key
= "NUMPAD_ENTER"; break;
322 case WXK_NUMPAD_F1
: key
= "NUMPAD_F1"; break;
323 case WXK_NUMPAD_F2
: key
= "NUMPAD_F2"; break;
324 case WXK_NUMPAD_F3
: key
= "NUMPAD_F3"; break;
325 case WXK_NUMPAD_F4
: key
= "NUMPAD_F4"; break;
326 case WXK_NUMPAD_HOME
: key
= "NUMPAD_HOME"; break;
327 case WXK_NUMPAD_LEFT
: key
= "NUMPAD_LEFT"; break;
328 case WXK_NUMPAD_UP
: key
= "NUMPAD_UP"; break;
329 case WXK_NUMPAD_RIGHT
: key
= "NUMPAD_RIGHT"; break;
330 case WXK_NUMPAD_DOWN
: key
= "NUMPAD_DOWN"; break;
331 case WXK_NUMPAD_PRIOR
: key
= "NUMPAD_PRIOR"; break;
332 case WXK_NUMPAD_PAGEUP
: key
= "NUMPAD_PAGEUP"; break;
333 case WXK_NUMPAD_PAGEDOWN
: key
= "NUMPAD_PAGEDOWN"; break;
334 case WXK_NUMPAD_END
: key
= "NUMPAD_END"; break;
335 case WXK_NUMPAD_BEGIN
: key
= "NUMPAD_BEGIN"; break;
336 case WXK_NUMPAD_INSERT
: key
= "NUMPAD_INSERT"; break;
337 case WXK_NUMPAD_DELETE
: key
= "NUMPAD_DELETE"; break;
338 case WXK_NUMPAD_EQUAL
: key
= "NUMPAD_EQUAL"; break;
339 case WXK_NUMPAD_MULTIPLY
: key
= "NUMPAD_MULTIPLY"; break;
340 case WXK_NUMPAD_ADD
: key
= "NUMPAD_ADD"; break;
341 case WXK_NUMPAD_SEPARATOR
: key
= "NUMPAD_SEPARATOR"; break;
342 case WXK_NUMPAD_SUBTRACT
: key
= "NUMPAD_SUBTRACT"; break;
343 case WXK_NUMPAD_DECIMAL
: key
= "NUMPAD_DECIMAL"; break;
346 key
.Printf("unknown (%ld)", keycode
);
350 wxLogMessage( _T("%s event: %s (flags = %c%c%c%c)"),
353 GetChar(event
.ControlDown(), 'C'),
354 GetChar(event
.AltDown(), 'A'),
355 GetChar(event
.ShiftDown(), 'S'),
356 GetChar(event
.MetaDown(), 'M'));
360 void MyTextCtrl::OnChar(wxKeyEvent
& event
)
362 LogEvent("Char", event
);
367 void MyTextCtrl::OnKeyUp(wxKeyEvent
& event
)
369 LogEvent("Key up", event
);
374 void MyTextCtrl::OnKeyDown(wxKeyEvent
& event
)
376 switch ( event
.KeyCode() )
379 // show current position and text length
381 long line
, column
, pos
= GetInsertionPoint();
382 PositionToXY(pos
, &column
, &line
);
384 wxLogMessage( _T("Current position: %ld\n"
385 "Current line, column: (%ld, %ld)\n"
386 "Number of lines: %ld\n"
387 "Current line length: %ld\n"
388 "Total text length: %ld"),
399 SetInsertionPointEnd();
404 SetInsertionPoint(10);
408 LogEvent("Key down", event
);
413 //----------------------------------------------------------------------
415 //----------------------------------------------------------------------
417 const int ID_NOTEBOOK
= 1000;
419 const int ID_LISTBOX
= 130;
420 const int ID_LISTBOX_SEL_NUM
= 131;
421 const int ID_LISTBOX_SEL_STR
= 132;
422 const int ID_LISTBOX_CLEAR
= 133;
423 const int ID_LISTBOX_APPEND
= 134;
424 const int ID_LISTBOX_DELETE
= 135;
425 const int ID_LISTBOX_FONT
= 136;
426 const int ID_LISTBOX_ENABLE
= 137;
428 const int ID_CHOICE
= 120;
429 const int ID_CHOICE_SEL_NUM
= 121;
430 const int ID_CHOICE_SEL_STR
= 122;
431 const int ID_CHOICE_CLEAR
= 123;
432 const int ID_CHOICE_APPEND
= 124;
433 const int ID_CHOICE_DELETE
= 125;
434 const int ID_CHOICE_FONT
= 126;
435 const int ID_CHOICE_ENABLE
= 127;
437 const int ID_COMBO
= 140;
438 const int ID_COMBO_SEL_NUM
= 141;
439 const int ID_COMBO_SEL_STR
= 142;
440 const int ID_COMBO_CLEAR
= 143;
441 const int ID_COMBO_APPEND
= 144;
442 const int ID_COMBO_DELETE
= 145;
443 const int ID_COMBO_FONT
= 146;
444 const int ID_COMBO_ENABLE
= 147;
446 const int ID_TEXT
= 150;
447 const int ID_PASTE_TEXT
= 151;
448 const int ID_COPY_TEXT
= 152;
449 const int ID_MOVE_END_ENTRY
= 153;
450 const int ID_MOVE_END_ZONE
= 154;
452 const int ID_RADIOBOX
= 160;
453 const int ID_RADIOBOX_SEL_NUM
= 161;
454 const int ID_RADIOBOX_SEL_STR
= 162;
455 const int ID_RADIOBOX_FONT
= 163;
456 const int ID_RADIOBOX_ENABLE
= 164;
458 const int ID_RADIOBUTTON_1
= 166;
459 const int ID_RADIOBUTTON_2
= 167;
461 const int ID_SET_FONT
= 170;
463 const int ID_GAUGE
= 180;
464 const int ID_SLIDER
= 181;
466 const int ID_SPIN
= 182;
467 const int ID_BTNPROGRESS
= 183;
469 BEGIN_EVENT_TABLE(MyPanel
, wxPanel
)
470 EVT_SIZE ( MyPanel::OnSize
)
471 EVT_NOTEBOOK_PAGE_CHANGING(ID_NOTEBOOK
, MyPanel::OnPageChanging
)
472 EVT_NOTEBOOK_PAGE_CHANGED(ID_NOTEBOOK
, MyPanel::OnPageChanged
)
473 EVT_LISTBOX (ID_LISTBOX
, MyPanel::OnListBox
)
474 EVT_LISTBOX_DCLICK(ID_LISTBOX
, MyPanel::OnListBoxDoubleClick
)
475 EVT_BUTTON (ID_LISTBOX_SEL_NUM
, MyPanel::OnListBoxButtons
)
476 EVT_BUTTON (ID_LISTBOX_SEL_STR
, MyPanel::OnListBoxButtons
)
477 EVT_BUTTON (ID_LISTBOX_CLEAR
, MyPanel::OnListBoxButtons
)
478 EVT_BUTTON (ID_LISTBOX_APPEND
, MyPanel::OnListBoxButtons
)
479 EVT_BUTTON (ID_LISTBOX_DELETE
, MyPanel::OnListBoxButtons
)
480 EVT_BUTTON (ID_LISTBOX_FONT
, MyPanel::OnListBoxButtons
)
481 EVT_CHECKBOX (ID_LISTBOX_ENABLE
, MyPanel::OnListBoxButtons
)
482 EVT_CHOICE (ID_CHOICE
, MyPanel::OnChoice
)
483 EVT_BUTTON (ID_CHOICE_SEL_NUM
, MyPanel::OnChoiceButtons
)
484 EVT_BUTTON (ID_CHOICE_SEL_STR
, MyPanel::OnChoiceButtons
)
485 EVT_BUTTON (ID_CHOICE_CLEAR
, MyPanel::OnChoiceButtons
)
486 EVT_BUTTON (ID_CHOICE_APPEND
, MyPanel::OnChoiceButtons
)
487 EVT_BUTTON (ID_CHOICE_DELETE
, MyPanel::OnChoiceButtons
)
488 EVT_BUTTON (ID_CHOICE_FONT
, MyPanel::OnChoiceButtons
)
489 EVT_CHECKBOX (ID_CHOICE_ENABLE
, MyPanel::OnChoiceButtons
)
490 EVT_COMBOBOX (ID_COMBO
, MyPanel::OnCombo
)
491 EVT_BUTTON (ID_COMBO_SEL_NUM
, MyPanel::OnComboButtons
)
492 EVT_BUTTON (ID_COMBO_SEL_STR
, MyPanel::OnComboButtons
)
493 EVT_BUTTON (ID_COMBO_CLEAR
, MyPanel::OnComboButtons
)
494 EVT_BUTTON (ID_COMBO_APPEND
, MyPanel::OnComboButtons
)
495 EVT_BUTTON (ID_COMBO_DELETE
, MyPanel::OnComboButtons
)
496 EVT_BUTTON (ID_COMBO_FONT
, MyPanel::OnComboButtons
)
497 EVT_CHECKBOX (ID_COMBO_ENABLE
, MyPanel::OnComboButtons
)
498 EVT_RADIOBOX (ID_RADIOBOX
, MyPanel::OnRadio
)
499 EVT_BUTTON (ID_RADIOBOX_SEL_NUM
, MyPanel::OnRadioButtons
)
500 EVT_BUTTON (ID_RADIOBOX_SEL_STR
, MyPanel::OnRadioButtons
)
501 EVT_BUTTON (ID_RADIOBOX_FONT
, MyPanel::OnRadioButtons
)
502 EVT_CHECKBOX (ID_RADIOBOX_ENABLE
, MyPanel::OnRadioButtons
)
503 EVT_BUTTON (ID_SET_FONT
, MyPanel::OnSetFont
)
504 EVT_SLIDER (ID_SLIDER
, MyPanel::OnSliderUpdate
)
505 #ifndef wxUSE_SPINBUTTON
506 EVT_SPIN (ID_SPIN
, MyPanel::OnSpinUpdate
)
507 EVT_UPDATE_UI (ID_BTNPROGRESS
, MyPanel::OnUpdateShowProgress
)
508 EVT_BUTTON (ID_BTNPROGRESS
, MyPanel::OnShowProgress
)
510 EVT_BUTTON (ID_PASTE_TEXT
, MyPanel::OnPasteFromClipboard
)
511 EVT_BUTTON (ID_COPY_TEXT
, MyPanel::OnCopyToClipboard
)
512 EVT_BUTTON (ID_MOVE_END_ZONE
, MyPanel::OnMoveToEndOfText
)
513 EVT_BUTTON (ID_MOVE_END_ENTRY
, MyPanel::OnMoveToEndOfEntry
)
516 MyPanel::MyPanel( wxFrame
*frame
, int x
, int y
, int w
, int h
)
517 : wxPanel( frame
, -1, wxPoint(x
, y
), wxSize(w
, h
) ),
518 m_text(NULL
), m_notebook(NULL
)
520 // SetBackgroundColour("cadet blue");
522 m_text
= new wxTextCtrl( this, -1, "This is the log window.\n", wxPoint(0,50), wxSize(100,50), wxTE_MULTILINE
);
523 // m_text->SetBackgroundColour("wheat");
525 delete wxLog::SetActiveTarget(new wxLogStderr
);
527 m_notebook
= new wxNotebook( this, ID_NOTEBOOK
, wxPoint(0,0), wxSize(200,150) );
542 Image_List
, Image_Choice
, Image_Combo
, Image_Text
, Image_Radio
, Image_Gauge
, Image_Max
545 // fill the image list
546 wxImageList
*imagelist
= new wxImageList(32, 32);
548 imagelist
-> Add( wxBitmap( list_xpm
));
549 imagelist
-> Add( wxBitmap( choice_xpm
));
550 imagelist
-> Add( wxBitmap( combo_xpm
));
551 imagelist
-> Add( wxBitmap( text_xpm
));
552 imagelist
-> Add( wxBitmap( radio_xpm
));
553 imagelist
-> Add( wxBitmap( gauge_xpm
));
554 m_notebook
->SetImageList(imagelist
);
555 #elif defined(__WXMSW__)
556 // load images from resources
559 Image_List
, Image_Choice
, Image_Combo
, Image_Text
, Image_Radio
, Image_Gauge
, Image_Max
561 wxImageList
*imagelist
= new wxImageList(16, 16, FALSE
, Image_Max
);
563 static const char *s_iconNames
[Image_Max
] =
565 "list", "choice", "combo", "text", "radio", "gauge"
568 for ( size_t n
= 0; n
< Image_Max
; n
++ )
570 wxBitmap
bmp(s_iconNames
[n
]);
571 if ( !bmp
.Ok() || (imagelist
->Add(bmp
) == -1) )
573 wxLogWarning("Couldn't load the image '%s' for the notebook page %d.",
578 m_notebook
->SetImageList(imagelist
);
582 #define Image_List -1
583 #define Image_Choice -1
584 #define Image_Combo -1
585 #define Image_Text -1
586 #define Image_Radio -1
587 #define Image_Gauge -1
592 wxButton
*button
= (wxButton
*) NULL
; /* who did this ? */
593 wxPanel
*panel
= (wxPanel
*) NULL
;
595 panel
= new wxPanel(m_notebook
);
596 m_listbox
= new wxListBox( panel
, ID_LISTBOX
, wxPoint(10,10), wxSize(120,70), 5, choices
, wxLB_ALWAYS_SB
);
597 m_listbox
->SetCursor(*wxCROSS_CURSOR
);
599 m_listbox
->SetToolTip( "This is a list box" );
600 #endif // wxUSE_TOOLTIPS
602 (void)new wxButton( panel
, ID_LISTBOX_SEL_NUM
, "Select #2", wxPoint(180,30), wxSize(140,30) );
603 (void)new wxButton( panel
, ID_LISTBOX_SEL_STR
, "Select 'This'", wxPoint(340,30), wxSize(140,30) );
604 (void)new wxButton( panel
, ID_LISTBOX_CLEAR
, "Clear", wxPoint(180,80), wxSize(140,30) );
605 (void)new wxButton( panel
, ID_LISTBOX_APPEND
, "Append 'Hi!'", wxPoint(340,80), wxSize(140,30) );
606 (void)new wxButton( panel
, ID_LISTBOX_DELETE
, "Delete selected item", wxPoint(180,130), wxSize(140,30) );
607 button
= new wxButton( panel
, ID_LISTBOX_FONT
, "Set &Italic font", wxPoint(340,130), wxSize(140,30) );
609 button
->SetToolTip( "Press here to set italic font" );
610 #endif // wxUSE_TOOLTIPS
612 m_checkbox
= new wxCheckBox( panel
, ID_LISTBOX_ENABLE
, "&Disable", wxPoint(20,130), wxSize(-1, -1), wxALIGN_RIGHT
);
613 m_checkbox
->SetValue(FALSE
);
615 m_checkbox
->SetToolTip( "Click here to disable the listbox" );
616 #endif // wxUSE_TOOLTIPS
617 m_notebook
->AddPage(panel
, "wxListBox", TRUE
, Image_List
);
619 panel
= new wxPanel(m_notebook
);
620 m_choice
= new wxChoice( panel
, ID_CHOICE
, wxPoint(10,10), wxSize(120,-1), 5, choices
);
621 m_choice
->SetBackgroundColour( "red" );
622 (void)new wxButton( panel
, ID_CHOICE_SEL_NUM
, "Select #2", wxPoint(180,30), wxSize(140,30) );
623 (void)new wxButton( panel
, ID_CHOICE_SEL_STR
, "Select 'This'", wxPoint(340,30), wxSize(140,30) );
624 (void)new wxButton( panel
, ID_CHOICE_CLEAR
, "Clear", wxPoint(180,80), wxSize(140,30) );
625 (void)new wxButton( panel
, ID_CHOICE_APPEND
, "Append 'Hi!'", wxPoint(340,80), wxSize(140,30) );
626 (void)new wxButton( panel
, ID_CHOICE_DELETE
, "Delete selected item", wxPoint(180,130), wxSize(140,30) );
627 (void)new wxButton( panel
, ID_CHOICE_FONT
, "Set Italic font", wxPoint(340,130), wxSize(140,30) );
628 (void)new wxCheckBox( panel
, ID_CHOICE_ENABLE
, "Disable", wxPoint(20,130), wxSize(140,30) );
629 m_notebook
->AddPage(panel
, "wxChoice", FALSE
, Image_Choice
);
631 panel
= new wxPanel(m_notebook
);
632 m_combo
= new wxComboBox( panel
, ID_COMBO
, "This", wxPoint(10,10), wxSize(120,-1), 5, choices
, wxCB_READONLY
);
633 (void)new wxButton( panel
, ID_COMBO_SEL_NUM
, "Select #2", wxPoint(180,30), wxSize(140,30) );
634 (void)new wxButton( panel
, ID_COMBO_SEL_STR
, "Select 'This'", wxPoint(340,30), wxSize(140,30) );
635 (void)new wxButton( panel
, ID_COMBO_CLEAR
, "Clear", wxPoint(180,80), wxSize(140,30) );
636 (void)new wxButton( panel
, ID_COMBO_APPEND
, "Append 'Hi!'", wxPoint(340,80), wxSize(140,30) );
637 (void)new wxButton( panel
, ID_COMBO_DELETE
, "Delete selected item", wxPoint(180,130), wxSize(140,30) );
638 (void)new wxButton( panel
, ID_COMBO_FONT
, "Set Italic font", wxPoint(340,130), wxSize(140,30) );
639 (void)new wxCheckBox( panel
, ID_COMBO_ENABLE
, "Disable", wxPoint(20,130), wxSize(140,30) );
640 m_notebook
->AddPage(panel
, "wxComboBox", FALSE
, Image_Combo
);
642 panel
= new wxPanel(m_notebook
);
643 m_textentry
= new MyTextCtrl( panel
, -1, "Some text.", wxPoint(10,10), wxSize(320,28), //0);
645 (*m_textentry
) << " Appended.";
646 m_textentry
->SetInsertionPoint(0);
647 m_textentry
->WriteText( "Prepended. " );
649 m_multitext
= new MyTextCtrl( panel
, ID_TEXT
, "Some text.", wxPoint(10,50), wxSize(320,70), wxTE_MULTILINE
);
650 (*m_multitext
) << " Appended.";
651 m_multitext
->SetInsertionPoint(0);
652 m_multitext
->WriteText( "Prepended. " );
653 m_multitext
->AppendText( "\nPress function keys for test different tests." );
655 (*m_multitext
) << "\nDoes it have cross cursor?";
656 m_multitext
->SetCursor(*wxCROSS_CURSOR
);
658 new MyTextCtrl( panel
, -1, "This one is with wxTE_PROCESS_TAB style.", wxPoint(10,120), wxSize(320,70), wxTE_MULTILINE
| wxTE_PROCESS_TAB
);
660 m_multitext
->AppendText( "\nThis ctrl has a tooltip. " );
661 m_multitext
->SetToolTip("Press F1 here.");
662 #endif // wxUSE_TOOLTIPS
664 (void)new wxStaticBox( panel
, -1, "&Move cursor to the end of:", wxPoint(345, 0), wxSize(160, 100) );
665 (void)new wxButton( panel
, ID_MOVE_END_ENTRY
, "Text &entry", wxPoint(370, 20), wxSize(110, 30) );
666 (void)new wxButton( panel
, ID_MOVE_END_ZONE
, "Text &zone", wxPoint(370, 60), wxSize(110, 30) );
667 (void)new wxStaticBox( panel
, -1, "wx&Clipboard", wxPoint(345,100), wxSize(160,100) );
668 (void)new wxButton( panel
, ID_COPY_TEXT
, "C&opy line 1", wxPoint(370,120), wxSize(110,30) );
669 (void)new wxButton( panel
, ID_PASTE_TEXT
, "&Paste text", wxPoint(370,160), wxSize(110,30) );
670 m_notebook
->AddPage( panel
, "wxTextCtrl" , FALSE
, Image_Text
);
672 wxString choices2
[] =
676 "Fourth", "Fifth", "Sixth",
677 "Seventh", "Eighth", "Nineth", "Tenth" */
680 panel
= new wxPanel(m_notebook
);
681 (void)new wxRadioBox( panel
, ID_RADIOBOX
, "That", wxPoint(10,160), wxSize(-1,-1), WXSIZEOF(choices2
), choices2
, 1, wxRA_SPECIFY_ROWS
);
682 m_radio
= new wxRadioBox( panel
, ID_RADIOBOX
, "This", wxPoint(10,10), wxSize(-1,-1), WXSIZEOF(choices
), choices
, 1, wxRA_SPECIFY_COLS
);
683 (void)new wxButton( panel
, ID_RADIOBOX_SEL_NUM
, "Select #2", wxPoint(180,30), wxSize(140,30) );
684 (void)new wxButton( panel
, ID_RADIOBOX_SEL_STR
, "Select 'This'", wxPoint(180,80), wxSize(140,30) );
685 m_fontButton
= new wxButton( panel
, ID_SET_FONT
, "Set more Italic font", wxPoint(340,30), wxSize(140,30) );
686 (void)new wxButton( panel
, ID_RADIOBOX_FONT
, "Set Italic font", wxPoint(340,80), wxSize(140,30) );
687 (void)new wxCheckBox( panel
, ID_RADIOBOX_ENABLE
, "Disable", wxPoint(340,130), wxSize(140,30) );
688 wxRadioButton
*rb
= new wxRadioButton( panel
, ID_RADIOBUTTON_1
, "Radiobutton1", wxPoint(210,170), wxSize(110,30) );
689 rb
->SetValue( FALSE
);
690 (void)new wxRadioButton( panel
, ID_RADIOBUTTON_2
, "Radiobutton2", wxPoint(340,170), wxSize(110,30) );
691 m_notebook
->AddPage(panel
, "wxRadioBox", FALSE
, Image_Radio
);
693 panel
= new wxPanel(m_notebook
);
694 (void)new wxStaticBox( panel
, -1, "wxGauge and wxSlider", wxPoint(10,10), wxSize(180,130) );
695 m_gauge
= new wxGauge( panel
, -1, 200, wxPoint(18,50), wxSize(155, 30) );
696 m_slider
= new wxSlider( panel
, ID_SLIDER
, 0, 0, 200, wxPoint(18,90), wxSize(155,-1), wxSL_LABELS
);
697 (void)new wxStaticBox( panel
, -1, "Explanation", wxPoint(200,10), wxSize(290,130) );
699 // No wrapping text in wxStaticText yet :-(
700 (void)new wxStaticText( panel
, -1,
706 (void)new wxStaticText( panel
, -1,
707 "In order see the gauge (aka progress bar)\n"
708 "control do something you have to drag the\n"
709 "handle of the slider to the right.\n"
711 "This is also supposed to demonstrate how\n"
712 "to use static controls.\n",
717 m_spintext
= new wxTextCtrl( panel
, -1, "0", wxPoint(20,160), wxSize(80,-1) );
718 #ifndef wxUSE_SPINBUTTON
719 m_spinbutton
= new wxSpinButton( panel
, ID_SPIN
, wxPoint(103,159), wxSize(-1,-1) );
720 m_spinbutton
->SetRange(-10,30);
721 m_spinbutton
->SetValue(-5);
723 m_btnProgress
= new wxButton( panel
, ID_BTNPROGRESS
, "Show progress dialog",
726 m_notebook
->AddPage(panel
, "wxGauge", FALSE
, Image_Gauge
);
729 void MyPanel::OnPasteFromClipboard( wxCommandEvent
&WXUNUSED(event
) )
731 // We test for wxUSE_DRAG_AND_DROP also, because data objects
732 // may not be implemented for compilers that can't cope with the OLE
733 // parts in wxUSE_DRAG_AND_DROP.
735 #if wxUSE_CLIPBOARD && wxUSE_DRAG_AND_DROP
736 if (!wxTheClipboard
->Open())
738 *m_text
<< "Error opening the clipboard.\n";
744 *m_text
<< "Successfully opened the clipboard.\n";
747 wxTextDataObject data
;
749 if (wxTheClipboard
->IsSupported( data
.GetFormat() ))
751 *m_text
<< "Clipboard supports requested format.\n";
753 if (wxTheClipboard
->GetData( &data
))
755 *m_text
<< "Successfully retrieved data from the clipboard.\n";
756 *m_multitext
<< data
.GetText() << "\n";
760 *m_text
<< "Error getting data from the clipboard.\n";
765 *m_text
<< "Clipboard doesn't support requested format.\n";
768 wxTheClipboard
->Close();
770 *m_text
<< "Closed the clipboard.\n";
772 wxLogError("Your version of wxWindows is compiled without clipboard support.");
776 void MyPanel::OnCopyToClipboard( wxCommandEvent
&WXUNUSED(event
) )
778 #if wxUSE_CLIPBOARD && wxUSE_DRAG_AND_DROP
779 wxString
text( m_multitext
->GetLineText(0) );
783 *m_text
<< "No text to copy.\n";
788 if (!wxTheClipboard
->Open())
790 *m_text
<< "Error opening the clipboard.\n";
796 *m_text
<< "Successfully opened the clipboard.\n";
799 wxTextDataObject
*data
= new wxTextDataObject( text
);
801 if (!wxTheClipboard
->SetData( data
))
803 *m_text
<< "Error while copying to the clipboard.\n";
807 *m_text
<< "Successfully copied data to the clipboard.\n";
810 wxTheClipboard
->Close();
812 *m_text
<< "Closed the clipboard.\n";
814 wxLogError("Your version of wxWindows is compiled without clipboard support.");
818 void MyPanel::OnMoveToEndOfText( wxCommandEvent
&event
)
820 m_multitext
->SetInsertionPointEnd();
821 m_multitext
->SetFocus();
824 void MyPanel::OnMoveToEndOfEntry( wxCommandEvent
&event
)
826 m_textentry
->SetInsertionPointEnd();
827 m_textentry
->SetFocus();
830 void MyPanel::OnSize( wxSizeEvent
& WXUNUSED(event
) )
834 GetClientSize( &x
, &y
);
836 if (m_notebook
) m_notebook
->SetSize( 2, 2, x
-4, y
*2/3-4 );
837 if (m_text
) m_text
->SetSize( 2, y
*2/3+2, x
-4, y
/3-4 );
840 void MyPanel::OnPageChanging( wxNotebookEvent
&event
)
842 int selNew
= event
.GetSelection(),
843 selOld
= event
.GetOldSelection();
844 if ( selOld
== 2 && selNew
== 4 )
846 wxMessageBox("This demonstrates how a program may prevent the "
847 "page change from taking place - the current page will "
848 "stay the third one", "Conntrol sample",
849 wxICON_INFORMATION
| wxOK
);
855 *m_text
<< "Notebook selection is being changed from "
856 << selOld
<< " to " << selNew
<< "\n";
860 void MyPanel::OnPageChanged( wxNotebookEvent
&event
)
862 *m_text
<< "Notebook selection is " << event
.GetSelection() << "\n";
865 void MyPanel::OnListBox( wxCommandEvent
&event
)
867 m_text
->AppendText( "ListBox event selection string is: " );
868 m_text
->AppendText( event
.GetString() );
869 m_text
->AppendText( "\n" );
870 m_text
->AppendText( "ListBox control selection string is: " );
871 m_text
->AppendText( m_listbox
->GetStringSelection() );
872 m_text
->AppendText( "\n" );
875 void MyPanel::OnListBoxDoubleClick( wxCommandEvent
&event
)
877 m_text
->AppendText( "ListBox double click string is: " );
878 m_text
->AppendText( event
.GetString() );
879 m_text
->AppendText( "\n" );
882 void MyPanel::OnListBoxButtons( wxCommandEvent
&event
)
884 switch (event
.GetId())
886 case ID_LISTBOX_ENABLE
:
888 m_text
->AppendText("Checkbox clicked.\n");
889 wxCheckBox
*cb
= (wxCheckBox
*)event
.GetEventObject();
892 cb
->SetToolTip( "Click to enable listbox" );
894 cb
->SetToolTip( "Click to disable listbox" );
895 #endif // wxUSE_TOOLTIPS
896 m_listbox
->Enable( event
.GetInt() == 0 );
899 case ID_LISTBOX_SEL_NUM
:
901 m_listbox
->SetSelection( 2 );
904 case ID_LISTBOX_SEL_STR
:
906 m_listbox
->SetStringSelection( "This" );
909 case ID_LISTBOX_CLEAR
:
914 case ID_LISTBOX_APPEND
:
916 m_listbox
->Append( "Hi!" );
919 case ID_LISTBOX_DELETE
:
921 int idx
= m_listbox
->GetSelection();
922 m_listbox
->Delete( idx
);
925 case ID_LISTBOX_FONT
:
927 m_listbox
->SetFont( *wxITALIC_FONT
);
928 m_checkbox
->SetFont( *wxITALIC_FONT
);
934 void MyPanel::OnChoice( wxCommandEvent
&event
)
936 m_text
->AppendText( "Choice event selection string is: " );
937 m_text
->AppendText( event
.GetString() );
938 m_text
->AppendText( "\n" );
939 m_text
->AppendText( "Choice control selection string is: " );
940 m_text
->AppendText( m_choice
->GetStringSelection() );
941 m_text
->AppendText( "\n" );
944 void MyPanel::OnChoiceButtons( wxCommandEvent
&event
)
946 switch (event
.GetId())
948 case ID_CHOICE_ENABLE
:
950 m_choice
->Enable( event
.GetInt() == 0 );
953 case ID_CHOICE_SEL_NUM
:
955 m_choice
->SetSelection( 2 );
958 case ID_CHOICE_SEL_STR
:
960 m_choice
->SetStringSelection( "This" );
963 case ID_CHOICE_CLEAR
:
968 case ID_CHOICE_APPEND
:
970 m_choice
->Append( "Hi!" );
973 case ID_CHOICE_DELETE
:
975 int idx
= m_choice
->GetSelection();
976 m_choice
->Delete( idx
);
981 m_choice
->SetFont( *wxITALIC_FONT
);
987 void MyPanel::OnCombo( wxCommandEvent
&event
)
989 m_text
->AppendText( "ComboBox event selection string is: " );
990 m_text
->AppendText( event
.GetString() );
991 m_text
->AppendText( "\n" );
992 m_text
->AppendText( "ComboBox control selection string is: " );
993 m_text
->AppendText( m_combo
->GetStringSelection() );
994 m_text
->AppendText( "\n" );
997 void MyPanel::OnComboButtons( wxCommandEvent
&event
)
999 switch (event
.GetId())
1001 case ID_COMBO_ENABLE
:
1003 m_combo
->Enable( event
.GetInt() == 0 );
1006 case ID_COMBO_SEL_NUM
:
1008 m_combo
->SetSelection( 2 );
1011 case ID_COMBO_SEL_STR
:
1013 m_combo
->SetStringSelection( "This" );
1016 case ID_COMBO_CLEAR
:
1021 case ID_COMBO_APPEND
:
1023 m_combo
->Append( "Hi!" );
1026 case ID_COMBO_DELETE
:
1028 int idx
= m_combo
->GetSelection();
1029 m_combo
->Delete( idx
);
1034 m_combo
->SetFont( *wxITALIC_FONT
);
1040 void MyPanel::OnRadio( wxCommandEvent
&event
)
1042 m_text
->AppendText( "RadioBox selection string is: " );
1043 m_text
->AppendText( event
.GetString() );
1044 m_text
->AppendText( "\n" );
1047 void MyPanel::OnRadioButtons( wxCommandEvent
&event
)
1049 switch (event
.GetId())
1051 case ID_RADIOBOX_ENABLE
:
1053 m_radio
->Enable( event
.GetInt() == 0 );
1056 case ID_RADIOBOX_SEL_NUM
:
1058 m_radio
->SetSelection( 2 );
1061 case ID_RADIOBOX_SEL_STR
:
1063 m_radio
->SetStringSelection( "This" );
1066 case ID_RADIOBOX_FONT
:
1068 m_radio
->SetFont( *wxITALIC_FONT
);
1074 void MyPanel::OnSetFont( wxCommandEvent
&WXUNUSED(event
) )
1076 m_fontButton
->SetFont( *wxITALIC_FONT
);
1077 m_text
->SetFont( *wxITALIC_FONT
);
1080 void MyPanel::OnSliderUpdate( wxCommandEvent
&WXUNUSED(event
) )
1082 m_gauge
->SetValue( m_slider
->GetValue() );
1085 #ifndef wxUSE_SPINBUTTON
1086 void MyPanel::OnSpinUpdate( wxSpinEvent
&event
)
1089 value
.Printf( _T("%d"), event
.GetPosition() );
1090 m_spintext
->SetValue( value
);
1092 value
.Printf( _T("Spin control range: (%d, %d), current = %d\n"),
1093 m_spinbutton
->GetMin(), m_spinbutton
->GetMax(),
1094 m_spinbutton
->GetValue());
1096 m_text
->AppendText(value
);
1099 void MyPanel::OnUpdateShowProgress( wxUpdateUIEvent
& event
)
1101 event
.Enable( m_spinbutton
->GetValue() > 0 );
1104 void MyPanel::OnShowProgress( wxCommandEvent
& WXUNUSED(event
) )
1106 int max
= m_spinbutton
->GetValue();
1107 wxProgressDialog
dialog("Progress dialog example",
1108 "An informative message",
1112 TRUE
); // has abort button
1115 for ( int i
= 0; i
< max
&& cont
; i
++ )
1120 cont
= dialog
.Update(i
, "Only a half left!");
1124 cont
= dialog
.Update(i
);
1130 *m_text
<< "Progress dialog aborted!\n";
1134 *m_text
<< "Countdown from " << max
<< " finished.\n";
1138 #endif // wxUSE_SPINBUTTON
1142 delete m_notebook
->GetImageList();
1145 //----------------------------------------------------------------------
1147 //----------------------------------------------------------------------
1149 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
1150 EVT_MENU(MINIMAL_QUIT
, MyFrame::OnQuit
)
1151 EVT_MENU(MINIMAL_ABOUT
, MyFrame::OnAbout
)
1153 EVT_MENU(MINIMAL_SET_TOOLTIP_DELAY
, MyFrame::OnSetTooltipDelay
)
1154 EVT_MENU(MINIMAL_ENABLE_TOOLTIPS
, MyFrame::OnToggleTooltips
)
1155 #endif // wxUSE_TOOLTIPS
1156 EVT_SIZE(MyFrame::OnSize
)
1157 EVT_IDLE(MyFrame::OnIdle
)
1160 MyFrame::MyFrame(wxFrame
*frame
, char *title
, int x
, int y
, int w
, int h
)
1161 : wxFrame(frame
, -1, title
, wxPoint(x
, y
), wxSize(w
, h
))
1165 (void)new MyPanel( this, 10, 10, 300, 100 );
1168 void MyFrame::OnQuit (wxCommandEvent
& WXUNUSED(event
) )
1173 void MyFrame::OnAbout( wxCommandEvent
& WXUNUSED(event
) )
1175 wxBeginBusyCursor();
1177 wxMessageDialog
dialog(this, "This is a control sample", "About Controls", wxOK
);
1184 void MyFrame::OnSetTooltipDelay(wxCommandEvent
& event
)
1186 static long s_delay
= 5000;
1189 delay
.Printf( _T("%ld"), s_delay
);
1191 delay
= wxGetTextFromUser("Enter delay (in milliseconds)",
1192 "Set tooltip delay",
1196 return; // cancelled
1198 wxSscanf(delay
, _T("%ld"), &s_delay
);
1200 wxToolTip::SetDelay(s_delay
);
1202 wxLogStatus(this, _T("Tooltip delay set to %ld milliseconds"), s_delay
);
1205 void MyFrame::OnToggleTooltips(wxCommandEvent
& event
)
1207 static bool s_enabled
= TRUE
;
1209 s_enabled
= !s_enabled
;
1211 wxToolTip::Enable(s_enabled
);
1213 wxLogStatus(this, _T("Tooltips %sabled"), s_enabled
? _T("en") : _T("dis") );
1217 void MyFrame::OnSize( wxSizeEvent
& event
)
1220 msg
.Printf( _("%dx%d"), event
.GetSize().x
, event
.GetSize().y
);
1221 SetStatusText(msg
, 1);
1226 void MyFrame::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
1228 // track the window which has the focus in the status bar
1229 static wxWindow
*s_windowFocus
= (wxWindow
*)NULL
;
1230 wxWindow
*focus
= wxWindow::FindFocus();
1231 if ( focus
&& (focus
!= s_windowFocus
) )
1233 s_windowFocus
= focus
;
1238 _T("Focus: wxWindow = %p, HWND = %08x"),
1240 _T("Focus: wxWindow = %p"),
1244 , s_windowFocus
->GetHWND()