1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/menu.cpp
3 // Purpose: wxMenu/wxMenuBar sample
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin
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/msgdlg.h"
33 #include "wx/textctrl.h"
34 #include "wx/textdlg.h"
39 #error "menu sample requires wxUSE_MENUS=1"
42 // not all ports have support for EVT_CONTEXT_MENU yet, don't define
43 // USE_CONTEXT_MENU for those which don't
44 #if defined(__WXMOTIF__) || defined(__WXPM__) || defined(__WXX11__) || defined(__WXMGL__)
45 #define USE_CONTEXT_MENU 0
47 #define USE_CONTEXT_MENU 1
50 // this sample is usefull when new port is developed
51 // and usually new port has majority of flags turned off
52 #if wxUSE_LOG && wxUSE_TEXTCTRL
53 #define USE_LOG_WINDOW 1
55 #define USE_LOG_WINDOW 0
58 #if wxUSE_OWNER_DRAWN || defined(__WXGTK__)
62 // ----------------------------------------------------------------------------
64 // ----------------------------------------------------------------------------
66 // Define a new application
67 class MyApp
: public wxApp
74 class MyFrame
: public wxFrame
81 void LogMenuEvent(const wxCommandEvent
& event
);
84 void OnQuit(wxCommandEvent
& event
);
86 void OnClearLog(wxCommandEvent
& event
);
87 void OnClearLogUpdateUI(wxUpdateUIEvent
& event
);
88 #endif // USE_LOG_WINDOW
90 void OnAbout(wxCommandEvent
& event
);
92 void OnDummy(wxCommandEvent
& event
);
94 void OnAppendMenuItem(wxCommandEvent
& event
);
95 void OnAppendSubMenu(wxCommandEvent
& event
);
96 void OnDeleteMenuItem(wxCommandEvent
& event
);
97 void OnInsertMenuItem(wxCommandEvent
& event
);
98 void OnCheckMenuItem(wxCommandEvent
& event
);
99 void OnEnableMenuItem(wxCommandEvent
& event
);
100 void OnGetLabelMenuItem(wxCommandEvent
& event
);
102 void OnSetLabelMenuItem(wxCommandEvent
& event
);
104 void OnGetMenuItemInfo(wxCommandEvent
& event
);
106 void OnFindMenuItem(wxCommandEvent
& event
);
109 void OnAppendMenu(wxCommandEvent
& event
);
110 void OnInsertMenu(wxCommandEvent
& event
);
111 void OnDeleteMenu(wxCommandEvent
& event
);
112 void OnToggleMenu(wxCommandEvent
& event
);
113 void OnEnableMenu(wxCommandEvent
& event
);
114 void OnGetLabelMenu(wxCommandEvent
& event
);
115 void OnSetLabelMenu(wxCommandEvent
& event
);
117 void OnFindMenu(wxCommandEvent
& event
);
120 void OnTestNormal(wxCommandEvent
& event
);
121 void OnTestCheck(wxCommandEvent
& event
);
122 void OnTestRadio(wxCommandEvent
& event
);
124 void OnUpdateSubMenuNormal(wxUpdateUIEvent
& event
);
125 void OnUpdateSubMenuCheck(wxUpdateUIEvent
& event
);
126 void OnUpdateSubMenuRadio(wxUpdateUIEvent
& event
);
129 void OnContextMenu(wxContextMenuEvent
& event
);
131 void OnRightUp(wxMouseEvent
& event
)
132 { ShowContextMenu(event
.GetPosition()); }
135 void OnMenuOpen(wxMenuEvent
& event
)
138 LogMenuOpenOrClose(event
, _T("opened")); event
.Skip();
141 void OnMenuClose(wxMenuEvent
& event
)
144 LogMenuOpenOrClose(event
, _T("closed")); event
.Skip();
148 void OnUpdateCheckMenuItemUI(wxUpdateUIEvent
& event
);
150 void OnSize(wxSizeEvent
& event
);
153 void LogMenuOpenOrClose(const wxMenuEvent
& event
, const wxChar
*what
);
154 void ShowContextMenu(const wxPoint
& pos
);
156 wxMenu
*CreateDummyMenu(wxString
*title
);
158 wxMenuItem
*GetLastMenuItem() const;
160 // the menu previously detached from the menubar (may be NULL)
163 // the count of dummy menus already created
167 // the control used for logging
168 wxTextCtrl
*m_textctrl
;
171 // the previous log target
174 DECLARE_EVENT_TABLE()
177 // A small helper class which intercepts all menu events and logs them
178 class MyEvtHandler
: public wxEvtHandler
181 MyEvtHandler(MyFrame
*frame
) { m_frame
= frame
; }
183 void OnMenuEvent(wxCommandEvent
& event
)
185 m_frame
->LogMenuEvent(event
);
193 DECLARE_EVENT_TABLE()
196 // ----------------------------------------------------------------------------
198 // ----------------------------------------------------------------------------
202 Menu_File_Quit
= wxID_EXIT
,
204 Menu_File_ClearLog
= 100,
207 Menu_MenuBar_Toggle
= 200,
212 Menu_MenuBar_GetLabel
,
214 Menu_MenuBar_SetLabel
,
215 Menu_MenuBar_FindMenu
,
218 Menu_Menu_Append
= 300,
233 Menu_Test_Normal
= 400,
246 Menu_Dummy_First
= 500,
252 Menu_Help_About
= wxID_ABOUT
,
254 Menu_Popup_ToBeDeleted
= 2000,
255 Menu_Popup_ToBeGreyed
,
256 Menu_Popup_ToBeChecked
,
262 // ----------------------------------------------------------------------------
264 // ----------------------------------------------------------------------------
266 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
267 EVT_MENU(Menu_File_Quit
, MyFrame::OnQuit
)
269 EVT_MENU(Menu_File_ClearLog
, MyFrame::OnClearLog
)
270 EVT_UPDATE_UI(Menu_File_ClearLog
, MyFrame::OnClearLogUpdateUI
)
273 EVT_MENU(Menu_Help_About
, MyFrame::OnAbout
)
275 EVT_MENU(Menu_MenuBar_Toggle
, MyFrame::OnToggleMenu
)
276 EVT_MENU(Menu_MenuBar_Append
, MyFrame::OnAppendMenu
)
277 EVT_MENU(Menu_MenuBar_Insert
, MyFrame::OnInsertMenu
)
278 EVT_MENU(Menu_MenuBar_Delete
, MyFrame::OnDeleteMenu
)
279 EVT_MENU(Menu_MenuBar_Enable
, MyFrame::OnEnableMenu
)
280 EVT_MENU(Menu_MenuBar_GetLabel
, MyFrame::OnGetLabelMenu
)
282 EVT_MENU(Menu_MenuBar_SetLabel
, MyFrame::OnSetLabelMenu
)
283 EVT_MENU(Menu_MenuBar_FindMenu
, MyFrame::OnFindMenu
)
286 EVT_MENU(Menu_Menu_Append
, MyFrame::OnAppendMenuItem
)
287 EVT_MENU(Menu_Menu_AppendSub
, MyFrame::OnAppendSubMenu
)
288 EVT_MENU(Menu_Menu_Insert
, MyFrame::OnInsertMenuItem
)
289 EVT_MENU(Menu_Menu_Delete
, MyFrame::OnDeleteMenuItem
)
290 EVT_MENU(Menu_Menu_Enable
, MyFrame::OnEnableMenuItem
)
291 EVT_MENU(Menu_Menu_Check
, MyFrame::OnCheckMenuItem
)
292 EVT_MENU(Menu_Menu_GetLabel
, MyFrame::OnGetLabelMenuItem
)
294 EVT_MENU(Menu_Menu_SetLabel
, MyFrame::OnSetLabelMenuItem
)
296 EVT_MENU(Menu_Menu_GetInfo
, MyFrame::OnGetMenuItemInfo
)
298 EVT_MENU(Menu_Menu_FindItem
, MyFrame::OnFindMenuItem
)
301 EVT_MENU(Menu_Test_Normal
, MyFrame::OnTestNormal
)
302 EVT_MENU(Menu_Test_Check
, MyFrame::OnTestCheck
)
303 EVT_MENU(Menu_Test_Radio1
, MyFrame::OnTestRadio
)
304 EVT_MENU(Menu_Test_Radio2
, MyFrame::OnTestRadio
)
305 EVT_MENU(Menu_Test_Radio3
, MyFrame::OnTestRadio
)
307 EVT_UPDATE_UI(Menu_SubMenu_Normal
, MyFrame::OnUpdateSubMenuNormal
)
308 EVT_UPDATE_UI(Menu_SubMenu_Check
, MyFrame::OnUpdateSubMenuCheck
)
309 EVT_UPDATE_UI(Menu_SubMenu_Radio1
, MyFrame::OnUpdateSubMenuRadio
)
310 EVT_UPDATE_UI(Menu_SubMenu_Radio2
, MyFrame::OnUpdateSubMenuRadio
)
311 EVT_UPDATE_UI(Menu_SubMenu_Radio3
, MyFrame::OnUpdateSubMenuRadio
)
313 EVT_MENU_RANGE(Menu_Dummy_First
, Menu_Dummy_Last
, MyFrame::OnDummy
)
315 EVT_UPDATE_UI(Menu_Menu_Check
, MyFrame::OnUpdateCheckMenuItemUI
)
318 EVT_CONTEXT_MENU(MyFrame::OnContextMenu
)
320 EVT_RIGHT_UP(MyFrame::OnRightUp
)
323 EVT_MENU_OPEN(MyFrame::OnMenuOpen
)
324 EVT_MENU_CLOSE(MyFrame::OnMenuClose
)
326 EVT_SIZE(MyFrame::OnSize
)
329 BEGIN_EVENT_TABLE(MyEvtHandler
, wxEvtHandler
)
330 EVT_MENU(wxID_ANY
, MyEvtHandler::OnMenuEvent
)
333 // ============================================================================
335 // ============================================================================
337 // ----------------------------------------------------------------------------
339 // ----------------------------------------------------------------------------
343 // The `main program' equivalent, creating the windows and returning the
347 if ( !wxApp::OnInit() )
350 // Create the main frame window
351 MyFrame
* frame
= new MyFrame
;
356 frame
->SetStatusText(_T("Welcome to wxWidgets menu sample"));
357 #endif // wxUSE_STATUSBAR
364 // ----------------------------------------------------------------------------
366 // ----------------------------------------------------------------------------
368 // Define my frame constructor
370 : wxFrame((wxFrame
*)NULL
, wxID_ANY
, _T("wxWidgets menu sample"))
381 #endif // wxUSE_STATUSBAR
383 // create the menubar
384 wxMenu
*fileMenu
= new wxMenu
;
386 wxMenu
*stockSubMenu
= new wxMenu
;
387 stockSubMenu
->Append(wxID_ADD
);
388 stockSubMenu
->Append(wxID_APPLY
);
389 stockSubMenu
->Append(wxID_BOLD
);
390 stockSubMenu
->Append(wxID_CANCEL
);
391 stockSubMenu
->Append(wxID_CLEAR
);
392 stockSubMenu
->Append(wxID_CLOSE
);
393 stockSubMenu
->Append(wxID_COPY
);
394 stockSubMenu
->Append(wxID_CUT
);
395 stockSubMenu
->Append(wxID_DELETE
);
396 stockSubMenu
->Append(wxID_FIND
);
397 stockSubMenu
->Append(wxID_REPLACE
);
398 stockSubMenu
->Append(wxID_BACKWARD
);
399 stockSubMenu
->Append(wxID_DOWN
);
400 stockSubMenu
->Append(wxID_FORWARD
);
401 stockSubMenu
->Append(wxID_UP
);
402 stockSubMenu
->Append(wxID_HELP
);
403 stockSubMenu
->Append(wxID_HOME
);
404 stockSubMenu
->Append(wxID_INDENT
);
405 stockSubMenu
->Append(wxID_INDEX
);
406 stockSubMenu
->Append(wxID_ITALIC
);
407 stockSubMenu
->Append(wxID_JUSTIFY_CENTER
);
408 stockSubMenu
->Append(wxID_JUSTIFY_FILL
);
409 stockSubMenu
->Append(wxID_JUSTIFY_LEFT
);
410 stockSubMenu
->Append(wxID_JUSTIFY_RIGHT
);
411 stockSubMenu
->Append(wxID_NEW
);
412 stockSubMenu
->Append(wxID_NO
);
413 stockSubMenu
->Append(wxID_OK
);
414 stockSubMenu
->Append(wxID_OPEN
);
415 stockSubMenu
->Append(wxID_PASTE
);
416 stockSubMenu
->Append(wxID_PREFERENCES
);
417 stockSubMenu
->Append(wxID_PRINT
);
418 stockSubMenu
->Append(wxID_PREVIEW
);
419 stockSubMenu
->Append(wxID_PROPERTIES
);
420 stockSubMenu
->Append(wxID_EXIT
);
421 stockSubMenu
->Append(wxID_REDO
);
422 stockSubMenu
->Append(wxID_REFRESH
);
423 stockSubMenu
->Append(wxID_REMOVE
);
424 stockSubMenu
->Append(wxID_REVERT_TO_SAVED
);
425 stockSubMenu
->Append(wxID_SAVE
);
426 stockSubMenu
->Append(wxID_SAVEAS
);
427 stockSubMenu
->Append(wxID_STOP
);
428 stockSubMenu
->Append(wxID_UNDELETE
);
429 stockSubMenu
->Append(wxID_UNDERLINE
);
430 stockSubMenu
->Append(wxID_UNDO
);
431 stockSubMenu
->Append(wxID_UNINDENT
);
432 stockSubMenu
->Append(wxID_YES
);
433 stockSubMenu
->Append(wxID_ZOOM_100
);
434 stockSubMenu
->Append(wxID_ZOOM_FIT
);
435 stockSubMenu
->Append(wxID_ZOOM_IN
);
436 stockSubMenu
->Append(wxID_ZOOM_OUT
);
437 fileMenu
->AppendSubMenu(stockSubMenu
, _T("&Standard items demo"));
440 wxMenuItem
*item
= new wxMenuItem(fileMenu
, Menu_File_ClearLog
,
441 _T("Clear &log\tCtrl-L"));
442 #if wxUSE_OWNER_DRAWN || defined(__WXGTK__)
443 item
->SetBitmap(copy_xpm
);
445 fileMenu
->Append(item
);
446 fileMenu
->AppendSeparator();
447 #endif // USE_LOG_WINDOW
449 fileMenu
->Append(Menu_File_Quit
, _T("E&xit\tAlt-X"), _T("Quit menu sample"));
451 wxMenu
*menubarMenu
= new wxMenu
;
452 menubarMenu
->Append(Menu_MenuBar_Append
, _T("&Append menu\tCtrl-A"),
453 _T("Append a menu to the menubar"));
454 menubarMenu
->Append(Menu_MenuBar_Insert
, _T("&Insert menu\tCtrl-I"),
455 _T("Insert a menu into the menubar"));
456 menubarMenu
->Append(Menu_MenuBar_Delete
, _T("&Delete menu\tCtrl-D"),
457 _T("Delete the last menu from the menubar"));
458 menubarMenu
->Append(Menu_MenuBar_Toggle
, _T("&Toggle menu\tCtrl-T"),
459 _T("Toggle the first menu in the menubar"), true);
460 menubarMenu
->AppendSeparator();
461 menubarMenu
->Append(Menu_MenuBar_Enable
, _T("&Enable menu\tCtrl-E"),
462 _T("Enable or disable the last menu"), true);
463 menubarMenu
->AppendSeparator();
464 menubarMenu
->Append(Menu_MenuBar_GetLabel
, _T("&Get menu label\tCtrl-G"),
465 _T("Get the label of the last menu"));
467 menubarMenu
->Append(Menu_MenuBar_SetLabel
, _T("&Set menu label\tCtrl-S"),
468 _T("Change the label of the last menu"));
469 menubarMenu
->AppendSeparator();
470 menubarMenu
->Append(Menu_MenuBar_FindMenu
, _T("&Find menu from label\tCtrl-F"),
471 _T("Find a menu by searching for its label"));
474 wxMenu
* subMenu
= new wxMenu
;
475 subMenu
->Append(Menu_SubMenu_Normal
, _T("&Normal submenu item"), _T("Disabled submenu item"));
476 subMenu
->AppendCheckItem(Menu_SubMenu_Check
, _T("&Check submenu item"), _T("Check submenu item"));
477 subMenu
->AppendRadioItem(Menu_SubMenu_Radio1
, _T("Radio item &1"), _T("Radio item"));
478 subMenu
->AppendRadioItem(Menu_SubMenu_Radio2
, _T("Radio item &2"), _T("Radio item"));
479 subMenu
->AppendRadioItem(Menu_SubMenu_Radio3
, _T("Radio item &3"), _T("Radio item"));
481 menubarMenu
->Append(Menu_SubMenu
, _T("Submenu"), subMenu
);
483 wxMenu
*menuMenu
= new wxMenu
;
484 menuMenu
->Append(Menu_Menu_Append
, _T("&Append menu item\tAlt-A"),
485 _T("Append a menu item to the last menu"));
486 menuMenu
->Append(Menu_Menu_AppendSub
, _T("&Append sub menu\tAlt-S"),
487 _T("Append a sub menu to the last menu"));
488 menuMenu
->Append(Menu_Menu_Insert
, _T("&Insert menu item\tAlt-I"),
489 _T("Insert a menu item in head of the last menu"));
490 menuMenu
->Append(Menu_Menu_Delete
, _T("&Delete menu item\tAlt-D"),
491 _T("Delete the last menu item from the last menu"));
492 menuMenu
->AppendSeparator();
493 menuMenu
->Append(Menu_Menu_Enable
, _T("&Enable menu item\tAlt-E"),
494 _T("Enable or disable the last menu item"), true);
495 menuMenu
->Append(Menu_Menu_Check
, _T("&Check menu item\tAlt-C"),
496 _T("Check or uncheck the last menu item"), true);
497 menuMenu
->AppendSeparator();
498 menuMenu
->Append(Menu_Menu_GetInfo
, _T("Get menu item in&fo\tAlt-F"),
499 _T("Show the state of the last menu item"));
501 menuMenu
->Append(Menu_Menu_SetLabel
, _T("Set menu item label\tAlt-L"),
502 _T("Set the label of a menu item"));
505 menuMenu
->AppendSeparator();
506 menuMenu
->Append(Menu_Menu_FindItem
, _T("Find menu item from label"),
507 _T("Find a menu item by searching for its label"));
510 wxMenu
*testMenu
= new wxMenu
;
511 testMenu
->Append(Menu_Test_Normal
, _T("&Normal item"));
512 testMenu
->AppendSeparator();
513 testMenu
->AppendCheckItem(Menu_Test_Check
, _T("&Check item"));
514 testMenu
->AppendSeparator();
515 testMenu
->AppendRadioItem(Menu_Test_Radio1
, _T("Radio item &1"));
516 testMenu
->AppendRadioItem(Menu_Test_Radio2
, _T("Radio item &2"));
517 testMenu
->AppendRadioItem(Menu_Test_Radio3
, _T("Radio item &3"));
519 wxMenu
*helpMenu
= new wxMenu
;
520 helpMenu
->Append(Menu_Help_About
, _T("&About\tF1"), _T("About menu sample"));
522 wxMenuBar
* menuBar
= new wxMenuBar( wxMB_DOCKABLE
);
524 menuBar
->Append(fileMenu
, _T("&File"));
525 menuBar
->Append(menubarMenu
, _T("Menu&bar"));
526 menuBar
->Append(menuMenu
, _T("&Menu"));
527 menuBar
->Append(testMenu
, _T("&Test"));
528 menuBar
->Append(helpMenu
, _T("&Help"));
530 // these items should be initially checked
531 menuBar
->Check(Menu_MenuBar_Toggle
, true);
532 menuBar
->Check(Menu_MenuBar_Enable
, true);
533 menuBar
->Check(Menu_Menu_Enable
, true);
534 menuBar
->Check(Menu_Menu_Check
, false);
536 // associate the menu bar with the frame
539 // intercept all menu events and log them in this custom event handler
540 PushEventHandler(new MyEvtHandler(this));
543 // create the log text window
544 m_textctrl
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
,
545 wxDefaultPosition
, wxDefaultSize
,
547 m_textctrl
->SetEditable(false);
549 wxLog::DisableTimestamp();
550 m_logOld
= wxLog::SetActiveTarget(new wxLogTextCtrl(m_textctrl
));
552 wxLogMessage(_T("Brief explanations: the commands or the \"Menu\" menu ")
553 _T("append/insert/delete items to/from the last menu.\n")
554 _T("The commands from \"Menubar\" menu work with the ")
555 _T("menubar itself.\n\n")
556 _T("Right click the band below to test popup menus.\n"));
567 // delete the event handler installed in ctor
568 PopEventHandler(true);
571 // restore old logger
572 delete wxLog::SetActiveTarget(m_logOld
);
576 wxMenu
*MyFrame::CreateDummyMenu(wxString
*title
)
578 wxMenu
*menu
= new wxMenu
;
579 menu
->Append(Menu_Dummy_First
, _T("&First item\tCtrl-F1"));
580 menu
->AppendSeparator();
581 menu
->AppendCheckItem(Menu_Dummy_Second
, _T("&Second item\tCtrl-F2"));
585 title
->Printf(_T("Dummy menu &%u"), (unsigned)++m_countDummy
);
591 wxMenuItem
*MyFrame::GetLastMenuItem() const
593 wxMenuBar
*menubar
= GetMenuBar();
594 wxMenu
*menu
= menubar
->GetMenu(menubar
->GetMenuCount() - 1);
596 wxMenuItemList::compatibility_iterator node
= menu
->GetMenuItems().GetLast();
599 wxLogWarning(_T("No last item in the last menu!"));
605 return node
->GetData();
609 void MyFrame::LogMenuEvent(const wxCommandEvent
& event
)
611 int id
= event
.GetId();
613 wxString msg
= wxString::Format(_T("Menu command %d"), id
);
615 // catch all checkable menubar items and also the check item from the popup
617 wxMenuItem
*item
= GetMenuBar()->FindItem(id
);
618 if ( (item
&& item
->IsCheckable()) || id
== Menu_Popup_ToBeChecked
)
620 msg
+= wxString::Format(_T(" (the item is currently %schecked)"),
621 event
.IsChecked() ? _T("") : _T("not "));
627 // ----------------------------------------------------------------------------
629 // ----------------------------------------------------------------------------
631 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
638 void MyFrame::OnClearLog(wxCommandEvent
& WXUNUSED(event
))
643 void MyFrame::OnClearLogUpdateUI(wxUpdateUIEvent
& event
)
645 // if we only enable this item when the log window is empty, we never see
646 // it in the disable state as a message is logged whenever the menu is
647 // opened, so we disable it if there is not "much" text in the window
648 event
.Enable( m_textctrl
->GetNumberOfLines() > 5 );
651 #endif // USE_LOG_WINDOW
653 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
655 (void)wxMessageBox(_T("wxWidgets menu sample\n(c) 1999-2001 Vadim Zeitlin"),
656 _T("About wxWidgets menu sample"),
660 void MyFrame::OnDeleteMenu(wxCommandEvent
& WXUNUSED(event
))
662 wxMenuBar
*mbar
= GetMenuBar();
664 size_t count
= mbar
->GetMenuCount();
667 // don't let delete the first 2 menus
668 wxLogError(_T("Can't delete any more menus"));
672 delete mbar
->Remove(count
- 1);
676 void MyFrame::OnInsertMenu(wxCommandEvent
& WXUNUSED(event
))
679 wxMenu
*menu
= CreateDummyMenu(&title
);
680 GetMenuBar()->Insert(0, menu
, title
);
683 void MyFrame::OnAppendMenu(wxCommandEvent
& WXUNUSED(event
))
686 wxMenu
*menu
= CreateDummyMenu(&title
);
687 GetMenuBar()->Append(menu
, title
);
690 void MyFrame::OnToggleMenu(wxCommandEvent
& WXUNUSED(event
))
692 wxMenuBar
*mbar
= GetMenuBar();
696 m_menu
= mbar
->Remove(0);
701 mbar
->Insert(0, m_menu
, _T("&File"));
706 void MyFrame::OnEnableMenu(wxCommandEvent
& event
)
708 wxMenuBar
*mbar
= GetMenuBar();
709 size_t count
= mbar
->GetMenuCount();
711 mbar
->EnableTop(count
- 1, event
.IsChecked());
714 void MyFrame::OnGetLabelMenu(wxCommandEvent
& WXUNUSED(event
))
716 wxMenuBar
*mbar
= GetMenuBar();
717 size_t count
= mbar
->GetMenuCount();
719 wxCHECK_RET( count
, _T("no last menu?") );
721 wxLogMessage(_T("The label of the last menu item is '%s'"),
722 mbar
->GetLabelTop(count
- 1).c_str());
726 void MyFrame::OnSetLabelMenu(wxCommandEvent
& WXUNUSED(event
))
728 wxMenuBar
*mbar
= GetMenuBar();
729 size_t count
= mbar
->GetMenuCount();
731 wxCHECK_RET( count
, _T("no last menu?") );
733 wxString label
= wxGetTextFromUser
735 _T("Enter new label: "),
736 _T("Change last menu text"),
737 mbar
->GetLabelTop(count
- 1),
741 if ( !label
.empty() )
743 mbar
->SetLabelTop(count
- 1, label
);
747 void MyFrame::OnFindMenu(wxCommandEvent
& WXUNUSED(event
))
749 wxMenuBar
*mbar
= GetMenuBar();
750 size_t count
= mbar
->GetMenuCount();
752 wxCHECK_RET( count
, _T("no last menu?") );
754 wxString label
= wxGetTextFromUser
756 _T("Enter label to search for: "),
762 if ( !label
.empty() )
764 int index
= mbar
->FindMenu(label
);
766 if (index
== wxNOT_FOUND
)
768 wxLogWarning(_T("No menu with label '%s'"), label
.c_str());
772 wxLogMessage(_T("Menu %d has label '%s'"), index
, label
.c_str());
778 void MyFrame::OnDummy(wxCommandEvent
& event
)
780 wxLogMessage(_T("Dummy item #%d"), event
.GetId() - Menu_Dummy_First
+ 1);
783 void MyFrame::OnAppendMenuItem(wxCommandEvent
& WXUNUSED(event
))
785 wxMenuBar
*menubar
= GetMenuBar();
786 wxMenu
*menu
= menubar
->GetMenu(menubar
->GetMenuCount() - 1);
788 menu
->AppendSeparator();
789 menu
->Append(Menu_Dummy_Third
, _T("&Third dummy item\tCtrl-F3"),
790 _T("Checkable item"), true);
793 void MyFrame::OnAppendSubMenu(wxCommandEvent
& WXUNUSED(event
))
795 wxMenuBar
*menubar
= GetMenuBar();
797 wxMenu
*menu
= menubar
->GetMenu(menubar
->GetMenuCount() - 2);
799 menu
->Append(Menu_Dummy_Last
, _T("&Dummy sub menu"),
800 CreateDummyMenu(NULL
), _T("Dummy sub menu help"));
803 void MyFrame::OnDeleteMenuItem(wxCommandEvent
& WXUNUSED(event
))
805 wxMenuBar
*menubar
= GetMenuBar();
806 wxMenu
*menu
= menubar
->GetMenu(menubar
->GetMenuCount() - 1);
808 size_t count
= menu
->GetMenuItemCount();
811 wxLogWarning(_T("No items to delete!"));
815 menu
->Destroy(menu
->GetMenuItems().Item(count
- 1)->GetData());
819 void MyFrame::OnInsertMenuItem(wxCommandEvent
& WXUNUSED(event
))
821 wxMenuBar
*menubar
= GetMenuBar();
822 wxMenu
*menu
= menubar
->GetMenu(menubar
->GetMenuCount() - 1);
824 menu
->Insert(0, wxMenuItem::New(menu
, Menu_Dummy_Fourth
,
825 _T("Fourth dummy item\tCtrl-F4")));
826 menu
->Insert(1, wxMenuItem::New(menu
, wxID_SEPARATOR
));
829 void MyFrame::OnEnableMenuItem(wxCommandEvent
& WXUNUSED(event
))
831 wxMenuItem
*item
= GetLastMenuItem();
835 item
->Enable(!item
->IsEnabled());
839 void MyFrame::OnCheckMenuItem(wxCommandEvent
& WXUNUSED(event
))
841 wxMenuItem
*item
= GetLastMenuItem();
846 void MyFrame::OnUpdateCheckMenuItemUI(wxUpdateUIEvent
& event
)
850 wxMenuItem
*item
= GetLastMenuItem();
852 event
.Enable(item
&& item
->IsCheckable());
855 void MyFrame::OnGetLabelMenuItem(wxCommandEvent
& WXUNUSED(event
))
857 wxMenuItem
*item
= GetLastMenuItem();
861 wxLogMessage(_T("The label of the last menu item is '%s'"),
862 item
->GetLabel().c_str());
867 void MyFrame::OnSetLabelMenuItem(wxCommandEvent
& WXUNUSED(event
))
869 wxMenuItem
*item
= GetLastMenuItem();
873 wxString label
= wxGetTextFromUser
875 _T("Enter new label: "),
876 _T("Change last menu item text"),
880 label
.Replace( _T("\\t"), _T("\t") );
882 if ( !label
.empty() )
884 item
->SetText(label
);
890 void MyFrame::OnGetMenuItemInfo(wxCommandEvent
& WXUNUSED(event
))
892 wxMenuItem
*item
= GetLastMenuItem();
897 msg
<< _T("The item is ") << (item
->IsEnabled() ? _T("enabled")
901 if ( item
->IsCheckable() )
903 msg
<< _T("It is checkable and ") << (item
->IsChecked() ? _T("") : _T("un"))
908 wxAcceleratorEntry
*accel
= item
->GetAccel();
911 msg
<< _T("Its accelerator is ");
913 int flags
= accel
->GetFlags();
914 if ( flags
& wxACCEL_ALT
)
916 if ( flags
& wxACCEL_CTRL
)
918 if ( flags
& wxACCEL_SHIFT
)
921 int code
= accel
->GetKeyCode();
936 msg
<< _T('F') << code
- WXK_F1
+ 1;
939 // if there are any other keys wxGetAccelFromString() may return,
940 // we should process them here
943 if ( wxIsalnum(code
) )
950 wxFAIL_MSG( _T("unknown keyboard accel") );
957 msg
<< _T("It doesn't have an accelerator");
959 #endif // wxUSE_ACCEL
966 void MyFrame::OnFindMenuItem(wxCommandEvent
& WXUNUSED(event
))
968 wxMenuBar
*mbar
= GetMenuBar();
969 size_t count
= mbar
->GetMenuCount();
971 wxCHECK_RET( count
, _T("no last menu?") );
973 wxString label
= wxGetTextFromUser
975 _T("Enter label to search for: "),
976 _T("Find menu item"),
981 if ( !label
.empty() )
984 int index
= wxNOT_FOUND
;
986 for (menuindex
= 0; (menuindex
< count
) && (index
== wxNOT_FOUND
); ++menuindex
)
988 index
= mbar
->FindMenuItem(mbar
->GetMenu(menuindex
)->GetTitle(), label
);
990 if (index
== wxNOT_FOUND
)
992 wxLogWarning(_T("No menu item with label '%s'"), label
.c_str());
996 wxLogMessage(_T("Menu item %d in menu %lu has label '%s'"),
997 index
, (unsigned long)menuindex
, label
.c_str());
1003 void MyFrame::ShowContextMenu(const wxPoint
& pos
)
1007 menu
.Append(Menu_Help_About
, _T("&About"));
1008 menu
.Append(Menu_Popup_Submenu
, _T("&Submenu"), CreateDummyMenu(NULL
));
1009 menu
.Append(Menu_Popup_ToBeDeleted
, _T("To be &deleted"));
1010 menu
.AppendCheckItem(Menu_Popup_ToBeChecked
, _T("To be &checked"));
1011 menu
.Append(Menu_Popup_ToBeGreyed
, _T("To be &greyed"),
1012 _T("This menu item should be initially greyed out"));
1013 menu
.AppendSeparator();
1014 menu
.Append(Menu_File_Quit
, _T("E&xit"));
1016 menu
.Delete(Menu_Popup_ToBeDeleted
);
1017 menu
.Check(Menu_Popup_ToBeChecked
, true);
1018 menu
.Enable(Menu_Popup_ToBeGreyed
, false);
1020 PopupMenu(&menu
, pos
.x
, pos
.y
);
1022 // test for destroying items in popup menus
1023 #if 0 // doesn't work in wxGTK!
1024 menu
.Destroy(Menu_Popup_Submenu
);
1026 PopupMenu( &menu
, event
.GetX(), event
.GetY() );
1030 void MyFrame::OnTestNormal(wxCommandEvent
& WXUNUSED(event
))
1032 wxLogMessage(_T("Normal item selected"));
1035 void MyFrame::OnTestCheck(wxCommandEvent
& event
)
1037 wxLogMessage(_T("Check item %schecked"),
1038 event
.IsChecked() ? _T("") : _T("un"));
1041 void MyFrame::OnTestRadio(wxCommandEvent
& event
)
1043 wxLogMessage(_T("Radio item %d selected"),
1044 event
.GetId() - Menu_Test_Radio1
+ 1);
1048 void MyFrame::LogMenuOpenOrClose(const wxMenuEvent
& event
, const wxChar
*what
)
1052 << ( event
.IsPopup() ? _T("popup ") : _T("") )
1053 << _T("menu has been ")
1057 wxLogStatus(this, msg
.c_str());
1061 void MyFrame::OnUpdateSubMenuNormal(wxUpdateUIEvent
& event
)
1063 event
.Enable(false);
1066 void MyFrame::OnUpdateSubMenuCheck(wxUpdateUIEvent
& event
)
1071 void MyFrame::OnUpdateSubMenuRadio(wxUpdateUIEvent
& event
)
1073 int which
= (event
.GetId() - Menu_SubMenu_Radio1
+ 1);
1080 #if USE_CONTEXT_MENU
1081 void MyFrame::OnContextMenu(wxContextMenuEvent
& event
)
1083 wxPoint point
= event
.GetPosition();
1085 if (point
.x
== -1 && point
.y
== -1) {
1086 wxSize size
= GetSize();
1087 point
.x
= size
.x
/ 2;
1088 point
.y
= size
.y
/ 2;
1090 point
= ScreenToClient(point
);
1092 ShowContextMenu(point
);
1096 void MyFrame::OnSize(wxSizeEvent
& WXUNUSED(event
))
1102 // leave a band below for popup menu testing
1103 wxSize size
= GetClientSize();
1104 m_textctrl
->SetSize(0, 0, size
.x
, (3*size
.y
)/4);
1107 // this is really ugly but we have to do it as we can't just call
1108 // event.Skip() because wxFrameBase would make the text control fill the
1109 // entire frame then
1110 #ifdef __WXUNIVERSAL__
1112 #endif // __WXUNIVERSAL__