]> git.saurik.com Git - wxWidgets.git/blame - samples/toolbar/toolbar.cpp
fix handling of long lines in wxGridCellAutoWrapStringRenderer
[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
f6bcfd97
BP
40#ifdef __WXMSW__
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
5f4d35b8 63#if !defined(__WXMSW__) && !defined(__WXPM__)
ad9bb75f 64 #include "mondrian.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,
ab1ca7b3 103 const wxString& title = _T("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,
ab1ca7b3 307 _T("wxToolBar Sample"),
4c865f6d 308 wxPoint(100, 100), wxSize(550, 300));
14d1ccd8 309
bc2ec626 310 frame->Show(true);
7fb23305 311
8520f137 312#if wxUSE_STATUSBAR
be5a51fb 313 frame->SetStatusText(_T("Hello, wxWidgets"));
0cfc2a92 314#endif
7fb23305 315
5e3b8b93
VZ
316 wxInitAllImageHandlers();
317
7fb23305
VZ
318 SetTopWindow(frame);
319
bc2ec626 320 return true;
14d1ccd8
JS
321}
322
5ef2e633 323void MyFrame::RecreateToolbar()
14d1ccd8 324{
bf95a04f
JS
325#ifdef __WXWINCE__
326 // On Windows CE, we should not delete the
327 // previous toolbar in case it contains the menubar.
34621cc5 328 // We'll try to accommodate this usage in due course.
bf95a04f
JS
329 wxToolBar* toolBar = CreateToolBar();
330#else
5ef2e633 331 // delete and recreate the toolbar
ad4ae6ed 332 wxToolBarBase *toolBar = GetToolBar();
ec483b11
VZ
333 long style = toolBar ? toolBar->GetWindowStyle() : TOOLBAR_STYLE;
334
dea482c9
PC
335 if (toolBar && m_searchTool && m_searchTool->GetToolBar() == NULL)
336 {
337 // see ~MyFrame()
338 toolBar->AddTool(m_searchTool);
339 }
340 m_searchTool = NULL;
341
5ef2e633 342 delete toolBar;
14d1ccd8 343
5ef2e633
VZ
344 SetToolBar(NULL);
345
7a976304
VZ
346 style &= ~(wxTB_HORIZONTAL | wxTB_VERTICAL | wxTB_BOTTOM | wxTB_RIGHT | wxTB_HORZ_LAYOUT);
347 switch( m_toolbarPosition )
348 {
349 case TOOLBAR_LEFT:
350 style |= wxTB_LEFT;
351 break;
352 case TOOLBAR_TOP:
353 style |= wxTB_TOP;
354 break;
355 case TOOLBAR_RIGHT:
356 style |= wxTB_RIGHT;
357 break;
358 case TOOLBAR_BOTTOM:
5b2acc3a 359 style |= wxTB_BOTTOM;
7a976304
VZ
360 break;
361 }
96dc4236 362
6a1b3ead
VZ
363 if ( m_showTooltips )
364 style &= ~wxTB_NO_TOOLTIPS;
365 else
366 style |= wxTB_NO_TOOLTIPS;
367
96dc4236
VZ
368 if ( style & wxTB_TEXT && !(style & wxTB_NOICONS) && m_horzText )
369 style |= wxTB_HORZ_LAYOUT;
5ef2e633
VZ
370
371 toolBar = CreateToolBar(style, ID_TOOLBAR);
bf95a04f 372#endif
5ef2e633 373
079b2f6b
JS
374 PopulateToolbar(toolBar);
375}
376
377void MyFrame::PopulateToolbar(wxToolBarBase* toolBar)
378{
5ef2e633 379 // Set up toolbar
8d0a7b56
VZ
380 enum
381 {
382 Tool_new,
383 Tool_open,
384 Tool_save,
385 Tool_copy,
386 Tool_cut,
387 Tool_paste,
388 Tool_print,
389 Tool_help,
390 Tool_Max
391 };
392
393 wxBitmap toolBarBitmaps[Tool_Max];
5ef2e633 394
f6bcfd97 395#if USE_XPM_BITMAPS
8d0a7b56
VZ
396 #define INIT_TOOL_BMP(bmp) \
397 toolBarBitmaps[Tool_##bmp] = wxBitmap(bmp##_xpm)
f6bcfd97 398#else // !USE_XPM_BITMAPS
8d0a7b56
VZ
399 #define INIT_TOOL_BMP(bmp) \
400 toolBarBitmaps[Tool_##bmp] = wxBITMAP(bmp)
f6bcfd97 401#endif // USE_XPM_BITMAPS/!USE_XPM_BITMAPS
40515a21 402
8d0a7b56
VZ
403 INIT_TOOL_BMP(new);
404 INIT_TOOL_BMP(open);
405 INIT_TOOL_BMP(save);
406 INIT_TOOL_BMP(copy);
407 INIT_TOOL_BMP(cut);
408 INIT_TOOL_BMP(paste);
409 INIT_TOOL_BMP(print);
410 INIT_TOOL_BMP(help);
efdb961d 411
8d0a7b56
VZ
412 int w = toolBarBitmaps[Tool_new].GetWidth(),
413 h = toolBarBitmaps[Tool_new].GetHeight();
414
5ef2e633
VZ
415 if ( !m_smallToolbar )
416 {
8d0a7b56
VZ
417 w *= 2;
418 h *= 2;
419
420 for ( size_t n = Tool_new; n < WXSIZEOF(toolBarBitmaps); n++ )
40515a21
VZ
421 {
422 toolBarBitmaps[n] =
368d59f0 423 wxBitmap(toolBarBitmaps[n].ConvertToImage().Scale(w, h));
40515a21 424 }
5ef2e633 425 }
14d1ccd8 426
040d3c2e
VZ
427 // this call is actually unnecessary as the toolbar will adjust its tools
428 // size to fit the biggest icon used anyhow but it doesn't hurt neither
6a1b3ead
VZ
429 toolBar->SetToolBitmapSize(wxSize(w, h));
430
e112f019 431 toolBar->AddTool(wxID_NEW, _T("New"),
a9a0ceca 432 toolBarBitmaps[Tool_new], wxNullBitmap, wxITEM_DROPDOWN,
e112f019 433 _T("New file"), _T("This is help for new file tool"));
a9a0ceca
VZ
434
435 wxMenu* menu = new wxMenu;
436 menu->Append(wxID_ANY, _T("&First dummy item"));
437 menu->Append(wxID_ANY, _T("&Second dummy item"));
438 menu->AppendSeparator();
439 menu->Append(wxID_EXIT, _T("Exit"));
440 toolBar->SetDropdownMenu(wxID_NEW, menu);
441
e112f019
VZ
442 toolBar->AddTool(wxID_OPEN, _T("Open"),
443 toolBarBitmaps[Tool_open], wxNullBitmap, wxITEM_NORMAL,
444 _T("Open file"), _T("This is help for open file tool"));
14d1ccd8 445
1be45608 446#if USE_CONTROLS_IN_TOOLBAR
5ef2e633 447 // adding a combo to a vertical toolbar is not very smart
1be45608 448 if ( !toolBar->IsVertical() )
5ef2e633 449 {
b529726e 450 wxComboBox *combo = new wxComboBox(toolBar, ID_COMBO, wxEmptyString, wxDefaultPosition, wxSize(100,-1) );
2b5f62a0
VZ
451 combo->Append(_T("This"));
452 combo->Append(_T("is a"));
453 combo->Append(_T("combobox"));
454 combo->Append(_T("in a"));
455 combo->Append(_T("toolbar"));
cdb11cb9 456 toolBar->AddControl(combo, _T("Combo Label"));
5ef2e633 457 }
1be45608 458#endif // USE_CONTROLS_IN_TOOLBAR
14d1ccd8 459
8d0a7b56
VZ
460 toolBar->AddTool(wxID_SAVE, _T("Save"), toolBarBitmaps[Tool_save], _T("Toggle button 1"), wxITEM_CHECK);
461 toolBar->AddTool(wxID_COPY, _T("Copy"), toolBarBitmaps[Tool_copy], _T("Toggle button 2"), wxITEM_CHECK);
462 toolBar->AddTool(wxID_CUT, _T("Cut"), toolBarBitmaps[Tool_cut], _T("Toggle/Untoggle help button"));
463 toolBar->AddTool(wxID_PASTE, _T("Paste"), toolBarBitmaps[Tool_paste], _T("Paste"));
464
465 if ( m_useCustomDisabled )
466 {
467 wxBitmap bmpDisabled(w, h);
468 {
469 wxMemoryDC dc;
470 dc.SelectObject(bmpDisabled);
471 dc.DrawBitmap(toolBarBitmaps[Tool_print], 0, 0);
472
473 wxPen pen(*wxRED, 5);
474 dc.SetPen(pen);
475 dc.DrawLine(0, 0, w, h);
476 }
477
478 toolBar->AddTool(wxID_PRINT, _T("Print"), toolBarBitmaps[Tool_print],
479 bmpDisabled);
480 }
481 else
482 {
483 toolBar->AddTool(wxID_PRINT, _T("Print"), toolBarBitmaps[Tool_print],
484 _T("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."));
485 }
486
40515a21 487 toolBar->AddSeparator();
8d0a7b56 488 toolBar->AddTool(wxID_HELP, _T("Help"), toolBarBitmaps[Tool_help], _T("Help button"), wxITEM_CHECK);
13437238 489
5e3b8b93
VZ
490 if ( !m_pathBmp.empty() )
491 {
492 // create a tool with a custom bitmap for testing
493 wxImage img(m_pathBmp);
494 if ( img.Ok() )
495 {
496 if ( img.GetWidth() > w && img.GetHeight() > h )
497 img = img.GetSubImage(wxRect(0, 0, w, h));
498
499 toolBar->AddSeparator();
500 toolBar->AddTool(wxID_ANY, _T("Custom"), img);
501 }
502 }
503
5ef2e633
VZ
504 // after adding the buttons to the toolbar, must call Realize() to reflect
505 // the changes
506 toolBar->Realize();
98066234 507
7a976304 508 toolBar->SetRows(!(toolBar->IsVertical()) ? m_rows : 10 / m_rows);
14d1ccd8
JS
509}
510
ad9bb75f
VZ
511// ----------------------------------------------------------------------------
512// MyFrame
513// ----------------------------------------------------------------------------
13437238
JS
514
515// Define my frame constructor
7fb23305
VZ
516MyFrame::MyFrame(wxFrame* parent,
517 wxWindowID id,
518 const wxString& title,
519 const wxPoint& pos,
520 const wxSize& size,
521 long style)
522 : wxFrame(parent, id, title, pos, size, style)
14d1ccd8 523{
f6bcfd97 524 m_tbar = NULL;
98066234 525
bc2ec626 526 m_smallToolbar = true;
bc2ec626 527 m_horzText = false;
8d0a7b56 528 m_useCustomDisabled = false;
6a1b3ead 529 m_showTooltips = true;
b3514fd6 530 m_searchTool = NULL;
6a1b3ead 531
98066234 532 m_rows = 1;
2b5f62a0 533 m_nPrint = 1;
ad9bb75f 534
8520f137 535#if wxUSE_STATUSBAR
ad9bb75f
VZ
536 // Give it a status line
537 CreateStatusBar();
0cfc2a92 538#endif
ad9bb75f
VZ
539
540 // Give it an icon
541 SetIcon(wxICON(mondrian));
542
543 // Make a menubar
544 wxMenu *tbarMenu = new wxMenu;
ba0abe3c 545 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLE_TOOLBAR,
2b5f62a0
VZ
546 _T("Toggle &toolbar\tCtrl-Z"),
547 _T("Show or hide the toolbar"));
ba0abe3c
VZ
548
549 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLE_ANOTHER_TOOLBAR,
2b5f62a0
VZ
550 _T("Toggle &another toolbar\tCtrl-A"),
551 _T("Show/hide another test toolbar"));
ba0abe3c 552
96dc4236
VZ
553 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT,
554 _T("Toggle hori&zontal text\tCtrl-H"),
555 _T("Show text under/alongside the icon"));
556
ba0abe3c 557 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLBARSIZE,
2b5f62a0
VZ
558 _T("&Toggle toolbar size\tCtrl-S"),
559 _T("Toggle between big/small toolbar"));
ba0abe3c 560
ba0abe3c 561 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLBARROWS,
2b5f62a0
VZ
562 _T("Toggle number of &rows\tCtrl-R"),
563 _T("Toggle number of toolbar rows between 1 and 2"));
5ef2e633 564
6a1b3ead
VZ
565 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLTIPS,
566 _T("Show &tooltips\tCtrl-L"),
567 _T("Show tooltips for the toolbar tools"));
568
8d0a7b56
VZ
569 tbarMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLECUSTOMDISABLED,
570 _T("Use c&ustom disabled images\tCtrl-U"),
571 _T("Switch between using system-generated and custom disabled images"));
572
573
7a976304
VZ
574 tbarMenu->AppendSeparator();
575 tbarMenu->AppendRadioItem(IDM_TOOLBAR_TOP_ORIENTATION,
576 _T("Set toolbar at the top of the window"),
577 _T("Set toolbar at the top of the window"));
578 tbarMenu->AppendRadioItem(IDM_TOOLBAR_LEFT_ORIENTATION,
579 _T("Set toolbar at the left of the window"),
580 _T("Set toolbar at the left of the window"));
581 tbarMenu->AppendRadioItem(IDM_TOOLBAR_BOTTOM_ORIENTATION,
5b2acc3a
RR
582 _T("Set toolbar at the bottom of the window"),
583 _T("Set toolbar at the bottom of the window"));
7a976304
VZ
584 tbarMenu->AppendRadioItem(IDM_TOOLBAR_RIGHT_ORIENTATION,
585 _T("Set toolbar at the right edge of the window"),
586 _T("Set toolbar at the right edge of the window"));
5ef2e633
VZ
587 tbarMenu->AppendSeparator();
588
f5e6e431
VZ
589 tbarMenu->AppendRadioItem(IDM_TOOLBAR_SHOW_TEXT, _T("Show &text\tCtrl-Alt-T"));
590 tbarMenu->AppendRadioItem(IDM_TOOLBAR_SHOW_ICONS, _T("Show &icons\tCtrl-Alt-I"));
591 tbarMenu->AppendRadioItem(IDM_TOOLBAR_SHOW_BOTH, _T("Show &both\tCtrl-Alt-B"));
5e3b8b93 592 tbarMenu->AppendSeparator();
211df056 593 tbarMenu->Append(IDM_TOOLBAR_BG_COL, _T("Choose bac&kground colour..."));
5e3b8b93 594 tbarMenu->Append(IDM_TOOLBAR_CUSTOM_PATH, _T("Custom &bitmap...\tCtrl-B"));
b487a08f 595
1be45608
VZ
596 wxMenu *toolMenu = new wxMenu;
597 toolMenu->Append(IDM_TOOLBAR_ENABLEPRINT, _T("&Enable print button\tCtrl-E"));
598 toolMenu->Append(IDM_TOOLBAR_DELETEPRINT, _T("&Delete print button\tCtrl-D"));
599 toolMenu->Append(IDM_TOOLBAR_INSERTPRINT, _T("&Insert print button\tCtrl-I"));
600 toolMenu->Append(IDM_TOOLBAR_TOGGLEHELP, _T("Toggle &help button\tCtrl-T"));
b3514fd6 601 toolMenu->AppendCheckItem(IDM_TOOLBAR_TOGGLESEARCH, _T("Toggle &search field\tCtrl-F"));
1be45608
VZ
602 toolMenu->AppendSeparator();
603 toolMenu->Append(IDM_TOOLBAR_TOGGLERADIOBTN1, _T("Toggle &1st radio button\tCtrl-1"));
604 toolMenu->Append(IDM_TOOLBAR_TOGGLERADIOBTN2, _T("Toggle &2nd radio button\tCtrl-2"));
605 toolMenu->Append(IDM_TOOLBAR_TOGGLERADIOBTN3, _T("Toggle &3rd radio button\tCtrl-3"));
606 toolMenu->AppendSeparator();
607 toolMenu->Append(IDM_TOOLBAR_CHANGE_TOOLTIP, _T("Change tooltip of \"New\""));
608
ad9bb75f 609 wxMenu *fileMenu = new wxMenu;
2b5f62a0 610 fileMenu->Append(wxID_EXIT, _T("E&xit\tAlt-X"), _T("Quit toolbar sample") );
ad9bb75f 611
ad9bb75f 612 wxMenu *helpMenu = new wxMenu;
2b5f62a0 613 helpMenu->Append(wxID_HELP, _T("&About"), _T("About toolbar sample"));
ad9bb75f
VZ
614
615 wxMenuBar* menuBar = new wxMenuBar( wxMB_DOCKABLE );
616
2b5f62a0
VZ
617 menuBar->Append(fileMenu, _T("&File"));
618 menuBar->Append(tbarMenu, _T("&Toolbar"));
1be45608 619 menuBar->Append(toolMenu, _T("Tool&s"));
2b5f62a0 620 menuBar->Append(helpMenu, _T("&Help"));
ad9bb75f
VZ
621
622 // Associate the menu bar with the frame
623 SetMenuBar(menuBar);
624
bc2ec626 625 menuBar->Check(IDM_TOOLBAR_SHOW_BOTH, true);
6a1b3ead 626 menuBar->Check(IDM_TOOLBAR_TOGGLETOOLTIPS, true);
c631abda 627
7a976304
VZ
628 menuBar->Check(IDM_TOOLBAR_TOP_ORIENTATION, true );
629 m_toolbarPosition = TOOLBAR_TOP;
079b2f6b 630
ad9bb75f 631 // Create the toolbar
5ef2e633 632 RecreateToolbar();
949b8e62 633
079b2f6b
JS
634 m_panel = new wxPanel(this, wxID_ANY);
635#if USE_UNMANAGED_TOOLBAR
636 m_extraToolBar = new wxToolBar(m_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_TEXT|wxTB_FLAT|wxTB_TOP);
637 PopulateToolbar(m_extraToolBar);
079b2f6b
JS
638#endif
639
640 m_textWindow = new wxTextCtrl(m_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE);
641
642 wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL);
643 m_panel->SetSizer(sizer);
1be45608 644#if USE_UNMANAGED_TOOLBAR
079b2f6b
JS
645 if (m_extraToolBar)
646 sizer->Add(m_extraToolBar, 0, wxEXPAND, 0);
1be45608 647#endif
079b2f6b 648 sizer->Add(m_textWindow, 1, wxEXPAND, 0);
5ef2e633 649}
ad9bb75f 650
1be45608
VZ
651MyFrame::~MyFrame()
652{
653 if ( m_searchTool && !m_searchTool->GetToolBar() )
654 {
655 // we currently can't delete a toolbar tool ourselves, so we have to
656 // attach it to the toolbar just for it to be deleted, this is pretty
657 // ugly and will need to be changed
658 GetToolBar()->AddTool(m_searchTool);
659 }
660}
661
f6bcfd97
BP
662void MyFrame::LayoutChildren()
663{
664 wxSize size = GetClientSize();
665
666 int offset;
667 if ( m_tbar )
668 {
7a7d2a14 669 m_tbar->SetSize(0, 0, wxDefaultCoord, size.y);
f6bcfd97
BP
670
671 offset = m_tbar->GetSize().x;
672 }
673 else
674 {
675 offset = 0;
676 }
677
079b2f6b 678 m_panel->SetSize(offset, 0, size.x - offset, size.y);
f6bcfd97
BP
679}
680
681void MyFrame::OnSize(wxSizeEvent& event)
682{
683 if ( m_tbar )
684 {
685 LayoutChildren();
686 }
687 else
688 {
689 event.Skip();
690 }
691}
692
ba0abe3c
VZ
693void MyFrame::OnToggleToolbar(wxCommandEvent& WXUNUSED(event))
694{
695 wxToolBar *tbar = GetToolBar();
696
697 if ( !tbar )
698 {
699 RecreateToolbar();
700 }
701 else
702 {
703 delete tbar;
704
705 SetToolBar(NULL);
706 }
707}
708
96dc4236
VZ
709void MyFrame::OnToggleHorizontalText(wxCommandEvent& WXUNUSED(event))
710{
711 m_horzText = !m_horzText;
712
713 RecreateToolbar();
714}
715
f6bcfd97
BP
716void MyFrame::OnToggleAnotherToolbar(wxCommandEvent& WXUNUSED(event))
717{
718 if ( m_tbar )
719 {
720 delete m_tbar;
721 m_tbar = NULL;
722 }
723 else
724 {
8927d6d1
VZ
725 long style = GetToolBar() ? GetToolBar()->GetWindowStyle()
726 : TOOLBAR_STYLE;
ec483b11
VZ
727 style &= ~wxTB_HORIZONTAL;
728 style |= wxTB_VERTICAL;
729
bc2ec626 730 m_tbar = new wxToolBar(this, wxID_ANY,
f6bcfd97 731 wxDefaultPosition, wxDefaultSize,
ec483b11
VZ
732 style);
733
69c14ebe
VZ
734 m_tbar->SetMargins(4, 4);
735
3bf4189d
VZ
736 m_tbar->AddRadioTool(IDM_TOOLBAR_OTHER_1, _T("First"), wxBITMAP(new));
737 m_tbar->AddRadioTool(IDM_TOOLBAR_OTHER_2, _T("Second"), wxBITMAP(open));
738 m_tbar->AddRadioTool(IDM_TOOLBAR_OTHER_3, _T("Third"), wxBITMAP(save));
ec483b11
VZ
739 m_tbar->AddSeparator();
740 m_tbar->AddTool(wxID_HELP, _T("Help"), wxBITMAP(help));
741
f6bcfd97
BP
742 m_tbar->Realize();
743 }
744
745 LayoutChildren();
746}
747
5ef2e633
VZ
748void MyFrame::OnToggleToolbarSize(wxCommandEvent& WXUNUSED(event))
749{
750 m_smallToolbar = !m_smallToolbar;
ad9bb75f 751
5ef2e633 752 RecreateToolbar();
7fb23305
VZ
753}
754
98066234
VZ
755void MyFrame::OnToggleToolbarRows(wxCommandEvent& WXUNUSED(event))
756{
757 // m_rows may be only 1 or 2
758 m_rows = 3 - m_rows;
759
7a976304 760 GetToolBar()->SetRows(!(GetToolBar()->IsVertical()) ? m_rows : 10 / m_rows);
98066234 761
9fb35cf1 762 //RecreateToolbar(); -- this is unneeded
98066234
VZ
763}
764
6a1b3ead
VZ
765void MyFrame::OnToggleTooltips(wxCommandEvent& WXUNUSED(event))
766{
767 m_showTooltips = !m_showTooltips;
768
769 RecreateToolbar();
770}
771
8d0a7b56
VZ
772void MyFrame::OnToggleCustomDisabled(wxCommandEvent& WXUNUSED(event))
773{
774 m_useCustomDisabled = !m_useCustomDisabled;
775
776 RecreateToolbar();
777}
778
7a976304 779void MyFrame::OnChangeOrientation(wxCommandEvent& event)
7fb23305 780{
7a976304
VZ
781 switch( event.GetId() )
782 {
783 case IDM_TOOLBAR_LEFT_ORIENTATION:
784 m_toolbarPosition = TOOLBAR_LEFT;
785 break;
786 case IDM_TOOLBAR_TOP_ORIENTATION:
787 m_toolbarPosition = TOOLBAR_TOP;
788 break;
789 case IDM_TOOLBAR_RIGHT_ORIENTATION:
790 m_toolbarPosition = TOOLBAR_RIGHT;
791 break;
792 case IDM_TOOLBAR_BOTTOM_ORIENTATION:
793 m_toolbarPosition = TOOLBAR_BOTTOM;
794 break;
795 }
5ef2e633 796 RecreateToolbar();
14d1ccd8
JS
797}
798
47908e25 799void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
14d1ccd8 800{
bc2ec626 801 Close(true);
14d1ccd8
JS
802}
803
e08bbf37 804void MyFrame::OnAbout(wxCommandEvent& event)
14d1ccd8 805{
e08bbf37
VZ
806 if ( event.IsChecked() )
807 m_textWindow->WriteText( _T("Help button down now.\n") );
808 else
809 m_textWindow->WriteText( _T("Help button up now.\n") );
810
be5a51fb 811 (void)wxMessageBox(_T("wxWidgets toolbar sample"), _T("About wxToolBar"));
13437238 812}
14d1ccd8 813
13437238
JS
814void MyFrame::OnToolLeftClick(wxCommandEvent& event)
815{
e179bd65
RR
816 wxString str;
817 str.Printf( _T("Clicked on tool %d\n"), event.GetId());
818 m_textWindow->WriteText( str );
ad9bb75f 819
e179bd65
RR
820 if (event.GetId() == wxID_COPY)
821 {
7fb23305 822 DoEnablePrint();
e179bd65 823 }
ad9bb75f 824
e179bd65
RR
825 if (event.GetId() == wxID_CUT)
826 {
7fb23305 827 DoToggleHelp();
e179bd65 828 }
1c4f8f8d 829
97d7bfb8
RR
830 if (event.GetId() == wxID_PRINT)
831 {
832 DoDeletePrint();
833 }
14d1ccd8
JS
834}
835
e052a316
VZ
836void MyFrame::OnToolRightClick(wxCommandEvent& event)
837{
838 m_textWindow->AppendText(
60c474a0
MB
839 wxString::Format(_T("Tool %d right clicked.\n"),
840 (int) event.GetInt()));
e052a316
VZ
841}
842
1c383dba
VZ
843void MyFrame::OnCombo(wxCommandEvent& event)
844{
845 wxLogStatus(_T("Combobox string '%s' selected"), event.GetString().c_str());
846}
847
7fb23305
VZ
848void MyFrame::DoEnablePrint()
849{
2b5f62a0
VZ
850 if ( !m_nPrint )
851 return;
852
ad4ae6ed 853 wxToolBarBase *tb = GetToolBar();
2b5f62a0 854 tb->EnableTool(wxID_PRINT, !tb->GetToolEnabled(wxID_PRINT));
7fb23305
VZ
855}
856
97d7bfb8
RR
857void MyFrame::DoDeletePrint()
858{
2b5f62a0
VZ
859 if ( !m_nPrint )
860 return;
1c4f8f8d 861
2b5f62a0 862 wxToolBarBase *tb = GetToolBar();
97d7bfb8 863 tb->DeleteTool( wxID_PRINT );
2b5f62a0
VZ
864
865 m_nPrint--;
97d7bfb8
RR
866}
867
7fb23305
VZ
868void MyFrame::DoToggleHelp()
869{
ad4ae6ed 870 wxToolBarBase *tb = GetToolBar();
7fb23305
VZ
871 tb->ToggleTool( wxID_HELP, !tb->GetToolState( wxID_HELP ) );
872}
873
1be45608
VZ
874void MyFrame::OnToggleSearch(wxCommandEvent& WXUNUSED(event))
875{
876 static const int searchPos = 3;
877
878 wxToolBarBase * const tb = GetToolBar();
879 if ( !m_searchTool )
880 {
881 wxSearchCtrl * const srch = new wxSearchCtrl(tb, wxID_ANY, "needle");
882 srch->SetMinSize(wxSize(80, -1));
883 m_searchTool = tb->InsertControl(searchPos, srch);
884 }
885 else // tool already exists
886 {
b3514fd6 887 wxControl * const win = m_searchTool->GetControl();
1be45608
VZ
888 if ( m_searchTool->GetToolBar() )
889 {
890 // attached now, remove it
b3514fd6 891 win->Hide();
1be45608
VZ
892 tb->RemoveTool(m_searchTool->GetId());
893 }
894 else // tool exists in detached state, attach it back
895 {
896 tb->InsertTool(searchPos, m_searchTool);
b3514fd6 897 win->Show();
1be45608
VZ
898 }
899 }
b3514fd6
VZ
900
901 tb->Realize();
1be45608
VZ
902}
903
5ef2e633
VZ
904void MyFrame::OnUpdateCopyAndCut(wxUpdateUIEvent& event)
905{
96dc4236
VZ
906 event.Enable( m_textWindow->CanCopy() );
907}
908
909void MyFrame::OnUpdateToggleHorzText(wxUpdateUIEvent& event)
910{
911 wxToolBar *tbar = GetToolBar();
912 event.Enable( tbar &&
913 tbar->HasFlag(wxTB_TEXT) &&
914 !tbar->HasFlag(wxTB_NOICONS) );
5ef2e633
VZ
915}
916
a1f79c1e
VZ
917void MyFrame::OnChangeToolTip(wxCommandEvent& WXUNUSED(event))
918{
919 GetToolBar()->SetToolShortHelp(wxID_NEW, _T("New toolbar button"));
920}
921
ec483b11
VZ
922void MyFrame::OnToolbarStyle(wxCommandEvent& event)
923{
924 long style = GetToolBar()->GetWindowStyle();
925 style &= ~(wxTB_NOICONS | wxTB_TEXT);
926
927 switch ( event.GetId() )
928 {
929 case IDM_TOOLBAR_SHOW_TEXT:
930 style |= wxTB_NOICONS | wxTB_TEXT;
931 break;
932
933 case IDM_TOOLBAR_SHOW_ICONS:
934 // nothing to do
935 break;
936
937 case IDM_TOOLBAR_SHOW_BOTH:
938 style |= wxTB_TEXT;
939 }
940
941 GetToolBar()->SetWindowStyle(style);
942}
943
211df056
VZ
944void MyFrame::OnToolbarBgCol(wxCommandEvent& WXUNUSED(event))
945{
946 wxColour col = wxGetColourFromUser
947 (
948 this,
949 GetToolBar()->GetBackgroundColour(),
950 "Toolbar background colour"
951 );
952 if ( col.IsOk() )
953 {
954 GetToolBar()->SetBackgroundColour(col);
955 GetToolBar()->Refresh();
956 }
957}
958
5e3b8b93
VZ
959void MyFrame::OnToolbarCustomBitmap(wxCommandEvent& WXUNUSED(event))
960{
961 m_pathBmp = wxFileSelector(_T("Custom bitmap path"));
962
963 RecreateToolbar();
964}
965
bdc72a22
VZ
966void MyFrame::OnInsertPrint(wxCommandEvent& WXUNUSED(event))
967{
2b5f62a0 968 m_nPrint++;
bdc72a22 969
2b5f62a0
VZ
970 wxToolBarBase *tb = GetToolBar();
971 tb->InsertTool(0, wxID_PRINT, _T("New print"),
972 wxBITMAP(print), wxNullBitmap,
973 wxITEM_NORMAL,
974 _T("Delete this tool"),
975 _T("This button was inserted into the toolbar"));
976
977 // must call Realize() after adding a new button
978 tb->Realize();
bdc72a22
VZ
979}
980
3bf4189d
VZ
981void MyFrame::OnToggleRadioBtn(wxCommandEvent& event)
982{
983 if ( m_tbar )
984 {
985 m_tbar->ToggleTool(IDM_TOOLBAR_OTHER_1 +
986 event.GetId() - IDM_TOOLBAR_TOGGLERADIOBTN1, true);
987 }
988}
a9a0ceca
VZ
989
990void MyFrame::OnToolDropdown(wxCommandEvent& event)
991{
992 wxString str;
993 str.Printf( _T("Dropdown on tool %d\n"), event.GetId());
994 m_textWindow->WriteText( str );
995
996 event.Skip();
997}