moved WX_USE_THEME macros inside IMPLEMENT_APP
[wxWidgets.git] / samples / widgets / widgets.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWindows Widgets Sample
3 // Name: widgets.cpp
4 // Purpose: Sample showing most of the simple wxWindows widgets
5 // Author: Vadim Zeitlin
6 // Created: 27.03.01
7 // Id: $Id$
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // License: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // for compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 // for all others, include the necessary headers
28 #ifndef WX_PRECOMP
29 #include "wx/app.h"
30 #include "wx/log.h"
31 #include "wx/panel.h"
32 #include "wx/frame.h"
33 #include "wx/button.h"
34 #include "wx/checkbox.h"
35 #include "wx/listbox.h"
36 #include "wx/statbox.h"
37 #include "wx/stattext.h"
38 #include "wx/textctrl.h"
39 #endif
40
41 #include "wx/notebook.h"
42 #include "wx/sizer.h"
43
44 #include "widgets.h"
45
46 // ----------------------------------------------------------------------------
47 // constants
48 // ----------------------------------------------------------------------------
49
50 // control ids
51 enum
52 {
53 Widgets_ClearLog = 100,
54 Widgets_Quit
55 };
56
57 // ----------------------------------------------------------------------------
58 // our classes
59 // ----------------------------------------------------------------------------
60
61 // Define a new application type, each program should derive a class from wxApp
62 class WidgetsApp : public wxApp
63 {
64 public:
65 // override base class virtuals
66 // ----------------------------
67
68 // this one is called on application startup and is a good place for the app
69 // initialization (doing it here and not in the ctor allows to have an error
70 // return: if OnInit() returns false, the application terminates)
71 virtual bool OnInit();
72 };
73
74 // Define a new frame type: this is going to be our main frame
75 class WidgetsFrame : public wxFrame
76 {
77 public:
78 // ctor(s) and dtor
79 WidgetsFrame(const wxString& title);
80 virtual ~WidgetsFrame();
81
82 protected:
83 // event handlers
84 void OnButtonClearLog(wxCommandEvent& event);
85 void OnButtonQuit(wxCommandEvent& event);
86
87 // initialize the notebook: add all pages to it
88 void InitNotebook();
89
90 private:
91 // the panel containing everything
92 wxPanel *m_panel;
93
94 // the listbox for logging messages
95 wxListBox *m_lboxLog;
96
97 // the log target we use to redirect messages to the listbox
98 wxLog *m_logTarget;
99
100 // the notebook containing the test pages
101 wxNotebook *m_notebook;
102
103 // and the image list for it
104 wxImageList *m_imaglist;
105
106 // any class wishing to process wxWindows events must use this macro
107 DECLARE_EVENT_TABLE()
108 };
109
110 // A log target which just redirects the messages to a listbox
111 class LboxLogger : public wxLog
112 {
113 public:
114 LboxLogger(wxListBox *lbox, wxLog *logOld)
115 {
116 m_lbox = lbox;
117 //m_lbox->Disable(); -- looks ugly under MSW
118 m_logOld = logOld;
119 }
120
121 virtual ~LboxLogger()
122 {
123 wxLog::SetActiveTarget(m_logOld);
124 }
125
126 private:
127 // implement sink functions
128 virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t)
129 {
130 // don't put trace messages into listbox or we can get into infinite
131 // recursion
132 if ( level == wxLOG_Trace )
133 {
134 if ( m_logOld )
135 {
136 // cast is needed to call protected method
137 ((LboxLogger *)m_logOld)->DoLog(level, szString, t);
138 }
139 }
140 else
141 {
142 wxLog::DoLog(level, szString, t);
143 }
144 }
145
146 virtual void DoLogString(const wxChar *szString, time_t t)
147 {
148 wxString msg;
149 TimeStamp(&msg);
150 msg += szString;
151
152 #ifdef __WXUNIVERSAL__
153 m_lbox->AppendAndEnsureVisible(msg);
154 #else // other ports don't have this method yet
155 m_lbox->Append(msg);
156 m_lbox->SetFirstItem(m_lbox->GetCount() - 1);
157 #endif
158 }
159
160 // the control we use
161 wxListBox *m_lbox;
162
163 // the old log target
164 wxLog *m_logOld;
165 };
166
167 // array of pages
168 WX_DEFINE_ARRAY(WidgetsPage *, ArrayWidgetsPage);
169
170 // ----------------------------------------------------------------------------
171 // misc macros
172 // ----------------------------------------------------------------------------
173
174 IMPLEMENT_APP(WidgetsApp)
175
176 // ----------------------------------------------------------------------------
177 // event tables
178 // ----------------------------------------------------------------------------
179
180 BEGIN_EVENT_TABLE(WidgetsFrame, wxFrame)
181 EVT_BUTTON(Widgets_ClearLog, WidgetsFrame::OnButtonClearLog)
182 EVT_BUTTON(Widgets_Quit, WidgetsFrame::OnButtonQuit)
183 END_EVENT_TABLE()
184
185 // ============================================================================
186 // implementation
187 // ============================================================================
188
189 // ----------------------------------------------------------------------------
190 // app class
191 // ----------------------------------------------------------------------------
192
193 bool WidgetsApp::OnInit()
194 {
195 // the reason for having these ifdef's is that I often run two copies of
196 // this sample side by side and it is useful to see which one is which
197 wxString title;
198 #if defined(__WXUNIVERSAL__)
199 title = _T("wxUniv/")
200 #endif
201
202 #if defined(__WXMSW__)
203 title += _T("wxMSW");
204 #elif defined(__WXGTK__)
205 title += _T("wxGTK");
206 #else
207 title += _T("wxWindows");
208 #endif
209
210 wxFrame *frame = new WidgetsFrame(title + _T(" widgets demo"));
211 frame->Show();
212
213 //wxLog::AddTraceMask(_T("listbox"));
214 //wxLog::AddTraceMask(_T("scrollbar"));
215
216 return TRUE;
217 }
218
219 // ----------------------------------------------------------------------------
220 // WidgetsFrame construction
221 // ----------------------------------------------------------------------------
222
223 WidgetsFrame::WidgetsFrame(const wxString& title)
224 : wxFrame(NULL, -1, title, wxPoint(0, 50))
225 {
226 // init everything
227 m_lboxLog = (wxListBox *)NULL;
228 m_logTarget = (wxLog *)NULL;
229 m_notebook = (wxNotebook *)NULL;
230 m_imaglist = (wxImageList *)NULL;
231
232 // create controls
233 m_panel = new wxPanel(this, -1);
234
235 wxSizer *sizerTop = new wxBoxSizer(wxVERTICAL);
236
237 // we have 2 panes: notebook which pages demonstrating the controls in the
238 // upper one and the log window with some buttons in the lower
239
240 m_notebook = new wxNotebook(m_panel, -1);
241 InitNotebook();
242 wxSizer *sizerUp = new wxNotebookSizer(m_notebook);
243
244 // the lower one only has the log listbox and a button to clear it
245 wxSizer *sizerDown = new wxStaticBoxSizer
246 (
247 new wxStaticBox(m_panel, -1, _T("&Log window")),
248 wxVERTICAL
249 );
250 m_lboxLog = new wxListBox(m_panel, -1);
251 sizerDown->Add(m_lboxLog, 1, wxGROW | wxALL, 5);
252 wxBoxSizer *sizerBtns = new wxBoxSizer(wxHORIZONTAL);
253 wxButton *btn = new wxButton(m_panel, Widgets_ClearLog, _T("Clear &log"));
254 sizerBtns->Add(btn);
255 sizerBtns->Add(10, 0); // spacer
256 btn = new wxButton(m_panel, Widgets_Quit, _T("E&xit"));
257 sizerBtns->Add(btn);
258 sizerDown->Add(sizerBtns, 0, wxALL | wxALIGN_RIGHT, 5);
259
260 // put everything together
261 sizerTop->Add(sizerUp, 1, wxGROW | (wxALL & ~(wxTOP | wxBOTTOM)), 10);
262 sizerTop->Add(0, 5, 0, wxGROW); // spacer in between
263 sizerTop->Add(sizerDown, 0, wxGROW | (wxALL & ~wxTOP), 10);
264
265 m_panel->SetAutoLayout(TRUE);
266 m_panel->SetSizer(sizerTop);
267
268 sizerTop->Fit(this);
269 sizerTop->SetSizeHints(this);
270
271 // now that everything is created we can redirect the log messages to the
272 // listbox
273 m_logTarget = new LboxLogger(m_lboxLog, wxLog::GetActiveTarget());
274 wxLog::SetActiveTarget(m_logTarget);
275 }
276
277 void WidgetsFrame::InitNotebook()
278 {
279 m_imaglist = new wxImageList(32, 32);
280
281 ArrayWidgetsPage pages;
282 wxArrayString labels;
283
284 // we need to first create all pages and only then add them to the notebook
285 // as we need the image list first
286 WidgetsPageInfo *info = WidgetsPage::ms_widgetPages;
287 while ( info )
288 {
289 WidgetsPage *page = (*info->GetCtor())(m_notebook, m_imaglist);
290 pages.Add(page);
291
292 labels.Add(info->GetLabel());
293
294 info = info->GetNext();
295 }
296
297 m_notebook->SetImageList(m_imaglist);
298
299 // now do add them
300 size_t count = pages.GetCount();
301 for ( size_t n = 0; n < count; n++ )
302 {
303 m_notebook->AddPage(
304 pages[n],
305 labels[n],
306 FALSE, // don't select
307 n // image id
308 );
309 }
310 }
311
312 WidgetsFrame::~WidgetsFrame()
313 {
314 delete m_logTarget;
315 delete m_imaglist;
316 }
317
318 // ----------------------------------------------------------------------------
319 // WidgetsFrame event handlers
320 // ----------------------------------------------------------------------------
321
322 void WidgetsFrame::OnButtonQuit(wxCommandEvent& WXUNUSED(event))
323 {
324 Close();
325 }
326
327 void WidgetsFrame::OnButtonClearLog(wxCommandEvent& event)
328 {
329 m_lboxLog->Clear();
330 }
331
332 // ----------------------------------------------------------------------------
333 // WidgetsPageInfo
334 // ----------------------------------------------------------------------------
335
336 WidgetsPageInfo *WidgetsPage::ms_widgetPages = NULL;
337
338 WidgetsPageInfo::WidgetsPageInfo(Constructor ctor, const wxChar *label)
339 : m_label(label)
340 {
341 m_ctor = ctor;
342
343 m_next = WidgetsPage::ms_widgetPages;
344 WidgetsPage::ms_widgetPages = this;
345 }
346
347 // ----------------------------------------------------------------------------
348 // WidgetsPage
349 // ----------------------------------------------------------------------------
350
351 WidgetsPage::WidgetsPage(wxNotebook *notebook)
352 : wxPanel(notebook, -1)
353 {
354 }
355
356 wxSizer *WidgetsPage::CreateSizerWithText(wxControl *control,
357 wxWindowID id,
358 wxTextCtrl **ppText)
359 {
360 wxSizer *sizerRow = new wxBoxSizer(wxHORIZONTAL);
361 wxTextCtrl *text = new wxTextCtrl(this, id, _T(""));
362 sizerRow->Add(control, 0, wxRIGHT | wxALIGN_CENTRE_VERTICAL, 5);
363 sizerRow->Add(text, 1, wxLEFT | wxALIGN_CENTRE_VERTICAL, 5);
364
365 if ( ppText )
366 *ppText = text;
367
368 return sizerRow;
369 }
370
371 // create a sizer containing a label and a text ctrl
372 wxSizer *WidgetsPage::CreateSizerWithTextAndLabel(const wxString& label,
373 wxWindowID id,
374 wxTextCtrl **ppText)
375 {
376 return CreateSizerWithText(new wxStaticText(this, -1, label), id, ppText);
377 }
378
379 // create a sizer containing a button and a text ctrl
380 wxSizer *WidgetsPage::CreateSizerWithTextAndButton(wxWindowID idBtn,
381 const wxString& label,
382 wxWindowID id,
383 wxTextCtrl **ppText)
384 {
385 return CreateSizerWithText(new wxButton(this, idBtn, label), id, ppText);
386 }
387
388 wxCheckBox *WidgetsPage::CreateCheckBoxAndAddToSizer(wxSizer *sizer,
389 const wxString& label,
390 wxWindowID id)
391 {
392 wxCheckBox *checkbox = new wxCheckBox(this, id, label);
393 sizer->Add(checkbox, 0, wxLEFT | wxRIGHT, 5);
394 sizer->Add(0, 2, 0, wxGROW); // spacer
395
396 return checkbox;
397 }
398