]> git.saurik.com Git - wxWidgets.git/blame - samples/toolbar/toolbar.cpp
Fix text origin and bounding box computations in wxSVGFileDC.
[wxWidgets.git] / samples / toolbar / toolbar.cpp
CommitLineData
14d1ccd8 1/////////////////////////////////////////////////////////////////////////////
fc6bbc6d 2// Name: toolbar.cpp
14d1ccd8
JS
3// Purpose: wxToolBar sample
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
ad9bb75f 9// Licence: wxWindows licence
14d1ccd8
JS
10/////////////////////////////////////////////////////////////////////////////
11
ad9bb75f
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14d1ccd8 20// For compilers that support precompilation, includes "wx/wx.h".
92a19c2e 21#include "wx/wxprec.h"
14d1ccd8
JS
22
23#ifdef __BORLANDC__
ad9bb75f 24 #pragma hdrstop
14d1ccd8
JS
25#endif
26
27#ifndef WX_PRECOMP
5f4d35b8 28 #include "wx/wx.h"
14d1ccd8
JS
29#endif
30
5f4d35b8
WS
31#include "wx/toolbar.h"
32#include "wx/log.h"
33#include "wx/image.h"
5e3b8b93 34#include "wx/filedlg.h"
211df056 35#include "wx/colordlg.h"
b529726e 36#include "wx/srchctrl.h"
8bbe427f 37
f6bcfd97 38// define this to use XPMs everywhere (by default, BMPs are used under Win)
0ed1d09c 39// BMPs use less space, but aren't compiled into the executable on other platforms
bb5a9514 40#ifdef __WINDOWS__
f6bcfd97
BP
41 #define USE_XPM_BITMAPS 0
42#else
43 #define USE_XPM_BITMAPS 1
44#endif
45
f6bcfd97
BP
46#if USE_XPM_BITMAPS && defined(__WXMSW__) && !wxUSE_XPM_IN_MSW
47 #error You need to enable XPM support to use XPM bitmaps with toolbar!
48#endif // USE_XPM_BITMAPS
49
079b2f6b
JS
50// If this is 1, the sample will test an extra toolbar identical to the
51// main one, but not managed by the frame. This can test subtle differences
52// in the way toolbars are handled, especially on Mac where there is one
53// native, 'installed' toolbar.
54#define USE_UNMANAGED_TOOLBAR 0
55
1be45608
VZ
56// Define this as 0 for the platforms not supporting controls in toolbars
57#define USE_CONTROLS_IN_TOOLBAR 1
58
ad9bb75f
VZ
59// ----------------------------------------------------------------------------
60// resources
61// ----------------------------------------------------------------------------
14d1ccd8 62
e7092398 63#ifndef wxHAS_IMAGES_IN_RESOURCES
3cb332c1 64 #include "../sample.xpm"
5f4d35b8
WS
65#endif
66
67#if USE_XPM_BITMAPS
ad9bb75f
VZ
68 #include "bitmaps/new.xpm"
69 #include "bitmaps/open.xpm"
70 #include "bitmaps/save.xpm"
71 #include "bitmaps/copy.xpm"
72 #include "bitmaps/cut.xpm"
5ef2e633 73 #include "bitmaps/preview.xpm" // paste XPM
ad9bb75f 74 #include "bitmaps/print.xpm"
ad9bb75f 75 #include "bitmaps/help.xpm"
f6bcfd97 76#endif // USE_XPM_BITMAPS
ad9bb75f 77
7a976304
VZ
78enum Positions
79{
80 TOOLBAR_LEFT,
81 TOOLBAR_TOP,
82 TOOLBAR_RIGHT,
83 TOOLBAR_BOTTOM
84};
85
ad9bb75f
VZ
86// ----------------------------------------------------------------------------
87// classes
88// ----------------------------------------------------------------------------
89
90// Define a new application
5ef2e633 91class MyApp : public wxApp
ad9bb75f
VZ
92{
93public:
94 bool OnInit();
ad9bb75f 95};
47908e25 96
ad9bb75f
VZ
97// Define a new frame
98class MyFrame: public wxFrame
99{
100public:
101 MyFrame(wxFrame *parent,
bc2ec626 102 wxWindowID id = wxID_ANY,
9a83f860 103 const wxString& title = wxT("wxToolBar Sample"),
ad9bb75f
VZ
104 const wxPoint& pos = wxDefaultPosition,
105 const wxSize& size = wxDefaultSize,
229de929 106 long style = wxDEFAULT_FRAME_STYLE|wxCLIP_CHILDREN|wxNO_FULL_REPAINT_ON_RESIZE);
1be45608 107 virtual ~MyFrame();
14d1ccd8 108
079b2f6b 109 void PopulateToolbar(wxToolBarBase* toolBar);
5ef2e633
VZ
110 void RecreateToolbar();
111
ad9bb75f
VZ
112 void OnQuit(wxCommandEvent& event);
113 void OnAbout(wxCommandEvent& event);
114
f6bcfd97
BP
115 void OnSize(wxSizeEvent& event);
116
ba0abe3c 117 void OnToggleToolbar(wxCommandEvent& event);
f6bcfd97 118 void OnToggleAnotherToolbar(wxCommandEvent& event);
96dc4236 119 void OnToggleHorizontalText(wxCommandEvent& WXUNUSED(event));
f6bcfd97 120
5ef2e633 121 void OnToggleToolbarSize(wxCommandEvent& event);
7a976304 122 void OnChangeOrientation(wxCommandEvent& event);
98066234 123 void OnToggleToolbarRows(wxCommandEvent& event);
6a1b3ead 124 void OnToggleTooltips(wxCommandEvent& event);
8d0a7b56 125 void OnToggleCustomDisabled(wxCommandEvent& event);
5ef2e633 126
ad4ae6ed
VZ
127 void OnEnablePrint(wxCommandEvent& WXUNUSED(event)) { DoEnablePrint(); }
128 void OnDeletePrint(wxCommandEvent& WXUNUSED(event)) { DoDeletePrint(); }
bdc72a22 129 void OnInsertPrint(wxCommandEvent& event);
a1f79c1e 130 void OnChangeToolTip(wxCommandEvent& event);
ad4ae6ed 131 void OnToggleHelp(wxCommandEvent& WXUNUSED(event)) { DoToggleHelp(); }
1be45608 132 void OnToggleSearch(wxCommandEvent& event);
3bf4189d 133 void OnToggleRadioBtn(wxCommandEvent& event);
ad9bb75f 134
ec483b11 135 void OnToolbarStyle(wxCommandEvent& event);
211df056 136 void OnToolbarBgCol(wxCommandEvent& event);
5e3b8b93 137 void OnToolbarCustomBitmap(wxCommandEvent& event);
ec483b11 138
ad9bb75f 139 void OnToolLeftClick(wxCommandEvent& event);
e052a316 140 void OnToolRightClick(wxCommandEvent& event);
a9a0ceca 141 void OnToolDropdown(wxCommandEvent& event);
ad9bb75f 142
1c383dba
VZ
143 void OnCombo(wxCommandEvent& event);
144
5ef2e633 145 void OnUpdateCopyAndCut(wxUpdateUIEvent& event);
96dc4236 146 void OnUpdateToggleHorzText(wxUpdateUIEvent& event);
3bf4189d
VZ
147 void OnUpdateToggleRadioBtn(wxUpdateUIEvent& event)
148 { event.Enable( m_tbar != NULL ); }
5ef2e633 149
ad9bb75f
VZ
150private:
151 void DoEnablePrint();
97d7bfb8 152 void DoDeletePrint();
ad9bb75f
VZ
153 void DoToggleHelp();
154
f6bcfd97
BP
155 void LayoutChildren();
156
5ef2e633 157 bool m_smallToolbar,
8d0a7b56 158 m_horzText,
6a1b3ead
VZ
159 m_useCustomDisabled,
160 m_showTooltips;
98066234
VZ
161 size_t m_rows; // 1 or 2 only
162
2b5f62a0
VZ
163 // the number of print buttons we have (they're added/removed dynamically)
164 size_t m_nPrint;
165
7a976304
VZ
166 // store toolbar position for future use
167 Positions m_toolbarPosition;
168
f6bcfd97
BP
169 wxTextCtrl *m_textWindow;
170
079b2f6b 171 wxPanel *m_panel;
1be45608 172#if USE_UNMANAGED_TOOLBAR
079b2f6b 173 wxToolBar *m_extraToolBar;
1be45608 174#endif
079b2f6b 175
f6bcfd97 176 wxToolBar *m_tbar;
ad9bb75f 177
5e3b8b93
VZ
178 // the path to the custom bitmap for the test toolbar tool
179 wxString m_pathBmp;
180
1be45608
VZ
181 // the search tool, initially NULL
182 wxToolBarToolBase *m_searchTool;
183
ad9bb75f
VZ
184 DECLARE_EVENT_TABLE()
185};
186
187// ----------------------------------------------------------------------------
188// constants
189// ----------------------------------------------------------------------------
190
191const int ID_TOOLBAR = 500;
192
dd46ee66 193static const long TOOLBAR_STYLE = wxTB_FLAT | wxTB_DOCKABLE | wxTB_TEXT;
86f65864 194
ad9bb75f 195enum
14d1ccd8 196{
1be45608
VZ
197 // toolbar menu items
198 IDM_TOOLBAR_TOGGLE_TOOLBAR = 200,
199 IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT,
200 IDM_TOOLBAR_TOGGLE_ANOTHER_TOOLBAR,
201 IDM_TOOLBAR_TOGGLETOOLBARSIZE,
98066234 202 IDM_TOOLBAR_TOGGLETOOLBARROWS,
6a1b3ead 203 IDM_TOOLBAR_TOGGLETOOLTIPS,
8d0a7b56 204 IDM_TOOLBAR_TOGGLECUSTOMDISABLED,
ec483b11
VZ
205 IDM_TOOLBAR_SHOW_TEXT,
206 IDM_TOOLBAR_SHOW_ICONS,
207 IDM_TOOLBAR_SHOW_BOTH,
211df056 208 IDM_TOOLBAR_BG_COL,
5e3b8b93 209 IDM_TOOLBAR_CUSTOM_PATH,
7a976304
VZ
210 IDM_TOOLBAR_TOP_ORIENTATION,
211 IDM_TOOLBAR_LEFT_ORIENTATION,
5b2acc3a 212 IDM_TOOLBAR_BOTTOM_ORIENTATION,
7a976304 213 IDM_TOOLBAR_RIGHT_ORIENTATION,
3bf4189d
VZ
214 IDM_TOOLBAR_OTHER_1,
215 IDM_TOOLBAR_OTHER_2,
216 IDM_TOOLBAR_OTHER_3,
217
1be45608
VZ
218 // tools menu items
219 IDM_TOOLBAR_ENABLEPRINT,
220 IDM_TOOLBAR_DELETEPRINT,
221 IDM_TOOLBAR_INSERTPRINT,
222 IDM_TOOLBAR_TOGGLEHELP,
223 IDM_TOOLBAR_TOGGLESEARCH,
224 IDM_TOOLBAR_TOGGLERADIOBTN1,
225 IDM_TOOLBAR_TOGGLERADIOBTN2,
226 IDM_TOOLBAR_TOGGLERADIOBTN3,
227 IDM_TOOLBAR_CHANGE_TOOLTIP,
228
229 ID_COMBO = 1000
ad9bb75f 230};
14d1ccd8 231
ad9bb75f
VZ
232// ----------------------------------------------------------------------------
233// event tables
234// ----------------------------------------------------------------------------
14d1ccd8 235
ad9bb75f
VZ
236// Notice that wxID_HELP will be processed for the 'About' menu and the toolbar
237// help button.
14d1ccd8 238
ad9bb75f 239BEGIN_EVENT_TABLE(MyFrame, wxFrame)
f6bcfd97
BP
240 EVT_SIZE(MyFrame::OnSize)
241
ad9bb75f
VZ
242 EVT_MENU(wxID_EXIT, MyFrame::OnQuit)
243 EVT_MENU(wxID_HELP, MyFrame::OnAbout)
14d1ccd8 244
ba0abe3c 245 EVT_MENU(IDM_TOOLBAR_TOGGLE_TOOLBAR, MyFrame::OnToggleToolbar)
f6bcfd97 246 EVT_MENU(IDM_TOOLBAR_TOGGLE_ANOTHER_TOOLBAR, MyFrame::OnToggleAnotherToolbar)
96dc4236 247 EVT_MENU(IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT, MyFrame::OnToggleHorizontalText)
f6bcfd97 248
7a976304 249 EVT_MENU_RANGE(IDM_TOOLBAR_TOP_ORIENTATION, IDM_TOOLBAR_RIGHT_ORIENTATION, MyFrame::OnChangeOrientation)
5ef2e633 250 EVT_MENU(IDM_TOOLBAR_TOGGLETOOLBARSIZE, MyFrame::OnToggleToolbarSize)
98066234 251 EVT_MENU(IDM_TOOLBAR_TOGGLETOOLBARROWS, MyFrame::OnToggleToolbarRows)
6a1b3ead 252 EVT_MENU(IDM_TOOLBAR_TOGGLETOOLTIPS, MyFrame::OnToggleTooltips)
8d0a7b56 253 EVT_MENU(IDM_TOOLBAR_TOGGLECUSTOMDISABLED, MyFrame::OnToggleCustomDisabled)
5ef2e633 254
ad9bb75f 255 EVT_MENU(IDM_TOOLBAR_ENABLEPRINT, MyFrame::OnEnablePrint)
97d7bfb8 256 EVT_MENU(IDM_TOOLBAR_DELETEPRINT, MyFrame::OnDeletePrint)
bdc72a22 257 EVT_MENU(IDM_TOOLBAR_INSERTPRINT, MyFrame::OnInsertPrint)
ad9bb75f 258 EVT_MENU(IDM_TOOLBAR_TOGGLEHELP, MyFrame::OnToggleHelp)
1be45608 259 EVT_MENU(IDM_TOOLBAR_TOGGLESEARCH, MyFrame::OnToggleSearch)
3bf4189d
VZ
260 EVT_MENU_RANGE(IDM_TOOLBAR_TOGGLERADIOBTN1, IDM_TOOLBAR_TOGGLERADIOBTN3,
261 MyFrame::OnToggleRadioBtn)
a1f79c1e 262 EVT_MENU(IDM_TOOLBAR_CHANGE_TOOLTIP, MyFrame::OnChangeToolTip)
14d1ccd8 263
ec483b11
VZ
264 EVT_MENU_RANGE(IDM_TOOLBAR_SHOW_TEXT, IDM_TOOLBAR_SHOW_BOTH,
265 MyFrame::OnToolbarStyle)
211df056 266 EVT_MENU(IDM_TOOLBAR_BG_COL, MyFrame::OnToolbarBgCol)
ec483b11 267
5e3b8b93
VZ
268 EVT_MENU(IDM_TOOLBAR_CUSTOM_PATH, MyFrame::OnToolbarCustomBitmap)
269
bc2ec626 270 EVT_MENU(wxID_ANY, MyFrame::OnToolLeftClick)
14d1ccd8 271
1c383dba
VZ
272 EVT_COMBOBOX(ID_COMBO, MyFrame::OnCombo)
273
e052a316 274 EVT_TOOL_RCLICKED(wxID_ANY, MyFrame::OnToolRightClick)
5ef2e633 275
a9a0ceca
VZ
276 EVT_TOOL_DROPDOWN(wxID_ANY, MyFrame::OnToolDropdown)
277
5ef2e633
VZ
278 EVT_UPDATE_UI(wxID_COPY, MyFrame::OnUpdateCopyAndCut)
279 EVT_UPDATE_UI(wxID_CUT, MyFrame::OnUpdateCopyAndCut)
96dc4236 280
3bf4189d
VZ
281 EVT_UPDATE_UI_RANGE(IDM_TOOLBAR_TOGGLERADIOBTN1,
282 IDM_TOOLBAR_TOGGLERADIOBTN3,
283 MyFrame::OnUpdateToggleRadioBtn)
96dc4236
VZ
284 EVT_UPDATE_UI(IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT,
285 MyFrame::OnUpdateToggleHorzText)
ad9bb75f 286END_EVENT_TABLE()
14d1ccd8 287
ad9bb75f
VZ
288// ============================================================================
289// implementation
290// ============================================================================
14d1ccd8 291
ad9bb75f
VZ
292// ----------------------------------------------------------------------------
293// MyApp
294// ----------------------------------------------------------------------------
14d1ccd8 295
ad9bb75f 296IMPLEMENT_APP(MyApp)
14d1ccd8 297
ad9bb75f
VZ
298// The `main program' equivalent, creating the windows and returning the
299// main frame
300bool MyApp::OnInit()
301{
45e6e6f8
VZ
302 if ( !wxApp::OnInit() )
303 return false;
304
ad9bb75f 305 // Create the main frame window
bc2ec626 306 MyFrame* frame = new MyFrame((wxFrame *) NULL, wxID_ANY,
9a83f860 307 wxT("wxToolBar Sample"),
cc260109 308 wxPoint(100, 100), wxSize(650, 300));
14d1ccd8 309
bc2ec626 310 frame->Show(true);
7fb23305 311
8520f137 312#if wxUSE_STATUSBAR
9a83f860 313 frame->SetStatusText(wxT("Hello, wxWidgets"));
0cfc2a92 314#endif
7fb23305 315
5e3b8b93
VZ
316 wxInitAllImageHandlers();
317
bc2ec626 318 return true;
14d1ccd8
JS
319}
320
5ef2e633 321void MyFrame::RecreateToolbar()
14d1ccd8 322{
bf95a04f
JS
323#ifdef __WXWINCE__
324 // On Windows CE, we should not delete the
325 // previous toolbar in case it contains the menubar.
34621cc5 326 // We'll try to accommodate this usage in due course.
bf95a04f
JS
327 wxToolBar* toolBar = CreateToolBar();
328#else
5ef2e633 329 // delete and recreate the toolbar
ad4ae6ed 330 wxToolBarBase *toolBar = GetToolBar();
ec483b11
VZ
331 long style = toolBar ? toolBar->GetWindowStyle() : TOOLBAR_STYLE;
332
dea482c9
PC
333 if (toolBar && m_searchTool && m_searchTool->GetToolBar() == NULL)
334 {
335 // see ~MyFrame()
336 toolBar->AddTool(m_searchTool);
337 }
338 m_searchTool = NULL;
339
5ef2e633 340 delete toolBar;
14d1ccd8 341
5ef2e633
VZ
342 SetToolBar(NULL);
343
7a976304
VZ
344 style &= ~(wxTB_HORIZONTAL | wxTB_VERTICAL | wxTB_BOTTOM | wxTB_RIGHT | wxTB_HORZ_LAYOUT);
345 switch( m_toolbarPosition )
346 {
347 case TOOLBAR_LEFT:
348 style |= wxTB_LEFT;
349 break;
350 case TOOLBAR_TOP:
351 style |= wxTB_TOP;
352 break;
353 case TOOLBAR_RIGHT:
354 style |= wxTB_RIGHT;
355 break;
356 case TOOLBAR_BOTTOM:
5b2acc3a 357 style |= wxTB_BOTTOM;
7a976304
VZ
358 break;
359 }
96dc4236 360
6a1b3ead
VZ
361 if ( m_showTooltips )
362 style &= ~wxTB_NO_TOOLTIPS;
363 else
364 style |= wxTB_NO_TOOLTIPS;
365
96dc4236
VZ
366 if ( style & wxTB_TEXT && !(style & wxTB_NOICONS) && m_horzText )
367 style |= wxTB_HORZ_LAYOUT;
5ef2e633
VZ
368
369 toolBar = CreateToolBar(style, ID_TOOLBAR);
bf95a04f 370#endif
5ef2e633 371
079b2f6b
JS
372 PopulateToolbar(toolBar);
373}
374
375void MyFrame::PopulateToolbar(wxToolBarBase* toolBar)
376{
5ef2e633 377 // Set up toolbar
8d0a7b56
VZ
378 enum
379 {
380 Tool_new,
381 Tool_open,
382 Tool_save,
383 Tool_copy,
384 Tool_cut,
385 Tool_paste,
386 Tool_print,
387 Tool_help,
388 Tool_Max
389 };
390
391 wxBitmap toolBarBitmaps[Tool_Max];
5ef2e633 392
f6bcfd97 393#if USE_XPM_BITMAPS
8d0a7b56
VZ
394 #define INIT_TOOL_BMP(bmp) \
395 toolBarBitmaps[Tool_##bmp] = wxBitmap(bmp##_xpm)
f6bcfd97 396#else // !USE_XPM_BITMAPS
8d0a7b56
VZ
397 #define INIT_TOOL_BMP(bmp) \
398 toolBarBitmaps[Tool_##bmp] = wxBITMAP(bmp)
f6bcfd97 399#endif // USE_XPM_BITMAPS/!USE_XPM_BITMAPS
40515a21 400
8d0a7b56
VZ
401 INIT_TOOL_BMP(new);
402 INIT_TOOL_BMP(open);
403 INIT_TOOL_BMP(save);
404 INIT_TOOL_BMP(copy);
405 INIT_TOOL_BMP(cut);
406 INIT_TOOL_BMP(paste);
407 INIT_TOOL_BMP(print);
408 INIT_TOOL_BMP(help);
efdb961d 409
8d0a7b56
VZ
410 int w = toolBarBitmaps[Tool_new].GetWidth(),
411 h = toolBarBitmaps[Tool_new].GetHeight();
412
5ef2e633
VZ
413 if ( !m_smallToolbar )
414 {
8d0a7b56
VZ
415 w *= 2;
416 h *= 2;
417
418 for ( size_t n = Tool_new; n < WXSIZEOF(toolBarBitmaps); n++ )
40515a21
VZ
419 {
420 toolBarBitmaps[n] =
368d59f0 421 wxBitmap(toolBarBitmaps[n].ConvertToImage().Scale(w, h));
40515a21 422 }
5ef2e633 423 }
14d1ccd8 424
040d3c2e
VZ
425 // this call is actually unnecessary as the toolbar will adjust its tools
426 // size to fit the biggest icon used anyhow but it doesn't hurt neither
6a1b3ead
VZ
427 toolBar->SetToolBitmapSize(wxSize(w, h));
428
9a83f860 429 toolBar->AddTool(wxID_NEW, wxT("New"),
a9a0ceca 430 toolBarBitmaps[Tool_new], wxNullBitmap, wxITEM_DROPDOWN,
9a83f860 431 wxT("New file"), wxT("This is help for new file tool"));
a9a0ceca
VZ
432
433 wxMenu* menu = new wxMenu;
9a83f860
VZ
434 menu->Append(wxID_ANY, wxT("&First dummy item"));
435 menu->Append(wxID_ANY, wxT("&Second dummy item"));
a9a0ceca 436 menu->AppendSeparator();
9a83f860 437 menu->Append(wxID_EXIT, wxT("Exit"));
a9a0ceca
VZ
438 toolBar->SetDropdownMenu(wxID_NEW, menu);
439
9a83f860 440 toolBar->AddTool(wxID_OPEN, wxT("Open"),
e112f019 441 toolBarBitmaps[Tool_open], wxNullBitmap, wxITEM_NORMAL,
9a83f860 442 wxT("Open file"), wxT("This is help for open file tool"));
14d1ccd8 443
1be45608 444#if USE_CONTROLS_IN_TOOLBAR
5ef2e633 445 // adding a combo to a vertical toolbar is not very smart
1be45608 446 if ( !toolBar->IsVertical() )
5ef2e633 447 {
b529726e 448 wxComboBox *combo = new wxComboBox(toolBar, ID_COMBO, wxEmptyString, wxDefaultPosition, wxSize(100,-1) );
9a83f860
VZ
449 combo->Append(wxT("This"));
450 combo->Append(wxT("is a"));
451 combo->Append(wxT("combobox"));
452 combo->Append(wxT("in a"));
453 combo->Append(wxT("toolbar"));
454 toolBar->AddControl(combo, wxT("Combo Label"));
5ef2e633 455 }
1be45608 456#endif // USE_CONTROLS_IN_TOOLBAR
14d1ccd8 457
9a83f860 458 toolBar->AddTool(wxID_SAVE, wxT("Save"), toolBarBitmaps[Tool_save], wxT("Toggle button 1"), wxITEM_CHECK);
cc260109
VZ
459
460 toolBar->AddSeparator();
9a83f860
VZ
461 toolBar->AddTool(wxID_COPY, wxT("Copy"), toolBarBitmaps[Tool_copy], wxT("Toggle button 2"), wxITEM_CHECK);
462 toolBar->AddTool(wxID_CUT, wxT("Cut"), toolBarBitmaps[Tool_cut], wxT("Toggle/Untoggle help button"));
463 toolBar->AddTool(wxID_PASTE, wxT("Paste"), toolBarBitmaps[Tool_paste], wxT("Paste"));
cc260109 464 toolBar->AddSeparator();
8d0a7b56
VZ
465
466 if ( m_useCustomDisabled )
467 {
468 wxBitmap bmpDisabled(w, h);
469 {
470 wxMemoryDC dc;
471 dc.SelectObject(bmpDisabled);
472 dc.DrawBitmap(toolBarBitmaps[Tool_print], 0, 0);
473
474 wxPen pen(*wxRED, 5);
475 dc.SetPen(pen);
476 dc.DrawLine(0, 0, w, h);
477 }
478
9a83f860 479 toolBar->AddTool(wxID_PRINT, wxT("Print"), toolBarBitmaps[Tool_print],
8d0a7b56
VZ
480 bmpDisabled);
481 }
482 else
483 {
9a83f860
VZ
484 toolBar->AddTool(wxID_PRINT, wxT("Print"), toolBarBitmaps[Tool_print],
485 wxT("Delete this tool. This is a very long tooltip to test whether it does the right thing when the tooltip is more than Windows can cope with."));
8d0a7b56
VZ
486 }
487
cc260109
VZ
488 // add a stretchable space before the "Help" button to make it
489 // right-aligned
490 toolBar->AddStretchableSpace();
9a83f860 491 toolBar->AddTool(wxID_HELP, wxT("Help"), toolBarBitmaps[Tool_help], wxT("Help button"), wxITEM_CHECK);
13437238 492
5e3b8b93
VZ
493 if ( !m_pathBmp.empty() )
494 {
495 // create a tool with a custom bitmap for testing
496 wxImage img(m_pathBmp);
a1b806b9 497 if ( img.IsOk() )
5e3b8b93
VZ
498 {
499 if ( img.GetWidth() > w && img.GetHeight() > h )
500 img = img.GetSubImage(wxRect(0, 0, w, h));
501
502 toolBar->AddSeparator();
9a83f860 503 toolBar->AddTool(wxID_ANY, wxT("Custom"), img);
5e3b8b93
VZ
504 }
505 }
506
5ef2e633
VZ
507 // after adding the buttons to the toolbar, must call Realize() to reflect
508 // the changes
509 toolBar->Realize();
98066234 510
09c0ebcf
VZ
511 toolBar->SetRows(toolBar->IsVertical() ? toolBar->GetToolsCount() / m_rows
512 : m_rows);
14d1ccd8
JS
513}
514
ad9bb75f
VZ
515// ----------------------------------------------------------------------------
516// MyFrame
517// ----------------------------------------------------------------------------
13437238
JS
518
519// Define my frame constructor
7fb23305
VZ
520MyFrame::MyFrame(wxFrame* parent,
521 wxWindowID id,
522 const wxString& title,
523 const wxPoint& pos,
524 const wxSize& size,
525 long style)
526 : wxFrame(parent, id, title, pos, size, style)
14d1ccd8 527{
f6bcfd97 528 m_tbar = NULL;
98066234 529
bc2ec626 530 m_smallToolbar = true;
bc2ec626 531 m_horzText = false;
8d0a7b56 532 m_useCustomDisabled = false;
6a1b3ead 533 m_showTooltips = true;
b3514fd6 534 m_searchTool = NULL;
6a1b3ead 535
98066234 536 m_rows = 1;
2b5f62a0 537 m_nPrint = 1;
ad9bb75f 538
8520f137 539#if wxUSE_STATUSBAR
ad9bb75f
VZ
540 // Give it a status line
541 CreateStatusBar();
0cfc2a92 542#endif
ad9bb75f
VZ
543
544 // Give it an icon
3cb332c1 545 SetIcon(wxICON(sample));
ad9bb75f
VZ
546
547 // Make a menubar
548 wxMenu *tbarMenu = new wxMenu;
ba0abe3c 549 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLE_TOOLBAR,
9a83f860
VZ
550 wxT("Toggle &toolbar\tCtrl-Z"),
551 wxT("Show or hide the toolbar"));
ba0abe3c
VZ
552
553 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLE_ANOTHER_TOOLBAR,
9a83f860
VZ
554 wxT("Toggle &another toolbar\tCtrl-A"),
555 wxT("Show/hide another test toolbar"));
ba0abe3c 556
96dc4236 557 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT,
9a83f860
VZ
558 wxT("Toggle hori&zontal text\tCtrl-H"),
559 wxT("Show text under/alongside the icon"));
96dc4236 560
ba0abe3c 561 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLBARSIZE,
9a83f860
VZ
562 wxT("&Toggle toolbar size\tCtrl-S"),
563 wxT("Toggle between big/small toolbar"));
ba0abe3c 564
ba0abe3c 565 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLBARROWS,
9a83f860
VZ
566 wxT("Toggle number of &rows\tCtrl-R"),
567 wxT("Toggle number of toolbar rows between 1 and 2"));
5ef2e633 568
6a1b3ead 569 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLTIPS,
9a83f860
VZ
570 wxT("Show &tooltips\tCtrl-L"),
571 wxT("Show tooltips for the toolbar tools"));
6a1b3ead 572
8d0a7b56 573 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLECUSTOMDISABLED,
9a83f860
VZ
574 wxT("Use c&ustom disabled images\tCtrl-U"),
575 wxT("Switch between using system-generated and custom disabled images"));
8d0a7b56
VZ
576
577
7a976304
VZ
578 tbarMenu->AppendSeparator();
579 tbarMenu->AppendRadioItem(IDM_TOOLBAR_TOP_ORIENTATION,
9a83f860
VZ
580 wxT("Set toolbar at the top of the window"),
581 wxT("Set toolbar at the top of the window"));
7a976304 582 tbarMenu->AppendRadioItem(IDM_TOOLBAR_LEFT_ORIENTATION,
9a83f860
VZ
583 wxT("Set toolbar at the left of the window"),
584 wxT("Set toolbar at the left of the window"));
7a976304 585 tbarMenu->AppendRadioItem(IDM_TOOLBAR_BOTTOM_ORIENTATION,
9a83f860
VZ
586 wxT("Set toolbar at the bottom of the window"),
587 wxT("Set toolbar at the bottom of the window"));
7a976304 588 tbarMenu->AppendRadioItem(IDM_TOOLBAR_RIGHT_ORIENTATION,
9a83f860
VZ
589 wxT("Set toolbar at the right edge of the window"),
590 wxT("Set toolbar at the right edge of the window"));
5ef2e633
VZ
591 tbarMenu->AppendSeparator();
592
9a83f860
VZ
593 tbarMenu->AppendRadioItem(IDM_TOOLBAR_SHOW_TEXT, wxT("Show &text\tCtrl-Alt-T"));
594 tbarMenu->AppendRadioItem(IDM_TOOLBAR_SHOW_ICONS, wxT("Show &icons\tCtrl-Alt-I"));
595 tbarMenu->AppendRadioItem(IDM_TOOLBAR_SHOW_BOTH, wxT("Show &both\tCtrl-Alt-B"));
5e3b8b93 596 tbarMenu->AppendSeparator();
9a83f860
VZ
597 tbarMenu->Append(IDM_TOOLBAR_BG_COL, wxT("Choose bac&kground colour..."));
598 tbarMenu->Append(IDM_TOOLBAR_CUSTOM_PATH, wxT("Custom &bitmap...\tCtrl-B"));
b487a08f 599
1be45608 600 wxMenu *toolMenu = new wxMenu;
9a83f860
VZ
601 toolMenu->Append(IDM_TOOLBAR_ENABLEPRINT, wxT("&Enable print button\tCtrl-E"));
602 toolMenu->Append(IDM_TOOLBAR_DELETEPRINT, wxT("&Delete print button\tCtrl-D"));
603 toolMenu->Append(IDM_TOOLBAR_INSERTPRINT, wxT("&Insert print button\tCtrl-I"));
604 toolMenu->Append(IDM_TOOLBAR_TOGGLEHELP, wxT("Toggle &help button\tCtrl-T"));
605 toolMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLESEARCH, wxT("Toggle &search field\tCtrl-F"));
1be45608 606 toolMenu->AppendSeparator();
9a83f860
VZ
607 toolMenu->Append(IDM_TOOLBAR_TOGGLERADIOBTN1, wxT("Toggle &1st radio button\tCtrl-1"));
608 toolMenu->Append(IDM_TOOLBAR_TOGGLERADIOBTN2, wxT("Toggle &2nd radio button\tCtrl-2"));
609 toolMenu->Append(IDM_TOOLBAR_TOGGLERADIOBTN3, wxT("Toggle &3rd radio button\tCtrl-3"));
1be45608 610 toolMenu->AppendSeparator();
9a83f860 611 toolMenu->Append(IDM_TOOLBAR_CHANGE_TOOLTIP, wxT("Change tooltip of \"New\""));
1be45608 612
ad9bb75f 613 wxMenu *fileMenu = new wxMenu;
9a83f860 614 fileMenu->Append(wxID_EXIT, wxT("E&xit\tAlt-X"), wxT("Quit toolbar sample") );
ad9bb75f 615
ad9bb75f 616 wxMenu *helpMenu = new wxMenu;
9a83f860 617 helpMenu->Append(wxID_HELP, wxT("&About"), wxT("About toolbar sample"));
ad9bb75f
VZ
618
619 wxMenuBar* menuBar = new wxMenuBar( wxMB_DOCKABLE );
620
9a83f860
VZ
621 menuBar->Append(fileMenu, wxT("&File"));
622 menuBar->Append(tbarMenu, wxT("&Toolbar"));
623 menuBar->Append(toolMenu, wxT("Tool&s"));
624 menuBar->Append(helpMenu, wxT("&Help"));
ad9bb75f
VZ
625
626 // Associate the menu bar with the frame
627 SetMenuBar(menuBar);
628
93ffd498 629 menuBar->Check(IDM_TOOLBAR_TOGGLE_TOOLBAR, true);
bc2ec626 630 menuBar->Check(IDM_TOOLBAR_SHOW_BOTH, true);
6a1b3ead 631 menuBar->Check(IDM_TOOLBAR_TOGGLETOOLTIPS, true);
c631abda 632
7a976304
VZ
633 menuBar->Check(IDM_TOOLBAR_TOP_ORIENTATION, true );
634 m_toolbarPosition = TOOLBAR_TOP;
079b2f6b 635
ad9bb75f 636 // Create the toolbar
5ef2e633 637 RecreateToolbar();
949b8e62 638
079b2f6b
JS
639 m_panel = new wxPanel(this, wxID_ANY);
640#if USE_UNMANAGED_TOOLBAR
641 m_extraToolBar = new wxToolBar(m_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_TEXT|wxTB_FLAT|wxTB_TOP);
642 PopulateToolbar(m_extraToolBar);
079b2f6b 643#endif
ce00f59b 644
079b2f6b
JS
645 m_textWindow = new wxTextCtrl(m_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE);
646
647 wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL);
648 m_panel->SetSizer(sizer);
1be45608 649#if USE_UNMANAGED_TOOLBAR
079b2f6b
JS
650 if (m_extraToolBar)
651 sizer->Add(m_extraToolBar, 0, wxEXPAND, 0);
1be45608 652#endif
079b2f6b 653 sizer->Add(m_textWindow, 1, wxEXPAND, 0);
5ef2e633 654}
ad9bb75f 655
1be45608
VZ
656MyFrame::~MyFrame()
657{
658 if ( m_searchTool && !m_searchTool->GetToolBar() )
659 {
660 // we currently can't delete a toolbar tool ourselves, so we have to
661 // attach it to the toolbar just for it to be deleted, this is pretty
662 // ugly and will need to be changed
663 GetToolBar()->AddTool(m_searchTool);
664 }
665}
666
f6bcfd97
BP
667void MyFrame::LayoutChildren()
668{
669 wxSize size = GetClientSize();
670
671 int offset;
672 if ( m_tbar )
673 {
7a7d2a14 674 m_tbar->SetSize(0, 0, wxDefaultCoord, size.y);
f6bcfd97
BP
675
676 offset = m_tbar->GetSize().x;
677 }
678 else
679 {
680 offset = 0;
681 }
682
079b2f6b 683 m_panel->SetSize(offset, 0, size.x - offset, size.y);
f6bcfd97
BP
684}
685
686void MyFrame::OnSize(wxSizeEvent& event)
687{
688 if ( m_tbar )
689 {
690 LayoutChildren();
691 }
692 else
693 {
694 event.Skip();
695 }
696}
697
ba0abe3c
VZ
698void MyFrame::OnToggleToolbar(wxCommandEvent& WXUNUSED(event))
699{
700 wxToolBar *tbar = GetToolBar();
701
702 if ( !tbar )
703 {
704 RecreateToolbar();
705 }
706 else
707 {
62f6be44
VZ
708 // notice that there is no need to call SetToolBar(NULL) here (although
709 // this it is harmless to do and it must be called if you do not delete
710 // the toolbar but keep it for later reuse), just delete the toolbar
711 // directly and it will reset the associated frame toolbar pointer
ba0abe3c 712 delete tbar;
ba0abe3c
VZ
713 }
714}
715
96dc4236
VZ
716void MyFrame::OnToggleHorizontalText(wxCommandEvent& WXUNUSED(event))
717{
718 m_horzText = !m_horzText;
719
720 RecreateToolbar();
721}
722
f6bcfd97
BP
723void MyFrame::OnToggleAnotherToolbar(wxCommandEvent& WXUNUSED(event))
724{
725 if ( m_tbar )
726 {
5276b0a5 727 wxDELETE(m_tbar);
f6bcfd97
BP
728 }
729 else
730 {
8927d6d1
VZ
731 long style = GetToolBar() ? GetToolBar()->GetWindowStyle()
732 : TOOLBAR_STYLE;
ec483b11
VZ
733 style &= ~wxTB_HORIZONTAL;
734 style |= wxTB_VERTICAL;
735
bc2ec626 736 m_tbar = new wxToolBar(this, wxID_ANY,
f6bcfd97 737 wxDefaultPosition, wxDefaultSize,
ec483b11
VZ
738 style);
739
69c14ebe
VZ
740 m_tbar->SetMargins(4, 4);
741
9a83f860
VZ
742 m_tbar->AddRadioTool(IDM_TOOLBAR_OTHER_1, wxT("First"), wxBITMAP(new));
743 m_tbar->AddRadioTool(IDM_TOOLBAR_OTHER_2, wxT("Second"), wxBITMAP(open));
744 m_tbar->AddRadioTool(IDM_TOOLBAR_OTHER_3, wxT("Third"), wxBITMAP(save));
ec483b11 745 m_tbar->AddSeparator();
9a83f860 746 m_tbar->AddTool(wxID_HELP, wxT("Help"), wxBITMAP(help));
ec483b11 747
f6bcfd97
BP
748 m_tbar->Realize();
749 }
750
751 LayoutChildren();
752}
753
5ef2e633
VZ
754void MyFrame::OnToggleToolbarSize(wxCommandEvent& WXUNUSED(event))
755{
756 m_smallToolbar = !m_smallToolbar;
ad9bb75f 757
5ef2e633 758 RecreateToolbar();
7fb23305
VZ
759}
760
98066234
VZ
761void MyFrame::OnToggleToolbarRows(wxCommandEvent& WXUNUSED(event))
762{
763 // m_rows may be only 1 or 2
764 m_rows = 3 - m_rows;
765
09c0ebcf
VZ
766 wxToolBar* const toolBar = GetToolBar();
767 toolBar->SetRows(toolBar->IsVertical() ? toolBar->GetToolsCount() / m_rows
768 : m_rows);
98066234 769
9fb35cf1 770 //RecreateToolbar(); -- this is unneeded
98066234
VZ
771}
772
6a1b3ead
VZ
773void MyFrame::OnToggleTooltips(wxCommandEvent& WXUNUSED(event))
774{
775 m_showTooltips = !m_showTooltips;
776
777 RecreateToolbar();
778}
779
8d0a7b56
VZ
780void MyFrame::OnToggleCustomDisabled(wxCommandEvent& WXUNUSED(event))
781{
782 m_useCustomDisabled = !m_useCustomDisabled;
783
784 RecreateToolbar();
785}
786
7a976304 787void MyFrame::OnChangeOrientation(wxCommandEvent& event)
7fb23305 788{
7a976304
VZ
789 switch( event.GetId() )
790 {
791 case IDM_TOOLBAR_LEFT_ORIENTATION:
792 m_toolbarPosition = TOOLBAR_LEFT;
793 break;
794 case IDM_TOOLBAR_TOP_ORIENTATION:
795 m_toolbarPosition = TOOLBAR_TOP;
796 break;
797 case IDM_TOOLBAR_RIGHT_ORIENTATION:
798 m_toolbarPosition = TOOLBAR_RIGHT;
799 break;
800 case IDM_TOOLBAR_BOTTOM_ORIENTATION:
801 m_toolbarPosition = TOOLBAR_BOTTOM;
802 break;
803 }
5ef2e633 804 RecreateToolbar();
14d1ccd8
JS
805}
806
47908e25 807void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
14d1ccd8 808{
bc2ec626 809 Close(true);
14d1ccd8
JS
810}
811
e08bbf37 812void MyFrame::OnAbout(wxCommandEvent& event)
14d1ccd8 813{
e08bbf37 814 if ( event.IsChecked() )
9a83f860 815 m_textWindow->WriteText( wxT("Help button down now.\n") );
e08bbf37 816 else
9a83f860 817 m_textWindow->WriteText( wxT("Help button up now.\n") );
e08bbf37 818
9a83f860 819 (void)wxMessageBox(wxT("wxWidgets toolbar sample"), wxT("About wxToolBar"));
13437238 820}
14d1ccd8 821
13437238
JS
822void MyFrame::OnToolLeftClick(wxCommandEvent& event)
823{
e179bd65 824 wxString str;
9a83f860 825 str.Printf( wxT("Clicked on tool %d\n"), event.GetId());
e179bd65 826 m_textWindow->WriteText( str );
ad9bb75f 827
e179bd65
RR
828 if (event.GetId() == wxID_COPY)
829 {
7fb23305 830 DoEnablePrint();
e179bd65 831 }
ad9bb75f 832
e179bd65
RR
833 if (event.GetId() == wxID_CUT)
834 {
7fb23305 835 DoToggleHelp();
e179bd65 836 }
1c4f8f8d 837
97d7bfb8
RR
838 if (event.GetId() == wxID_PRINT)
839 {
840 DoDeletePrint();
841 }
14d1ccd8
JS
842}
843
e052a316
VZ
844void MyFrame::OnToolRightClick(wxCommandEvent& event)
845{
846 m_textWindow->AppendText(
9a83f860 847 wxString::Format(wxT("Tool %d right clicked.\n"),
60c474a0 848 (int) event.GetInt()));
e052a316
VZ
849}
850
1c383dba
VZ
851void MyFrame::OnCombo(wxCommandEvent& event)
852{
9a83f860 853 wxLogStatus(wxT("Combobox string '%s' selected"), event.GetString().c_str());
1c383dba
VZ
854}
855
7fb23305
VZ
856void MyFrame::DoEnablePrint()
857{
2b5f62a0
VZ
858 if ( !m_nPrint )
859 return;
860
ad4ae6ed 861 wxToolBarBase *tb = GetToolBar();
2b5f62a0 862 tb->EnableTool(wxID_PRINT, !tb->GetToolEnabled(wxID_PRINT));
7fb23305
VZ
863}
864
97d7bfb8
RR
865void MyFrame::DoDeletePrint()
866{
2b5f62a0
VZ
867 if ( !m_nPrint )
868 return;
1c4f8f8d 869
2b5f62a0 870 wxToolBarBase *tb = GetToolBar();
97d7bfb8 871 tb->DeleteTool( wxID_PRINT );
2b5f62a0
VZ
872
873 m_nPrint--;
97d7bfb8
RR
874}
875
7fb23305
VZ
876void MyFrame::DoToggleHelp()
877{
ad4ae6ed 878 wxToolBarBase *tb = GetToolBar();
7fb23305
VZ
879 tb->ToggleTool( wxID_HELP, !tb->GetToolState( wxID_HELP ) );
880}
881
1be45608
VZ
882void MyFrame::OnToggleSearch(wxCommandEvent& WXUNUSED(event))
883{
1be45608
VZ
884 wxToolBarBase * const tb = GetToolBar();
885 if ( !m_searchTool )
886 {
887 wxSearchCtrl * const srch = new wxSearchCtrl(tb, wxID_ANY, "needle");
888 srch->SetMinSize(wxSize(80, -1));
cc260109 889 m_searchTool = tb->AddControl(srch);
1be45608
VZ
890 }
891 else // tool already exists
892 {
b3514fd6 893 wxControl * const win = m_searchTool->GetControl();
1be45608
VZ
894 if ( m_searchTool->GetToolBar() )
895 {
896 // attached now, remove it
b3514fd6 897 win->Hide();
1be45608
VZ
898 tb->RemoveTool(m_searchTool->GetId());
899 }
900 else // tool exists in detached state, attach it back
901 {
cc260109 902 tb->AddTool(m_searchTool);
b3514fd6 903 win->Show();
1be45608
VZ
904 }
905 }
b3514fd6
VZ
906
907 tb->Realize();
1be45608
VZ
908}
909
5ef2e633
VZ
910void MyFrame::OnUpdateCopyAndCut(wxUpdateUIEvent& event)
911{
96dc4236
VZ
912 event.Enable( m_textWindow->CanCopy() );
913}
914
915void MyFrame::OnUpdateToggleHorzText(wxUpdateUIEvent& event)
916{
917 wxToolBar *tbar = GetToolBar();
918 event.Enable( tbar &&
919 tbar->HasFlag(wxTB_TEXT) &&
920 !tbar->HasFlag(wxTB_NOICONS) );
5ef2e633
VZ
921}
922
a1f79c1e
VZ
923void MyFrame::OnChangeToolTip(wxCommandEvent& WXUNUSED(event))
924{
9a83f860 925 GetToolBar()->SetToolShortHelp(wxID_NEW, wxT("New toolbar button"));
a1f79c1e
VZ
926}
927
ec483b11
VZ
928void MyFrame::OnToolbarStyle(wxCommandEvent& event)
929{
930 long style = GetToolBar()->GetWindowStyle();
c66c8042 931 style &= ~(wxTB_NOICONS | wxTB_HORZ_TEXT);
ec483b11
VZ
932
933 switch ( event.GetId() )
934 {
935 case IDM_TOOLBAR_SHOW_TEXT:
c66c8042 936 style |= wxTB_NOICONS | (m_horzText ? wxTB_HORZ_TEXT : wxTB_TEXT);
ec483b11
VZ
937 break;
938
939 case IDM_TOOLBAR_SHOW_ICONS:
940 // nothing to do
941 break;
942
943 case IDM_TOOLBAR_SHOW_BOTH:
c66c8042 944 style |= (m_horzText ? wxTB_HORZ_TEXT : wxTB_TEXT);
ec483b11
VZ
945 }
946
947 GetToolBar()->SetWindowStyle(style);
948}
949
211df056
VZ
950void MyFrame::OnToolbarBgCol(wxCommandEvent& WXUNUSED(event))
951{
952 wxColour col = wxGetColourFromUser
953 (
954 this,
955 GetToolBar()->GetBackgroundColour(),
956 "Toolbar background colour"
957 );
958 if ( col.IsOk() )
959 {
960 GetToolBar()->SetBackgroundColour(col);
961 GetToolBar()->Refresh();
962 }
963}
964
5e3b8b93
VZ
965void MyFrame::OnToolbarCustomBitmap(wxCommandEvent& WXUNUSED(event))
966{
6541fd4b 967 m_pathBmp = wxLoadFileSelector("custom bitmap", "");
5e3b8b93
VZ
968
969 RecreateToolbar();
970}
971
bdc72a22
VZ
972void MyFrame::OnInsertPrint(wxCommandEvent& WXUNUSED(event))
973{
2b5f62a0 974 m_nPrint++;
bdc72a22 975
2b5f62a0 976 wxToolBarBase *tb = GetToolBar();
9a83f860 977 tb->InsertTool(0, wxID_PRINT, wxT("New print"),
2b5f62a0
VZ
978 wxBITMAP(print), wxNullBitmap,
979 wxITEM_NORMAL,
9a83f860
VZ
980 wxT("Delete this tool"),
981 wxT("This button was inserted into the toolbar"));
2b5f62a0
VZ
982
983 // must call Realize() after adding a new button
984 tb->Realize();
bdc72a22
VZ
985}
986
3bf4189d
VZ
987void MyFrame::OnToggleRadioBtn(wxCommandEvent& event)
988{
989 if ( m_tbar )
990 {
991 m_tbar->ToggleTool(IDM_TOOLBAR_OTHER_1 +
992 event.GetId() - IDM_TOOLBAR_TOGGLERADIOBTN1, true);
993 }
994}
a9a0ceca
VZ
995
996void MyFrame::OnToolDropdown(wxCommandEvent& event)
997{
998 wxString str;
9a83f860 999 str.Printf( wxT("Dropdown on tool %d\n"), event.GetId());
a9a0ceca
VZ
1000 m_textWindow->WriteText( str );
1001
1002 event.Skip();
1003}