Unicode compilation fixes.
[wxWidgets.git] / samples / statbar / statbar.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: statbar.cpp
3 // Purpose: wxStatusBar sample
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 04.02.00
7 // RCS-ID: $Id$
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "statbar.cpp"
22 #pragma interface "statbar.cpp"
23 #endif
24
25 // For compilers that support precompilation, includes "wx/wx.h".
26 #include "wx/wxprec.h"
27
28 #ifdef __BORLANDC__
29 #pragma hdrstop
30 #endif
31
32 #if !wxUSE_STATUSBAR
33 #error "You need to set wxUSE_STATUSBAR to 1 to compile this sample"
34 #endif // wxUSE_STATUSBAR
35
36 // for all others, include the necessary headers
37 #ifndef WX_PRECOMP
38 #include "wx/app.h"
39 #include "wx/frame.h"
40 #include "wx/statusbr.h"
41 #include "wx/timer.h"
42 #include "wx/checkbox.h"
43 #include "wx/statbmp.h"
44 #include "wx/menu.h"
45 #include "wx/msgdlg.h"
46 #include "wx/textdlg.h"
47 #include "wx/sizer.h"
48 #include "wx/stattext.h"
49 #include "wx/bmpbuttn.h"
50 #include "wx/dcmemory.h"
51 #endif
52
53 #include "wx/datetime.h"
54
55 // define this for the platforms which don't support wxBitmapButton (such as
56 // Motif), else a wxBitmapButton will be used
57 #ifdef __WXMOTIF__
58 #define USE_STATIC_BITMAP
59 #endif
60
61 // ----------------------------------------------------------------------------
62 // resources
63 // ----------------------------------------------------------------------------
64
65 #ifdef USE_STATIC_BITMAP
66 #include "green.xpm"
67 #include "red.xpm"
68 #endif // USE_STATIC_BITMAP
69
70 // ----------------------------------------------------------------------------
71 // private classes
72 // ----------------------------------------------------------------------------
73
74 // Define a new application type, each program should derive a class from wxApp
75 class MyApp : public wxApp
76 {
77 public:
78 // override base class virtuals
79 // ----------------------------
80
81 // this one is called on application startup and is a good place for the app
82 // initialization (doing it here and not in the ctor allows to have an error
83 // return: if OnInit() returns false, the application terminates)
84 virtual bool OnInit();
85 };
86
87 // A custom status bar which contains controls, icons &c
88 class MyStatusBar : public wxStatusBar
89 {
90 public:
91 MyStatusBar(wxWindow *parent);
92 virtual ~MyStatusBar();
93
94 void UpdateClock();
95
96 // event handlers
97 void OnTimer(wxTimerEvent& event) { UpdateClock(); }
98 void OnSize(wxSizeEvent& event);
99 void OnToggleClock(wxCommandEvent& event);
100 void OnButton(wxCommandEvent& event);
101
102 private:
103 // toggle the state of the status bar controls
104 void DoToggle();
105
106 wxBitmap CreateBitmapForButton(bool on = FALSE);
107
108 enum
109 {
110 Field_Text,
111 Field_Checkbox,
112 Field_Bitmap,
113 Field_Clock,
114 Field_Max
115 };
116
117 wxTimer m_timer;
118
119 wxCheckBox *m_checkbox;
120 #ifdef USE_STATIC_BITMAP
121 wxStaticBitmap *m_statbmp;
122 #else
123 wxBitmapButton *m_statbmp;
124 #endif
125
126 DECLARE_EVENT_TABLE()
127 };
128
129 // Define a new frame type: this is going to be our main frame
130 class MyFrame : public wxFrame
131 {
132 public:
133 // ctor(s)
134 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
135 virtual ~MyFrame();
136
137 // event handlers (these functions should _not_ be virtual)
138 void OnQuit(wxCommandEvent& event);
139 void OnAbout(wxCommandEvent& event);
140
141 void OnSetStatusFields(wxCommandEvent& event);
142 void OnRecreateStatusBar(wxCommandEvent& event);
143
144 private:
145 enum StatBarKind
146 {
147 StatBar_Default,
148 StatBar_Custom,
149 StatBar_Max
150 } m_statbarKind;
151
152 void DoCreateStatusBar(StatBarKind kind);
153
154 wxStatusBar *m_statbarDefault;
155 MyStatusBar *m_statbarCustom;
156
157 // any class wishing to process wxWindows events must use this macro
158 DECLARE_EVENT_TABLE()
159 };
160
161 // Our about dialog ith its status bar
162 class MyAboutDialog : public wxDialog
163 {
164 public:
165 MyAboutDialog(wxWindow *parent);
166 };
167
168 // ----------------------------------------------------------------------------
169 // constants
170 // ----------------------------------------------------------------------------
171
172 // IDs for the controls and the menu commands
173 enum
174 {
175 // menu items
176 StatusBar_Quit = 1,
177 StatusBar_SetFields,
178 StatusBar_Recreate,
179 StatusBar_About,
180 StatusBar_Checkbox = 1000
181 };
182
183 static const int BITMAP_SIZE_X = 32;
184 static const int BITMAP_SIZE_Y = 15;
185
186 // ----------------------------------------------------------------------------
187 // event tables and other macros for wxWindows
188 // ----------------------------------------------------------------------------
189
190 // the event tables connect the wxWindows events with the functions (event
191 // handlers) which process them. It can be also done at run-time, but for the
192 // simple menu events like this the static method is much simpler.
193 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
194 EVT_MENU(StatusBar_Quit, MyFrame::OnQuit)
195 EVT_MENU(StatusBar_SetFields, MyFrame::OnSetStatusFields)
196 EVT_MENU(StatusBar_Recreate, MyFrame::OnRecreateStatusBar)
197 EVT_MENU(StatusBar_About, MyFrame::OnAbout)
198 END_EVENT_TABLE()
199
200 BEGIN_EVENT_TABLE(MyStatusBar, wxStatusBar)
201 EVT_SIZE(MyStatusBar::OnSize)
202 EVT_CHECKBOX(StatusBar_Checkbox, MyStatusBar::OnToggleClock)
203 EVT_BUTTON(-1, MyStatusBar::OnButton)
204 EVT_TIMER(-1, MyStatusBar::OnTimer)
205 END_EVENT_TABLE()
206
207 // Create a new application object: this macro will allow wxWindows to create
208 // the application object during program execution (it's better than using a
209 // static object for many reasons) and also declares the accessor function
210 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
211 // not wxApp)
212 IMPLEMENT_APP(MyApp)
213
214 // ============================================================================
215 // implementation
216 // ============================================================================
217
218 // ----------------------------------------------------------------------------
219 // the application class
220 // ----------------------------------------------------------------------------
221
222 // `Main program' equivalent: the program execution "starts" here
223 bool MyApp::OnInit()
224 {
225 // create the main application window
226 MyFrame *frame = new MyFrame("wxStatusBar sample",
227 wxPoint(50, 50), wxSize(450, 340));
228
229 // and show it (the frames, unlike simple controls, are not shown when
230 // created initially)
231 frame->Show(TRUE);
232
233 // success: wxApp::OnRun() will be called which will enter the main message
234 // loop and the application will run. If we returned FALSE here, the
235 // application would exit immediately.
236 return TRUE;
237 }
238
239 // ----------------------------------------------------------------------------
240 // main frame
241 // ----------------------------------------------------------------------------
242
243 // frame constructor
244 MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
245 : wxFrame((wxFrame *)NULL, -1, title, pos, size)
246 {
247 m_statbarDefault = NULL;
248 m_statbarCustom = NULL;
249
250 #ifdef __WXMAC__
251 // we need this in order to allow the about menu relocation, since ABOUT is
252 // not the default id of the about menu
253 wxApp::s_macAboutMenuItemId = StatusBar_About;
254 #endif
255
256 // create a menu bar
257 wxMenu *menuFile = new wxMenu;
258 menuFile->Append(StatusBar_Quit, "E&xit\tAlt-X", "Quit this program");
259
260 wxMenu *statbarMenu = new wxMenu;
261 statbarMenu->Append(StatusBar_SetFields, "&Set field count\tCtrl-C",
262 "Set the number of status bar fields");
263 statbarMenu->Append(StatusBar_Recreate, "&Recreate\tCtrl-R",
264 "Toggle status bar format");
265
266 wxMenu *helpMenu = new wxMenu;
267 helpMenu->Append(StatusBar_About, "&About...\tCtrl-A", "Show about dialog");
268
269 // now append the freshly created menu to the menu bar...
270 wxMenuBar *menuBar = new wxMenuBar();
271 menuBar->Append(menuFile, "&File");
272 menuBar->Append(statbarMenu, "&Status bar");
273 menuBar->Append(helpMenu, "&Help");
274
275 // ... and attach this menu bar to the frame
276 SetMenuBar(menuBar);
277
278 // create default status bar to start with
279 CreateStatusBar(2);
280 SetStatusText("Welcome to wxWindows!");
281
282 m_statbarDefault = GetStatusBar();
283 }
284
285 MyFrame::~MyFrame()
286 {
287 SetStatusBar(NULL);
288
289 delete m_statbarDefault;
290 delete m_statbarCustom;
291 }
292
293 void MyFrame::DoCreateStatusBar(MyFrame::StatBarKind kind)
294 {
295 wxStatusBar *statbarOld = GetStatusBar();
296 if ( statbarOld )
297 {
298 statbarOld->Hide();
299 }
300
301 switch ( kind )
302 {
303 case StatBar_Default:
304 SetStatusBar(m_statbarDefault);
305 break;
306
307 case StatBar_Custom:
308 if ( !m_statbarCustom )
309 {
310 m_statbarCustom = new MyStatusBar(this);
311 }
312 SetStatusBar(m_statbarCustom);
313 break;
314
315 default:
316 wxFAIL_MSG("unknown stat bar kind");
317 }
318
319 GetStatusBar()->Show();
320 PositionStatusBar();
321
322 m_statbarKind = kind;
323 }
324
325 // event handlers
326 void MyFrame::OnSetStatusFields(wxCommandEvent& WXUNUSED(event))
327 {
328 wxStatusBar *sb = GetStatusBar();
329
330 long nFields = wxGetNumberFromUser
331 (
332 "Select the number of fields in the status bar",
333 "Fields:",
334 "wxWindows statusbar sample",
335 sb->GetFieldsCount(),
336 1, 5,
337 this
338 );
339
340 // we don't check if the number changed at all on purpose: calling
341 // SetFieldsCount() with the same number of fields should be ok
342 if ( nFields != -1 )
343 {
344 // we set the widths only for 2 of them, otherwise let all the fields
345 // have equal width (the default behaviour)
346 const int *widths = NULL;
347 if ( nFields == 2 )
348 {
349 static const int widthsFor2Fields[2] = { 200, -1 };
350 widths = widthsFor2Fields;
351 }
352
353 sb->SetFieldsCount(nFields, widths);
354
355 wxLogStatus(this,
356 wxString::Format(wxT("Status bar now has %ld fields"),
357 nFields));
358 }
359 else
360 {
361 wxLogStatus(this, wxT("Cancelled"));
362 }
363 }
364
365 void MyFrame::OnRecreateStatusBar(wxCommandEvent& WXUNUSED(event))
366 {
367 DoCreateStatusBar(m_statbarKind == StatBar_Custom ? StatBar_Default
368 : StatBar_Custom);
369 }
370
371 void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
372 {
373 // TRUE is to force the frame to close
374 Close(TRUE);
375 }
376
377 void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
378 {
379 MyAboutDialog dlg(this);
380 dlg.ShowModal();
381 }
382
383 // ----------------------------------------------------------------------------
384 // MyAboutDialog
385 // ----------------------------------------------------------------------------
386
387 MyAboutDialog::MyAboutDialog(wxWindow *parent)
388 : wxDialog(parent, -1, wxString("About statbar"),
389 wxDefaultPosition, wxDefaultSize,
390 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
391 {
392 wxStaticText *text = new wxStaticText(this, -1,
393 "wxStatusBar sample\n"
394 "(c) 2000 Vadim Zeitlin");
395
396 wxButton *btn = new wxButton(this, wxID_OK, "&Close");
397
398 // create the top status bar without the size grip (default style),
399 // otherwise it looks weird
400 wxStatusBar *statbarTop = new wxStatusBar(this, -1, 0);
401 statbarTop->SetFieldsCount(3);
402 statbarTop->SetStatusText("This is a top status bar", 0);
403 statbarTop->SetStatusText("in a dialog", 1);
404 statbarTop->SetStatusText("Great, isn't it?", 2);
405
406 wxStatusBar *statbarBottom = new wxStatusBar(this, -1);
407 statbarBottom->SetFieldsCount(2);
408 statbarBottom->SetStatusText("This is a bottom status bar", 0);
409 statbarBottom->SetStatusText("in a dialog", 1);
410
411 wxBoxSizer *sizerTop = new wxBoxSizer(wxVERTICAL);
412 sizerTop->Add(statbarTop, 0, wxGROW);
413 sizerTop->Add(-1, 10, 1, wxGROW);
414 sizerTop->Add(text, 0, wxCENTRE | wxRIGHT | wxLEFT, 20);
415 sizerTop->Add(-1, 10, 1, wxGROW);
416 sizerTop->Add(btn, 0, wxCENTRE | wxRIGHT | wxLEFT, 20);
417 sizerTop->Add(-1, 10, 1, wxGROW);
418 sizerTop->Add(statbarBottom, 0, wxGROW);
419
420 SetAutoLayout(TRUE);
421 SetSizer(sizerTop);
422
423 sizerTop->Fit(this);
424 sizerTop->SetSizeHints(this);
425 }
426
427 // ----------------------------------------------------------------------------
428 // MyStatusBar
429 // ----------------------------------------------------------------------------
430
431 #ifdef __VISUALC__
432 // 'this' : used in base member initializer list -- so what??
433 #pragma warning(disable: 4355)
434 #endif
435
436 MyStatusBar::MyStatusBar(wxWindow *parent)
437 : wxStatusBar(parent, -1), m_timer(this), m_checkbox(NULL)
438 {
439 static const int widths[Field_Max] = { -1, 150, BITMAP_SIZE_X, 100 };
440
441 SetFieldsCount(Field_Max);
442 SetStatusWidths(Field_Max, widths);
443
444 m_checkbox = new wxCheckBox(this, StatusBar_Checkbox, _T("&Toggle clock"));
445 m_checkbox->SetValue(TRUE);
446
447 #ifdef USE_STATIC_BITMAP
448 m_statbmp = new wxStaticBitmap(this, -1, wxIcon(green_xpm));
449 #else
450 m_statbmp = new wxBitmapButton(this, -1, CreateBitmapForButton());
451 #endif
452
453 m_timer.Start(1000);
454
455 SetMinHeight(BITMAP_SIZE_Y);
456
457 UpdateClock();
458 }
459
460 #ifdef __VISUALC__
461 #pragma warning(default: 4355)
462 #endif
463
464 MyStatusBar::~MyStatusBar()
465 {
466 if ( m_timer.IsRunning() )
467 {
468 m_timer.Stop();
469 }
470 }
471
472 wxBitmap MyStatusBar::CreateBitmapForButton(bool on)
473 {
474 static const int BMP_BUTTON_SIZE_X = 10;
475 static const int BMP_BUTTON_SIZE_Y = 9;
476
477 wxBitmap bitmap(BMP_BUTTON_SIZE_X, BMP_BUTTON_SIZE_Y);
478 wxMemoryDC dc;
479 dc.SelectObject(bitmap);
480 dc.SetBrush(on ? *wxGREEN_BRUSH : *wxRED_BRUSH);
481 dc.SetBackground(*wxLIGHT_GREY_BRUSH);
482 dc.Clear();
483 dc.DrawEllipse(0, 0, BMP_BUTTON_SIZE_X, BMP_BUTTON_SIZE_Y);
484 dc.SelectObject(wxNullBitmap);
485
486 return bitmap;
487 }
488
489 void MyStatusBar::OnSize(wxSizeEvent& event)
490 {
491 if ( !m_checkbox )
492 return;
493
494 wxRect rect;
495 GetFieldRect(Field_Checkbox, rect);
496
497 m_checkbox->SetSize(rect.x + 2, rect.y + 2, rect.width - 4, rect.height - 4);
498
499 GetFieldRect(Field_Bitmap, rect);
500 #ifdef USE_BUTTON_FOR_BITMAP
501 wxSize size(BITMAP_SIZE_X, BITMAP_SIZE_Y);
502 #else
503 wxSize size = m_statbmp->GetSize();
504 #endif
505
506 m_statbmp->Move(rect.x + (rect.width - size.x) / 2,
507 rect.y + (rect.height - size.y) / 2);
508
509 event.Skip();
510 }
511
512 void MyStatusBar::OnButton(wxCommandEvent& WXUNUSED(event))
513 {
514 m_checkbox->SetValue(!m_checkbox->GetValue());
515
516 DoToggle();
517 }
518
519 void MyStatusBar::OnToggleClock(wxCommandEvent& WXUNUSED(event))
520 {
521 DoToggle();
522 }
523
524 void MyStatusBar::DoToggle()
525 {
526 if ( m_checkbox->GetValue() )
527 {
528 m_timer.Start(1000);
529
530 #ifdef USE_STATIC_BITMAP
531 m_statbmp->SetIcon(wxIcon(green_xpm));
532 #else
533 m_statbmp->SetBitmapLabel(CreateBitmapForButton(FALSE));
534 m_statbmp->Refresh();
535 #endif
536
537 UpdateClock();
538 }
539 else // don't show clock
540 {
541 m_timer.Stop();
542
543 #ifdef USE_STATIC_BITMAP
544 m_statbmp->SetIcon(wxIcon(red_xpm));
545 #else
546 m_statbmp->SetBitmapLabel(CreateBitmapForButton(TRUE));
547 m_statbmp->Refresh();
548 #endif
549
550 SetStatusText("", Field_Clock);
551 }
552 }
553
554 void MyStatusBar::UpdateClock()
555 {
556 SetStatusText(wxDateTime::Now().FormatTime(), Field_Clock);
557 }