1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxToolBar sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
31 #include "wx/toolbar.h"
34 #include "wx/filedlg.h"
35 #include "wx/colordlg.h"
36 #include "wx/spinctrl.h"
37 #include "wx/srchctrl.h"
39 // define this to use XPMs everywhere (by default, BMPs are used under Win)
40 // BMPs use less space, but aren't compiled into the executable on other platforms
42 #define USE_XPM_BITMAPS 0
44 #define USE_XPM_BITMAPS 1
47 #if USE_XPM_BITMAPS && defined(__WXMSW__) && !wxUSE_XPM_IN_MSW
48 #error You need to enable XPM support to use XPM bitmaps with toolbar!
49 #endif // USE_XPM_BITMAPS
51 // If this is 1, the sample will test an extra toolbar identical to the
52 // main one, but not managed by the frame. This can test subtle differences
53 // in the way toolbars are handled, especially on Mac where there is one
54 // native, 'installed' toolbar.
55 #define USE_UNMANAGED_TOOLBAR 0
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
61 #if !defined(__WXMSW__) && !defined(__WXPM__)
62 #include "mondrian.xpm"
66 #include "bitmaps/new.xpm"
67 #include "bitmaps/open.xpm"
68 #include "bitmaps/save.xpm"
69 #include "bitmaps/copy.xpm"
70 #include "bitmaps/cut.xpm"
71 #include "bitmaps/preview.xpm" // paste XPM
72 #include "bitmaps/print.xpm"
73 #include "bitmaps/help.xpm"
74 #endif // USE_XPM_BITMAPS
84 // ----------------------------------------------------------------------------
86 // ----------------------------------------------------------------------------
88 // Define a new application
89 class MyApp
: public wxApp
96 class MyFrame
: public wxFrame
99 MyFrame(wxFrame
*parent
,
100 wxWindowID id
= wxID_ANY
,
101 const wxString
& title
= _T("wxToolBar Sample"),
102 const wxPoint
& pos
= wxDefaultPosition
,
103 const wxSize
& size
= wxDefaultSize
,
104 long style
= wxDEFAULT_FRAME_STYLE
|wxCLIP_CHILDREN
|wxNO_FULL_REPAINT_ON_RESIZE
);
106 void PopulateToolbar(wxToolBarBase
* toolBar
);
107 void RecreateToolbar();
109 void OnQuit(wxCommandEvent
& event
);
110 void OnAbout(wxCommandEvent
& event
);
112 void OnSize(wxSizeEvent
& event
);
114 void OnToggleToolbar(wxCommandEvent
& event
);
115 void OnToggleAnotherToolbar(wxCommandEvent
& event
);
116 void OnToggleHorizontalText(wxCommandEvent
& WXUNUSED(event
));
118 void OnToggleToolbarSize(wxCommandEvent
& event
);
119 void OnChangeOrientation(wxCommandEvent
& event
);
120 void OnToggleToolbarRows(wxCommandEvent
& event
);
121 void OnToggleTooltips(wxCommandEvent
& event
);
122 void OnToggleCustomDisabled(wxCommandEvent
& event
);
124 void OnEnablePrint(wxCommandEvent
& WXUNUSED(event
)) { DoEnablePrint(); }
125 void OnDeletePrint(wxCommandEvent
& WXUNUSED(event
)) { DoDeletePrint(); }
126 void OnInsertPrint(wxCommandEvent
& event
);
127 void OnChangeToolTip(wxCommandEvent
& event
);
128 void OnToggleHelp(wxCommandEvent
& WXUNUSED(event
)) { DoToggleHelp(); }
129 void OnToggleRadioBtn(wxCommandEvent
& event
);
131 void OnToolbarStyle(wxCommandEvent
& event
);
132 void OnToolbarBgCol(wxCommandEvent
& event
);
133 void OnToolbarCustomBitmap(wxCommandEvent
& event
);
135 void OnToolLeftClick(wxCommandEvent
& event
);
136 void OnToolRightClick(wxCommandEvent
& event
);
137 void OnToolDropdown(wxCommandEvent
& event
);
139 void OnCombo(wxCommandEvent
& event
);
141 void OnUpdateCopyAndCut(wxUpdateUIEvent
& event
);
142 void OnUpdateToggleHorzText(wxUpdateUIEvent
& event
);
143 void OnUpdateToggleRadioBtn(wxUpdateUIEvent
& event
)
144 { event
.Enable( m_tbar
!= NULL
); }
147 void DoEnablePrint();
148 void DoDeletePrint();
151 void LayoutChildren();
157 size_t m_rows
; // 1 or 2 only
159 // the number of print buttons we have (they're added/removed dynamically)
162 // store toolbar position for future use
163 Positions m_toolbarPosition
;
165 wxTextCtrl
*m_textWindow
;
168 wxToolBar
*m_extraToolBar
;
172 // the path to the custom bitmap for the test toolbar tool
175 DECLARE_EVENT_TABLE()
178 // ----------------------------------------------------------------------------
180 // ----------------------------------------------------------------------------
182 const int ID_TOOLBAR
= 500;
184 static const long TOOLBAR_STYLE
= wxTB_FLAT
| wxTB_DOCKABLE
| wxTB_TEXT
;
188 IDM_TOOLBAR_TOGGLETOOLBARSIZE
= 200,
189 IDM_TOOLBAR_TOGGLETOOLBARROWS
,
190 IDM_TOOLBAR_TOGGLETOOLTIPS
,
191 IDM_TOOLBAR_TOGGLECUSTOMDISABLED
,
192 IDM_TOOLBAR_ENABLEPRINT
,
193 IDM_TOOLBAR_DELETEPRINT
,
194 IDM_TOOLBAR_INSERTPRINT
,
195 IDM_TOOLBAR_TOGGLEHELP
,
196 IDM_TOOLBAR_TOGGLERADIOBTN1
,
197 IDM_TOOLBAR_TOGGLERADIOBTN2
,
198 IDM_TOOLBAR_TOGGLERADIOBTN3
,
199 IDM_TOOLBAR_TOGGLE_TOOLBAR
,
200 IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT
,
201 IDM_TOOLBAR_TOGGLE_ANOTHER_TOOLBAR
,
202 IDM_TOOLBAR_CHANGE_TOOLTIP
,
203 IDM_TOOLBAR_SHOW_TEXT
,
204 IDM_TOOLBAR_SHOW_ICONS
,
205 IDM_TOOLBAR_SHOW_BOTH
,
207 IDM_TOOLBAR_CUSTOM_PATH
,
208 IDM_TOOLBAR_TOP_ORIENTATION
,
209 IDM_TOOLBAR_LEFT_ORIENTATION
,
210 IDM_TOOLBAR_BOTTOM_ORIENTATION
,
211 IDM_TOOLBAR_RIGHT_ORIENTATION
,
220 // ----------------------------------------------------------------------------
222 // ----------------------------------------------------------------------------
224 // Notice that wxID_HELP will be processed for the 'About' menu and the toolbar
227 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
228 EVT_SIZE(MyFrame::OnSize
)
230 EVT_MENU(wxID_EXIT
, MyFrame::OnQuit
)
231 EVT_MENU(wxID_HELP
, MyFrame::OnAbout
)
233 EVT_MENU(IDM_TOOLBAR_TOGGLE_TOOLBAR
, MyFrame::OnToggleToolbar
)
234 EVT_MENU(IDM_TOOLBAR_TOGGLE_ANOTHER_TOOLBAR
, MyFrame::OnToggleAnotherToolbar
)
235 EVT_MENU(IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT
, MyFrame::OnToggleHorizontalText
)
237 EVT_MENU_RANGE(IDM_TOOLBAR_TOP_ORIENTATION
, IDM_TOOLBAR_RIGHT_ORIENTATION
, MyFrame::OnChangeOrientation
)
238 EVT_MENU(IDM_TOOLBAR_TOGGLETOOLBARSIZE
, MyFrame::OnToggleToolbarSize
)
239 EVT_MENU(IDM_TOOLBAR_TOGGLETOOLBARROWS
, MyFrame::OnToggleToolbarRows
)
240 EVT_MENU(IDM_TOOLBAR_TOGGLETOOLTIPS
, MyFrame::OnToggleTooltips
)
241 EVT_MENU(IDM_TOOLBAR_TOGGLECUSTOMDISABLED
, MyFrame::OnToggleCustomDisabled
)
243 EVT_MENU(IDM_TOOLBAR_ENABLEPRINT
, MyFrame::OnEnablePrint
)
244 EVT_MENU(IDM_TOOLBAR_DELETEPRINT
, MyFrame::OnDeletePrint
)
245 EVT_MENU(IDM_TOOLBAR_INSERTPRINT
, MyFrame::OnInsertPrint
)
246 EVT_MENU(IDM_TOOLBAR_TOGGLEHELP
, MyFrame::OnToggleHelp
)
247 EVT_MENU_RANGE(IDM_TOOLBAR_TOGGLERADIOBTN1
, IDM_TOOLBAR_TOGGLERADIOBTN3
,
248 MyFrame::OnToggleRadioBtn
)
249 EVT_MENU(IDM_TOOLBAR_CHANGE_TOOLTIP
, MyFrame::OnChangeToolTip
)
251 EVT_MENU_RANGE(IDM_TOOLBAR_SHOW_TEXT
, IDM_TOOLBAR_SHOW_BOTH
,
252 MyFrame::OnToolbarStyle
)
253 EVT_MENU(IDM_TOOLBAR_BG_COL
, MyFrame::OnToolbarBgCol
)
255 EVT_MENU(IDM_TOOLBAR_CUSTOM_PATH
, MyFrame::OnToolbarCustomBitmap
)
257 EVT_MENU(wxID_ANY
, MyFrame::OnToolLeftClick
)
259 EVT_COMBOBOX(ID_COMBO
, MyFrame::OnCombo
)
261 EVT_TOOL_RCLICKED(wxID_ANY
, MyFrame::OnToolRightClick
)
263 EVT_TOOL_DROPDOWN(wxID_ANY
, MyFrame::OnToolDropdown
)
265 EVT_UPDATE_UI(wxID_COPY
, MyFrame::OnUpdateCopyAndCut
)
266 EVT_UPDATE_UI(wxID_CUT
, MyFrame::OnUpdateCopyAndCut
)
268 EVT_UPDATE_UI_RANGE(IDM_TOOLBAR_TOGGLERADIOBTN1
,
269 IDM_TOOLBAR_TOGGLERADIOBTN3
,
270 MyFrame::OnUpdateToggleRadioBtn
)
271 EVT_UPDATE_UI(IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT
,
272 MyFrame::OnUpdateToggleHorzText
)
275 // ============================================================================
277 // ============================================================================
279 // ----------------------------------------------------------------------------
281 // ----------------------------------------------------------------------------
285 // The `main program' equivalent, creating the windows and returning the
289 if ( !wxApp::OnInit() )
292 // Create the main frame window
293 MyFrame
* frame
= new MyFrame((wxFrame
*) NULL
, wxID_ANY
,
294 _T("wxToolBar Sample"),
295 wxPoint(100, 100), wxSize(550, 300));
300 frame
->SetStatusText(_T("Hello, wxWidgets"));
303 wxInitAllImageHandlers();
310 void MyFrame::RecreateToolbar()
313 // On Windows CE, we should not delete the
314 // previous toolbar in case it contains the menubar.
315 // We'll try to accommodate this usage in due course.
316 wxToolBar
* toolBar
= CreateToolBar();
318 // delete and recreate the toolbar
319 wxToolBarBase
*toolBar
= GetToolBar();
320 long style
= toolBar
? toolBar
->GetWindowStyle() : TOOLBAR_STYLE
;
326 style
&= ~(wxTB_HORIZONTAL
| wxTB_VERTICAL
| wxTB_BOTTOM
| wxTB_RIGHT
| wxTB_HORZ_LAYOUT
);
327 switch( m_toolbarPosition
)
339 style
|= wxTB_BOTTOM
;
343 if ( m_showTooltips
)
344 style
&= ~wxTB_NO_TOOLTIPS
;
346 style
|= wxTB_NO_TOOLTIPS
;
348 if ( style
& wxTB_TEXT
&& !(style
& wxTB_NOICONS
) && m_horzText
)
349 style
|= wxTB_HORZ_LAYOUT
;
351 toolBar
= CreateToolBar(style
, ID_TOOLBAR
);
354 PopulateToolbar(toolBar
);
357 void MyFrame::PopulateToolbar(wxToolBarBase
* toolBar
)
373 wxBitmap toolBarBitmaps
[Tool_Max
];
376 #define INIT_TOOL_BMP(bmp) \
377 toolBarBitmaps[Tool_##bmp] = wxBitmap(bmp##_xpm)
378 #else // !USE_XPM_BITMAPS
379 #define INIT_TOOL_BMP(bmp) \
380 toolBarBitmaps[Tool_##bmp] = wxBITMAP(bmp)
381 #endif // USE_XPM_BITMAPS/!USE_XPM_BITMAPS
388 INIT_TOOL_BMP(paste
);
389 INIT_TOOL_BMP(print
);
392 int w
= toolBarBitmaps
[Tool_new
].GetWidth(),
393 h
= toolBarBitmaps
[Tool_new
].GetHeight();
395 if ( !m_smallToolbar
)
400 for ( size_t n
= Tool_new
; n
< WXSIZEOF(toolBarBitmaps
); n
++ )
403 wxBitmap(toolBarBitmaps
[n
].ConvertToImage().Scale(w
, h
));
407 toolBar
->SetToolBitmapSize(wxSize(w
, h
));
409 toolBar
->AddTool(wxID_NEW
, _T("New"),
410 toolBarBitmaps
[Tool_new
], wxNullBitmap
, wxITEM_DROPDOWN
,
411 _T("New file"), _T("This is help for new file tool"));
413 wxMenu
* menu
= new wxMenu
;
414 menu
->Append(wxID_ANY
, _T("&First dummy item"));
415 menu
->Append(wxID_ANY
, _T("&Second dummy item"));
416 menu
->AppendSeparator();
417 menu
->Append(wxID_EXIT
, _T("Exit"));
418 toolBar
->SetDropdownMenu(wxID_NEW
, menu
);
420 toolBar
->AddTool(wxID_OPEN
, _T("Open"),
421 toolBarBitmaps
[Tool_open
], wxNullBitmap
, wxITEM_NORMAL
,
422 _T("Open file"), _T("This is help for open file tool"));
424 // the generic toolbar doesn't really support this
425 #if wxUSE_TOOLBAR_NATIVE && !defined(__WXX11__) || defined(__WXUNIVERSAL__)
426 // adding a combo to a vertical toolbar is not very smart
427 if ( !( toolBar
->IsVertical() ) )
429 wxComboBox
*combo
= new wxComboBox(toolBar
, ID_COMBO
, wxEmptyString
, wxDefaultPosition
, wxSize(100,-1) );
430 combo
->Append(_T("This"));
431 combo
->Append(_T("is a"));
432 combo
->Append(_T("combobox"));
433 combo
->Append(_T("in a"));
434 combo
->Append(_T("toolbar"));
435 toolBar
->AddControl(combo
, _T("Combo Label"));
437 wxSpinCtrl
*spin
= new wxSpinCtrl( toolBar
, ID_SPIN
, wxT("0"), wxDefaultPosition
, wxSize(80,wxDefaultCoord
), 0, 0, 100 );
438 toolBar
->AddControl( spin
);
440 wxTextCtrl
*text
= new wxTextCtrl( toolBar
, -1, wxT("text"), wxDefaultPosition
, wxSize(80,wxDefaultCoord
) );
441 toolBar
->AddControl( text
);
443 wxSearchCtrl
*srch
= new wxSearchCtrl( toolBar
, -1, wxT("xx"), wxDefaultPosition
, wxSize(80,wxDefaultCoord
), wxSUNKEN_BORDER
);
444 toolBar
->AddControl( srch
);
446 #endif // toolbars which don't support controls
448 toolBar
->AddTool(wxID_SAVE
, _T("Save"), toolBarBitmaps
[Tool_save
], _T("Toggle button 1"), wxITEM_CHECK
);
449 toolBar
->AddTool(wxID_COPY
, _T("Copy"), toolBarBitmaps
[Tool_copy
], _T("Toggle button 2"), wxITEM_CHECK
);
450 toolBar
->AddTool(wxID_CUT
, _T("Cut"), toolBarBitmaps
[Tool_cut
], _T("Toggle/Untoggle help button"));
451 toolBar
->AddTool(wxID_PASTE
, _T("Paste"), toolBarBitmaps
[Tool_paste
], _T("Paste"));
453 if ( m_useCustomDisabled
)
455 wxBitmap
bmpDisabled(w
, h
);
458 dc
.SelectObject(bmpDisabled
);
459 dc
.DrawBitmap(toolBarBitmaps
[Tool_print
], 0, 0);
461 wxPen
pen(*wxRED
, 5);
463 dc
.DrawLine(0, 0, w
, h
);
466 toolBar
->AddTool(wxID_PRINT
, _T("Print"), toolBarBitmaps
[Tool_print
],
471 toolBar
->AddTool(wxID_PRINT
, _T("Print"), toolBarBitmaps
[Tool_print
],
472 _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."));
475 toolBar
->AddSeparator();
476 toolBar
->AddTool(wxID_HELP
, _T("Help"), toolBarBitmaps
[Tool_help
], _T("Help button"), wxITEM_CHECK
);
478 if ( !m_pathBmp
.empty() )
480 // create a tool with a custom bitmap for testing
481 wxImage
img(m_pathBmp
);
484 if ( img
.GetWidth() > w
&& img
.GetHeight() > h
)
485 img
= img
.GetSubImage(wxRect(0, 0, w
, h
));
487 toolBar
->AddSeparator();
488 toolBar
->AddTool(wxID_ANY
, _T("Custom"), img
);
492 // after adding the buttons to the toolbar, must call Realize() to reflect
496 toolBar
->SetRows(!(toolBar
->IsVertical()) ? m_rows
: 10 / m_rows
);
499 // ----------------------------------------------------------------------------
501 // ----------------------------------------------------------------------------
503 // Define my frame constructor
504 MyFrame::MyFrame(wxFrame
* parent
,
506 const wxString
& title
,
510 : wxFrame(parent
, id
, title
, pos
, size
, style
)
514 m_smallToolbar
= true;
516 m_useCustomDisabled
= false;
517 m_showTooltips
= true;
523 // Give it a status line
528 SetIcon(wxICON(mondrian
));
531 wxMenu
*tbarMenu
= new wxMenu
;
532 tbarMenu
->AppendCheckItem(IDM_TOOLBAR_TOGGLE_TOOLBAR
,
533 _T("Toggle &toolbar\tCtrl-Z"),
534 _T("Show or hide the toolbar"));
536 tbarMenu
->AppendCheckItem(IDM_TOOLBAR_TOGGLE_ANOTHER_TOOLBAR
,
537 _T("Toggle &another toolbar\tCtrl-A"),
538 _T("Show/hide another test toolbar"));
540 tbarMenu
->AppendCheckItem(IDM_TOOLBAR_TOGGLE_HORIZONTAL_TEXT
,
541 _T("Toggle hori&zontal text\tCtrl-H"),
542 _T("Show text under/alongside the icon"));
544 tbarMenu
->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLBARSIZE
,
545 _T("&Toggle toolbar size\tCtrl-S"),
546 _T("Toggle between big/small toolbar"));
548 tbarMenu
->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLBARROWS
,
549 _T("Toggle number of &rows\tCtrl-R"),
550 _T("Toggle number of toolbar rows between 1 and 2"));
552 tbarMenu
->AppendCheckItem(IDM_TOOLBAR_TOGGLETOOLTIPS
,
553 _T("Show &tooltips\tCtrl-L"),
554 _T("Show tooltips for the toolbar tools"));
556 tbarMenu
->AppendCheckItem(IDM_TOOLBAR_TOGGLECUSTOMDISABLED
,
557 _T("Use c&ustom disabled images\tCtrl-U"),
558 _T("Switch between using system-generated and custom disabled images"));
561 tbarMenu
->AppendSeparator();
562 tbarMenu
->AppendRadioItem(IDM_TOOLBAR_TOP_ORIENTATION
,
563 _T("Set toolbar at the top of the window"),
564 _T("Set toolbar at the top of the window"));
565 tbarMenu
->AppendRadioItem(IDM_TOOLBAR_LEFT_ORIENTATION
,
566 _T("Set toolbar at the left of the window"),
567 _T("Set toolbar at the left of the window"));
568 tbarMenu
->AppendRadioItem(IDM_TOOLBAR_BOTTOM_ORIENTATION
,
569 _T("Set toolbar at the bottom of the window"),
570 _T("Set toolbar at the bottom of the window"));
571 tbarMenu
->AppendRadioItem(IDM_TOOLBAR_RIGHT_ORIENTATION
,
572 _T("Set toolbar at the right edge of the window"),
573 _T("Set toolbar at the right edge of the window"));
574 tbarMenu
->AppendSeparator();
576 tbarMenu
->Append(IDM_TOOLBAR_ENABLEPRINT
, _T("&Enable print button\tCtrl-E"));
577 tbarMenu
->Append(IDM_TOOLBAR_DELETEPRINT
, _T("&Delete print button\tCtrl-D"));
578 tbarMenu
->Append(IDM_TOOLBAR_INSERTPRINT
, _T("&Insert print button\tCtrl-I"));
579 tbarMenu
->Append(IDM_TOOLBAR_TOGGLEHELP
, _T("Toggle &help button\tCtrl-T"));
580 tbarMenu
->AppendSeparator();
581 tbarMenu
->Append(IDM_TOOLBAR_TOGGLERADIOBTN1
, _T("Toggle &1st radio button\tCtrl-1"));
582 tbarMenu
->Append(IDM_TOOLBAR_TOGGLERADIOBTN2
, _T("Toggle &2nd radio button\tCtrl-2"));
583 tbarMenu
->Append(IDM_TOOLBAR_TOGGLERADIOBTN3
, _T("Toggle &3rd radio button\tCtrl-3"));
584 tbarMenu
->AppendSeparator();
585 tbarMenu
->Append(IDM_TOOLBAR_CHANGE_TOOLTIP
, _T("Change tool tip"));
586 tbarMenu
->AppendSeparator();
587 tbarMenu
->AppendRadioItem(IDM_TOOLBAR_SHOW_TEXT
, _T("Show &text\tCtrl-Alt-T"));
588 tbarMenu
->AppendRadioItem(IDM_TOOLBAR_SHOW_ICONS
, _T("Show &icons\tCtrl-Alt-I"));
589 tbarMenu
->AppendRadioItem(IDM_TOOLBAR_SHOW_BOTH
, _T("Show &both\tCtrl-Alt-B"));
590 tbarMenu
->AppendSeparator();
591 tbarMenu
->Append(IDM_TOOLBAR_BG_COL
, _T("Choose bac&kground colour..."));
592 tbarMenu
->Append(IDM_TOOLBAR_CUSTOM_PATH
, _T("Custom &bitmap...\tCtrl-B"));
594 wxMenu
*fileMenu
= new wxMenu
;
595 fileMenu
->Append(wxID_EXIT
, _T("E&xit\tAlt-X"), _T("Quit toolbar sample") );
597 wxMenu
*helpMenu
= new wxMenu
;
598 helpMenu
->Append(wxID_HELP
, _T("&About"), _T("About toolbar sample"));
600 wxMenuBar
* menuBar
= new wxMenuBar( wxMB_DOCKABLE
);
602 menuBar
->Append(fileMenu
, _T("&File"));
603 menuBar
->Append(tbarMenu
, _T("&Toolbar"));
604 menuBar
->Append(helpMenu
, _T("&Help"));
606 // Associate the menu bar with the frame
609 menuBar
->Check(IDM_TOOLBAR_SHOW_BOTH
, true);
610 menuBar
->Check(IDM_TOOLBAR_TOGGLETOOLTIPS
, true);
612 menuBar
->Check(IDM_TOOLBAR_TOP_ORIENTATION
, true );
613 m_toolbarPosition
= TOOLBAR_TOP
;
615 // Create the toolbar
618 m_panel
= new wxPanel(this, wxID_ANY
);
619 #if USE_UNMANAGED_TOOLBAR
620 m_extraToolBar
= new wxToolBar(m_panel
, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
, wxTB_TEXT
|wxTB_FLAT
|wxTB_TOP
);
621 PopulateToolbar(m_extraToolBar
);
623 m_extraToolBar
= NULL
;
626 m_textWindow
= new wxTextCtrl(m_panel
, wxID_ANY
, wxEmptyString
, wxDefaultPosition
, wxDefaultSize
, wxTE_MULTILINE
);
628 wxBoxSizer
* sizer
= new wxBoxSizer(wxVERTICAL
);
629 m_panel
->SetSizer(sizer
);
631 sizer
->Add(m_extraToolBar
, 0, wxEXPAND
, 0);
632 sizer
->Add(m_textWindow
, 1, wxEXPAND
, 0);
635 void MyFrame::LayoutChildren()
637 wxSize size
= GetClientSize();
642 m_tbar
->SetSize(0, 0, wxDefaultCoord
, size
.y
);
644 offset
= m_tbar
->GetSize().x
;
651 m_panel
->SetSize(offset
, 0, size
.x
- offset
, size
.y
);
654 void MyFrame::OnSize(wxSizeEvent
& event
)
666 void MyFrame::OnToggleToolbar(wxCommandEvent
& WXUNUSED(event
))
668 wxToolBar
*tbar
= GetToolBar();
682 void MyFrame::OnToggleHorizontalText(wxCommandEvent
& WXUNUSED(event
))
684 m_horzText
= !m_horzText
;
689 void MyFrame::OnToggleAnotherToolbar(wxCommandEvent
& WXUNUSED(event
))
698 long style
= GetToolBar() ? GetToolBar()->GetWindowStyle()
700 style
&= ~wxTB_HORIZONTAL
;
701 style
|= wxTB_VERTICAL
;
703 m_tbar
= new wxToolBar(this, wxID_ANY
,
704 wxDefaultPosition
, wxDefaultSize
,
707 m_tbar
->SetMargins(4, 4);
709 m_tbar
->AddRadioTool(IDM_TOOLBAR_OTHER_1
, _T("First"), wxBITMAP(new));
710 m_tbar
->AddRadioTool(IDM_TOOLBAR_OTHER_2
, _T("Second"), wxBITMAP(open
));
711 m_tbar
->AddRadioTool(IDM_TOOLBAR_OTHER_3
, _T("Third"), wxBITMAP(save
));
712 m_tbar
->AddSeparator();
713 m_tbar
->AddTool(wxID_HELP
, _T("Help"), wxBITMAP(help
));
721 void MyFrame::OnToggleToolbarSize(wxCommandEvent
& WXUNUSED(event
))
723 m_smallToolbar
= !m_smallToolbar
;
728 void MyFrame::OnToggleToolbarRows(wxCommandEvent
& WXUNUSED(event
))
730 // m_rows may be only 1 or 2
733 GetToolBar()->SetRows(!(GetToolBar()->IsVertical()) ? m_rows
: 10 / m_rows
);
735 //RecreateToolbar(); -- this is unneeded
738 void MyFrame::OnToggleTooltips(wxCommandEvent
& WXUNUSED(event
))
740 m_showTooltips
= !m_showTooltips
;
745 void MyFrame::OnToggleCustomDisabled(wxCommandEvent
& WXUNUSED(event
))
747 m_useCustomDisabled
= !m_useCustomDisabled
;
752 void MyFrame::OnChangeOrientation(wxCommandEvent
& event
)
754 switch( event
.GetId() )
756 case IDM_TOOLBAR_LEFT_ORIENTATION
:
757 m_toolbarPosition
= TOOLBAR_LEFT
;
759 case IDM_TOOLBAR_TOP_ORIENTATION
:
760 m_toolbarPosition
= TOOLBAR_TOP
;
762 case IDM_TOOLBAR_RIGHT_ORIENTATION
:
763 m_toolbarPosition
= TOOLBAR_RIGHT
;
765 case IDM_TOOLBAR_BOTTOM_ORIENTATION
:
766 m_toolbarPosition
= TOOLBAR_BOTTOM
;
772 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
777 void MyFrame::OnAbout(wxCommandEvent
& event
)
779 if ( event
.IsChecked() )
780 m_textWindow
->WriteText( _T("Help button down now.\n") );
782 m_textWindow
->WriteText( _T("Help button up now.\n") );
784 (void)wxMessageBox(_T("wxWidgets toolbar sample"), _T("About wxToolBar"));
787 void MyFrame::OnToolLeftClick(wxCommandEvent
& event
)
790 str
.Printf( _T("Clicked on tool %d\n"), event
.GetId());
791 m_textWindow
->WriteText( str
);
793 if (event
.GetId() == wxID_COPY
)
798 if (event
.GetId() == wxID_CUT
)
803 if (event
.GetId() == wxID_PRINT
)
809 void MyFrame::OnToolRightClick(wxCommandEvent
& event
)
811 m_textWindow
->AppendText(
812 wxString::Format(_T("Tool %d right clicked.\n"),
813 (int) event
.GetInt()));
816 void MyFrame::OnCombo(wxCommandEvent
& event
)
818 wxLogStatus(_T("Combobox string '%s' selected"), event
.GetString().c_str());
821 void MyFrame::DoEnablePrint()
826 wxToolBarBase
*tb
= GetToolBar();
827 tb
->EnableTool(wxID_PRINT
, !tb
->GetToolEnabled(wxID_PRINT
));
830 void MyFrame::DoDeletePrint()
835 wxToolBarBase
*tb
= GetToolBar();
836 tb
->DeleteTool( wxID_PRINT
);
841 void MyFrame::DoToggleHelp()
843 wxToolBarBase
*tb
= GetToolBar();
844 tb
->ToggleTool( wxID_HELP
, !tb
->GetToolState( wxID_HELP
) );
847 void MyFrame::OnUpdateCopyAndCut(wxUpdateUIEvent
& event
)
849 event
.Enable( m_textWindow
->CanCopy() );
852 void MyFrame::OnUpdateToggleHorzText(wxUpdateUIEvent
& event
)
854 wxToolBar
*tbar
= GetToolBar();
855 event
.Enable( tbar
&&
856 tbar
->HasFlag(wxTB_TEXT
) &&
857 !tbar
->HasFlag(wxTB_NOICONS
) );
860 void MyFrame::OnChangeToolTip(wxCommandEvent
& WXUNUSED(event
))
862 GetToolBar()->SetToolShortHelp(wxID_NEW
, _T("New toolbar button"));
865 void MyFrame::OnToolbarStyle(wxCommandEvent
& event
)
867 long style
= GetToolBar()->GetWindowStyle();
868 style
&= ~(wxTB_NOICONS
| wxTB_TEXT
);
870 switch ( event
.GetId() )
872 case IDM_TOOLBAR_SHOW_TEXT
:
873 style
|= wxTB_NOICONS
| wxTB_TEXT
;
876 case IDM_TOOLBAR_SHOW_ICONS
:
880 case IDM_TOOLBAR_SHOW_BOTH
:
884 GetToolBar()->SetWindowStyle(style
);
887 void MyFrame::OnToolbarBgCol(wxCommandEvent
& WXUNUSED(event
))
889 wxColour col
= wxGetColourFromUser
892 GetToolBar()->GetBackgroundColour(),
893 "Toolbar background colour"
897 GetToolBar()->SetBackgroundColour(col
);
898 GetToolBar()->Refresh();
902 void MyFrame::OnToolbarCustomBitmap(wxCommandEvent
& WXUNUSED(event
))
904 m_pathBmp
= wxFileSelector(_T("Custom bitmap path"));
909 void MyFrame::OnInsertPrint(wxCommandEvent
& WXUNUSED(event
))
913 wxToolBarBase
*tb
= GetToolBar();
914 tb
->InsertTool(0, wxID_PRINT
, _T("New print"),
915 wxBITMAP(print
), wxNullBitmap
,
917 _T("Delete this tool"),
918 _T("This button was inserted into the toolbar"));
920 // must call Realize() after adding a new button
924 void MyFrame::OnToggleRadioBtn(wxCommandEvent
& event
)
928 m_tbar
->ToggleTool(IDM_TOOLBAR_OTHER_1
+
929 event
.GetId() - IDM_TOOLBAR_TOGGLERADIOBTN1
, true);
933 void MyFrame::OnToolDropdown(wxCommandEvent
& event
)
936 str
.Printf( _T("Dropdown on tool %d\n"), event
.GetId());
937 m_textWindow
->WriteText( str
);