forked from Voidious/BerryBots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menubarmaker.cpp
93 lines (83 loc) · 3.54 KB
/
menubarmaker.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
Copyright (C) 2013-2015 - Voidious
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include <wx/wx.h>
#include "bbwx.h"
#include "menubarmaker.h"
MenuBarMaker::MenuBarMaker() {
}
wxMenuBar* MenuBarMaker::getNewMenuBar() {
wxMenu *fileMenu = new wxMenu();
fileMenu->Insert(0, NEW_MATCH_MENU_ID, "&New Match...\tCtrl+N", 0);
fileMenu->Insert(1, PACKAGE_SHIP_MENU_ID, "&Package Ship...\tCtrl+P", 0);
fileMenu->Insert(2, PACKAGE_STAGE_MENU_ID, "Package S&tage...\tCtrl+T", 0);
#ifdef __WXOSX__
fileMenu->Insert(3, GAME_RUNNER_MENU_ID, "&Game Runner...\tShift+Ctrl+G", 0);
#else
fileMenu->Insert(3, GAME_RUNNER_MENU_ID, "&Game Runner...\tShift+Alt+G", 0);
#endif
fileMenu->Insert(4, ERROR_CONSOLE_MENU_ID, "&Error Console\tCtrl+E", 0);
fileMenu->InsertSeparator(5);
#ifdef __WXOSX__
fileMenu->Insert(6, CHANGE_BASE_DIR_MENU_ID,
"Change &Base Directory\tCtrl+B");
#else
fileMenu->Insert(6, FILE_QUIT_MENU_ID, "&Quit");
#endif
wxMenu *browseMenu = new wxMenu();
#ifdef __WXOSX__
browseMenu->Insert(0, BROWSE_SHIPS_MENU_ID,
"&Ships\tShift+Ctrl+S", 0);
browseMenu->Insert(1, BROWSE_STAGES_MENU_ID,
"S&tages\tShift+Ctrl+T", 0);
browseMenu->Insert(2, BROWSE_RUNNERS_MENU_ID,
"&Runners\tShift+Ctrl+R", 0);
browseMenu->Insert(3, BROWSE_REPLAYS_MENU_ID,
"Repla&ys\tShift+Ctrl+Y", 0);
browseMenu->Insert(4, BROWSE_API_DOCS_MENU_ID,
"&API Docs\tShift+Ctrl+A", 0);
#else
browseMenu->Insert(0, BROWSE_SHIPS_MENU_ID,
"&Ships\tShift+Alt+S", 0);
browseMenu->Insert(1, BROWSE_STAGES_MENU_ID,
"S&tages\tShift+Alt+T", 0);
browseMenu->Insert(2, BROWSE_RUNNERS_MENU_ID,
"&Runners\tShift+Alt+R", 0);
browseMenu->Insert(3, BROWSE_REPLAYS_MENU_ID,
"Repla&ys\tShift+Alt+Y", 0);
browseMenu->Insert(4, BROWSE_API_DOCS_MENU_ID,
"&API Docs\tShift+Alt+A", 0);
#endif
wxMenuBar *menuBar = new wxMenuBar();
menuBar->Insert(0, fileMenu, "&File");
menuBar->Insert(1, browseMenu, "&Browse");
#ifdef __WXOSX__
// For some reason, the Apple menu (left-most menu, "BerryBots") has the wrong
// capitalization - e.g., "Quit Berrybots". Can't figure out how to fix it in
// Xcode nor wxWidgets, so just fix it manually.
wxMenuItemList appleMenuItems = menuBar->OSXGetAppleMenu()->GetMenuItems();
wxMenuItemList::iterator iter;
for (iter = appleMenuItems.begin(); iter != appleMenuItems.end(); ++iter) {
wxMenuItem *menuItem = *iter;
wxString menuLabel = menuItem->GetItemLabel();
if (menuLabel.Contains("Berrybots")) {
menuLabel.Replace("Berrybots", "BerryBots");
menuItem->SetItemLabel(menuLabel);
}
}
#endif
return menuBar;
}