]>
git.saurik.com Git - wxWidgets.git/blob - samples/controls/controls.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Controls wxWindows sample
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows license
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "minimal.cpp"
13 #pragma interface "minimal.cpp"
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
27 #include "wx/notebook.h"
30 #include "mondrian.xpm"
33 //----------------------------------------------------------------------
35 //----------------------------------------------------------------------
37 class MyApp
: public wxApp
43 class MyPanel
: public wxPanel
47 MyPanel(wxFrame
*frame
, int x
, int y
, int w
, int h
);
49 void OnSize( wxSizeEvent
& event
);
50 void OnListBox( wxCommandEvent
&event
);
51 void OnListBoxButtons( wxCommandEvent
&event
);
52 void OnChoice( wxCommandEvent
&event
);
53 void OnChoiceButtons( wxCommandEvent
&event
);
54 void OnCombo( wxCommandEvent
&event
);
55 void OnComboButtons( wxCommandEvent
&event
);
56 void OnRadio( wxCommandEvent
&event
);
57 void OnRadioButtons( wxCommandEvent
&event
);
65 wxNotebook
*m_notebook
;
70 class MyFrame
: public wxFrame
74 MyFrame(wxFrame
*frame
, char *title
, int x
, int y
, int w
, int h
);
78 void OnQuit(wxCommandEvent
& event
);
79 void OnAbout(wxCommandEvent
& event
);
80 bool OnClose(void) { return TRUE
; }
85 //----------------------------------------------------------------------
87 //----------------------------------------------------------------------
91 //----------------------------------------------------------------------
93 //----------------------------------------------------------------------
95 const int MINIMAL_QUIT
= 100;
96 const int MINIMAL_TEXT
= 101;
97 const int MINIMAL_ABOUT
= 102;
99 bool MyApp::OnInit(void)
101 // Create the main frame window
102 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, (char *) "Controls wxWindows App", 50, 50, 500, 420 );
106 frame
->SetIcon(wxIcon("mondrian"));
108 frame
->SetIcon(wxIcon( mondrian_xpm
));
111 wxMenu
*file_menu
= new wxMenu
;
113 file_menu
->Append(MINIMAL_ABOUT
, "&About");
114 file_menu
->Append(MINIMAL_QUIT
, "E&xit");
115 wxMenuBar
*menu_bar
= new wxMenuBar
;
116 menu_bar
->Append(file_menu
, "&File");
117 frame
->SetMenuBar(menu_bar
);
126 //----------------------------------------------------------------------
128 //----------------------------------------------------------------------
130 const ID_NOTEBOOK
= 1000;
132 const ID_LISTBOX
= 130;
133 const ID_LISTBOX_SEL_NUM
= 131;
134 const ID_LISTBOX_SEL_STR
= 132;
135 const ID_LISTBOX_CLEAR
= 133;
136 const ID_LISTBOX_APPEND
= 134;
137 const ID_LISTBOX_DELETE
= 135;
139 const ID_CHOICE
= 120;
140 const ID_CHOICE_SEL_NUM
= 121;
141 const ID_CHOICE_SEL_STR
= 122;
142 const ID_CHOICE_CLEAR
= 123;
143 const ID_CHOICE_APPEND
= 124;
144 const ID_CHOICE_DELETE
= 125;
146 const ID_COMBO
= 140;
147 const ID_COMBO_SEL_NUM
= 141;
148 const ID_COMBO_SEL_STR
= 142;
149 const ID_COMBO_CLEAR
= 143;
150 const ID_COMBO_APPEND
= 144;
151 const ID_COMBO_DELETE
= 145;
155 const ID_RADIOBOX
= 160;
156 const ID_RADIOBOX_SEL_NUM
= 161;
157 const ID_RADIOBOX_SEL_STR
= 162;
159 BEGIN_EVENT_TABLE(MyPanel
, wxPanel
)
160 EVT_SIZE ( MyPanel::OnSize
)
161 EVT_LISTBOX (ID_LISTBOX
, MyPanel::OnListBox
)
162 EVT_BUTTON (ID_LISTBOX_SEL_NUM
, MyPanel::OnListBoxButtons
)
163 EVT_BUTTON (ID_LISTBOX_SEL_STR
, MyPanel::OnListBoxButtons
)
164 EVT_BUTTON (ID_LISTBOX_CLEAR
, MyPanel::OnListBoxButtons
)
165 EVT_BUTTON (ID_LISTBOX_APPEND
, MyPanel::OnListBoxButtons
)
166 EVT_BUTTON (ID_LISTBOX_DELETE
, MyPanel::OnListBoxButtons
)
167 EVT_CHOICE (ID_CHOICE
, MyPanel::OnChoice
)
168 EVT_BUTTON (ID_CHOICE_SEL_NUM
, MyPanel::OnChoiceButtons
)
169 EVT_BUTTON (ID_CHOICE_SEL_STR
, MyPanel::OnChoiceButtons
)
170 EVT_BUTTON (ID_CHOICE_CLEAR
, MyPanel::OnChoiceButtons
)
171 EVT_BUTTON (ID_CHOICE_APPEND
, MyPanel::OnChoiceButtons
)
172 EVT_BUTTON (ID_CHOICE_DELETE
, MyPanel::OnChoiceButtons
)
173 EVT_CHOICE (ID_COMBO
, MyPanel::OnCombo
)
174 EVT_BUTTON (ID_COMBO_SEL_NUM
, MyPanel::OnComboButtons
)
175 EVT_BUTTON (ID_COMBO_SEL_STR
, MyPanel::OnComboButtons
)
176 EVT_BUTTON (ID_COMBO_CLEAR
, MyPanel::OnComboButtons
)
177 EVT_BUTTON (ID_COMBO_APPEND
, MyPanel::OnComboButtons
)
178 EVT_BUTTON (ID_COMBO_DELETE
, MyPanel::OnComboButtons
)
179 EVT_RADIOBOX (ID_RADIOBOX
, MyPanel::OnRadio
)
180 EVT_BUTTON (ID_RADIOBOX_SEL_NUM
, MyPanel::OnRadioButtons
)
181 EVT_BUTTON (ID_RADIOBOX_SEL_STR
, MyPanel::OnRadioButtons
)
184 MyPanel::MyPanel( wxFrame
*frame
, int x
, int y
, int w
, int h
) :
185 wxPanel( frame
, -1, wxPoint(x
, y
), wxSize(w
, h
) )
187 m_text
= new wxTextCtrl( this, -1, "This is the log window.\n", wxPoint(0,50), wxSize(100,50), wxTE_MULTILINE
);
189 m_notebook
= new wxNotebook( this, ID_NOTEBOOK
, wxPoint(0,0), wxSize(200,150) );
199 wxPanel
*panel
= new wxPanel(m_notebook
);
200 m_listbox
= new wxListBox( panel
, ID_LISTBOX
, wxPoint(10,10), wxSize(120,70), 4, choices
);
201 (void)new wxButton( panel
, ID_LISTBOX_SEL_NUM
, "Select #2", wxPoint(180,30), wxSize(100,30) );
202 (void)new wxButton( panel
, ID_LISTBOX_SEL_STR
, "Select 'This'", wxPoint(300,30), wxSize(100,30) );
203 (void)new wxButton( panel
, ID_LISTBOX_CLEAR
, "Clear", wxPoint(180,80), wxSize(100,30) );
204 (void)new wxButton( panel
, ID_LISTBOX_APPEND
, "Append 'Hi!'", wxPoint(300,80), wxSize(100,30) );
205 (void)new wxButton( panel
, ID_LISTBOX_DELETE
, "Delete selected item", wxPoint(180,130), wxSize(140,30) );
206 m_notebook
->AddPage(panel
, "wxList");
208 panel
= new wxPanel(m_notebook
);
209 m_choice
= new wxChoice( panel
, ID_CHOICE
, wxPoint(10,10), wxSize(120,-1), 4, choices
);
210 (void)new wxButton( panel
, ID_CHOICE_SEL_NUM
, "Select #2", wxPoint(180,30), wxSize(100,30) );
211 (void)new wxButton( panel
, ID_CHOICE_SEL_STR
, "Select 'This'", wxPoint(300,30), wxSize(100,30) );
212 (void)new wxButton( panel
, ID_CHOICE_CLEAR
, "Clear", wxPoint(180,80), wxSize(100,30) );
213 (void)new wxButton( panel
, ID_CHOICE_APPEND
, "Append 'Hi!'", wxPoint(300,80), wxSize(100,30) );
214 (void)new wxButton( panel
, ID_CHOICE_DELETE
, "Delete selected item", wxPoint(180,130), wxSize(140,30) );
215 m_notebook
->AddPage(panel
, "wxChoice");
217 panel
= new wxPanel(m_notebook
);
218 m_combo
= new wxComboBox( panel
, ID_COMBO
, "This", wxPoint(10,10), wxSize(170,-1), 4, choices
);
219 (void)new wxButton( panel
, ID_COMBO_SEL_NUM
, "Select #2", wxPoint(180,30), wxSize(100,30) );
220 (void)new wxButton( panel
, ID_COMBO_SEL_STR
, "Select 'This'", wxPoint(300,30), wxSize(100,30) );
221 (void)new wxButton( panel
, ID_COMBO_CLEAR
, "Clear", wxPoint(180,80), wxSize(100,30) );
222 (void)new wxButton( panel
, ID_COMBO_APPEND
, "Append 'Hi!'", wxPoint(300,80), wxSize(100,30) );
223 (void)new wxButton( panel
, ID_COMBO_DELETE
, "Delete selected item", wxPoint(180,130), wxSize(140,30) );
224 m_notebook
->AddPage(panel
, "wxComboBox");
226 wxTextCtrl
*text
= new wxTextCtrl( m_notebook
, ID_TEXT
, "Write text here.", wxPoint(10,10), wxSize(120,100), wxTE_MULTILINE
);
227 m_notebook
->AddPage( text
, "wxTextCtrl" );
229 panel
= new wxPanel(m_notebook
);
230 m_radio
= new wxRadioBox( panel
, ID_RADIOBOX
, "This", wxPoint(10,10), wxSize(-1,-1), 4, choices
);
231 (void)new wxButton( panel
, ID_RADIOBOX_SEL_NUM
, "Select #2", wxPoint(200,30), wxSize(100,30) );
232 (void)new wxButton( panel
, ID_RADIOBOX_SEL_STR
, "Select 'This'", wxPoint(200,80), wxSize(100,30) );
233 m_notebook
->AddPage(panel
, "wxRadioBox");
236 void MyPanel::OnSize( wxSizeEvent
& WXUNUSED(event
) )
240 GetClientSize( &x
, &y
);
242 if (m_notebook
) m_notebook
->SetSize( 2, 2, x
-4, y
*2/3-4 );
243 if (m_text
) m_text
->SetSize( 2, y
*2/3+2, x
-4, y
/3-4 );
246 void MyPanel::OnListBox( wxCommandEvent
&event
)
248 m_text
->WriteText( "ListBox selection string is: " );
249 m_text
->WriteText( event
.GetString() );
250 m_text
->WriteText( "\n" );
253 void MyPanel::OnListBoxButtons( wxCommandEvent
&event
)
255 switch (event
.GetId())
257 case ID_LISTBOX_SEL_NUM
:
259 m_listbox
->SetSelection( 2 );
262 case ID_LISTBOX_SEL_STR
:
264 m_listbox
->SetStringSelection( "This" );
267 case ID_LISTBOX_CLEAR
:
272 case ID_LISTBOX_APPEND
:
274 m_listbox
->Append( "Hi!" );
277 case ID_LISTBOX_DELETE
:
279 int idx
= m_listbox
->GetSelection();
280 m_listbox
->Delete( idx
);
286 void MyPanel::OnChoice( wxCommandEvent
&event
)
288 m_text
->WriteText( "Choice selection string is: " );
289 m_text
->WriteText( event
.GetString() );
290 m_text
->WriteText( "\n" );
293 void MyPanel::OnChoiceButtons( wxCommandEvent
&event
)
295 switch (event
.GetId())
297 case ID_CHOICE_SEL_NUM
:
299 m_choice
->SetSelection( 2 );
302 case ID_CHOICE_SEL_STR
:
304 m_choice
->SetStringSelection( "This" );
307 case ID_CHOICE_CLEAR
:
312 case ID_CHOICE_APPEND
:
314 m_choice
->Append( "Hi!" );
317 case ID_CHOICE_DELETE
:
319 int idx
= m_choice
->GetSelection();
320 m_choice
->Delete( idx
);
326 void MyPanel::OnCombo( wxCommandEvent
&event
)
328 m_text
->WriteText( "ComboBox selection string is: " );
329 m_text
->WriteText( event
.GetString() );
330 m_text
->WriteText( "\n" );
333 void MyPanel::OnComboButtons( wxCommandEvent
&event
)
335 switch (event
.GetId())
337 case ID_COMBO_SEL_NUM
:
339 m_combo
->SetSelection( 2 );
342 case ID_COMBO_SEL_STR
:
344 m_combo
->SetStringSelection( "This" );
352 case ID_COMBO_APPEND
:
354 m_combo
->Append( "Hi!" );
357 case ID_COMBO_DELETE
:
359 int idx
= m_combo
->GetSelection();
360 m_combo
->Delete( idx
);
366 void MyPanel::OnRadio( wxCommandEvent
&event
)
368 m_text
->WriteText( "RadioBox selection string is: " );
369 m_text
->WriteText( event
.GetString() );
370 m_text
->WriteText( "\n" );
373 void MyPanel::OnRadioButtons( wxCommandEvent
&event
)
375 switch (event
.GetId())
377 case ID_RADIOBOX_SEL_NUM
:
379 m_radio
->SetSelection( 2 );
382 case ID_RADIOBOX_SEL_STR
:
384 m_radio
->SetStringSelection( "This" );
390 //----------------------------------------------------------------------
392 //----------------------------------------------------------------------
394 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
395 EVT_MENU(MINIMAL_QUIT
, MyFrame::OnQuit
)
396 EVT_MENU(MINIMAL_ABOUT
, MyFrame::OnAbout
)
399 MyFrame::MyFrame(wxFrame
*frame
, char *title
, int x
, int y
, int w
, int h
):
400 wxFrame(frame
, -1, title
, wxPoint(x
, y
), wxSize(w
, h
))
402 (void)new MyPanel( this, 10, 10, 300, 100 );
405 void MyFrame::OnQuit (wxCommandEvent
& WXUNUSED(event
) )
410 void MyFrame::OnAbout( wxCommandEvent
& WXUNUSED(event
) )
412 wxMessageDialog
dialog(this, "This is a control sample", "About Controls", wxOK
);