KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
kicad/menubar.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2009 Wayne Stambaugh <stambaughw@verizon.net>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 * Copyright (C) 2019 CERN
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#include <advanced_config.h>
28#include <bitmaps.h>
29#include <file_history.h>
30#include <kiplatform/policy.h>
31#include <paths.h>
32#include <policy_keys.h>
33#include <tool/action_manager.h>
34#include <tool/action_toolbar.h>
35#include <tool/tool_manager.h>
38#include "kicad_manager_frame.h"
39#include "pgm_kicad.h"
40#include "kicad_id.h"
41#include <widgets/wx_menubar.h>
42#include <wx/dir.h>
43
44
46{
48 // wxWidgets handles the Mac Application menu behind the scenes, but that means
49 // we always have to start from scratch with a new wxMenuBar.
50 wxMenuBar* oldMenuBar = GetMenuBar();
51 WX_MENUBAR* menuBar = new WX_MENUBAR();
52
53 //-- File menu -----------------------------------------------------------
54 //
55 ACTION_MENU* fileMenu = new ACTION_MENU( false, controlTool );
56 FILE_HISTORY& fileHistory = GetFileHistory();
57
58 fileHistory.SetClearText( _( "Clear Recent Projects" ) );
59
60 static ACTION_MENU* openRecentMenu;
61
62 // Create the menu if it does not exist. Adding a file to/from the history
63 // will automatically refresh the menu.
64 if( !openRecentMenu )
65 {
66 openRecentMenu = new ACTION_MENU( false, controlTool );
67 openRecentMenu->SetIcon( BITMAPS::recent );
68
69 fileHistory.UseMenu( openRecentMenu );
70 fileHistory.AddFilesToMenu();
71 }
72
73 // Ensure the title is up to date after changing language
74 openRecentMenu->SetTitle( _( "Open Recent" ) );
75
78
79 if( Pgm().GetCommonSettings()->m_Git.enableGit )
80 {
82 }
83
84 if( wxDir::Exists( PATHS::GetStockDemosPath() ) )
85 {
87 }
88
90
91 wxMenuItem* item = fileMenu->Add( openRecentMenu->Clone() );
92
93 fileMenu->AppendSeparator();
96
97 // Add the file menu condition here since it needs the item ID for the submenu
99 cond.Enable( FILE_HISTORY::FileHistoryNotEmpty( fileHistory ) );
100 RegisterUIUpdateHandler( item->GetId(), cond );
101
102 fileMenu->AppendSeparator();
104
105 fileMenu->AppendSeparator();
106 fileMenu->Add( ACTIONS::saveAs );
107
108 fileMenu->AppendSeparator();
109
110 //Import Sub-menu
111 ACTION_MENU* importMenu = new ACTION_MENU( false, controlTool );
112 importMenu->SetTitle( _( "Import Non-KiCad Project..." ) );
113 importMenu->SetIcon( BITMAPS::import_project );
114
115 importMenu->Add( _( "Altium Project..." ),
116 _( "Import Altium Schematic and PCB (*.PrjPcb)" ),
118 BITMAPS::import_project );
119 importMenu->Add( _( "CADSTAR Project..." ),
120 _( "Import CADSTAR Archive Schematic and PCB (*.csa, *.cpa)" ),
122 BITMAPS::import_project );
123
124 importMenu->Add( _( "EAGLE Project..." ),
125 _( "Import EAGLE CAD XML schematic and board" ),
127 BITMAPS::import_project );
128
129 importMenu->Add( _( "EasyEDA (JLCEDA) Std Backup..." ),
130 _( "Import EasyEDA (JLCEDA) Standard schematic and board" ),
132 BITMAPS::import_project );
133
134 importMenu->Add( _( "EasyEDA (JLCEDA) Pro Project..." ),
135 _( "Import EasyEDA (JLCEDA) Professional schematic and board" ),
136 ID_IMPORT_EASYEDAPRO_PROJECT, BITMAPS::import_project );
137
138 fileMenu->Add( importMenu );
139
140 fileMenu->AppendSeparator();
143
144 fileMenu->AppendSeparator();
145 fileMenu->AddQuitOrClose( nullptr, wxS( "KiCad" ) );
146
147 //-- Edit menu -----------------------------------------------------------
148 //
149
150 ACTION_MENU* editMenu = new ACTION_MENU( false, controlTool );
151
152 /*
153 * While we don't presently use these, they need to be here so that cut/copy/paste work
154 * in things like search boxes in file open dialogs.
155 */
156 editMenu->Add( ACTIONS::cut );
157 editMenu->Add( ACTIONS::copy );
158 editMenu->Add( ACTIONS::paste );
159
160 //-- View menu -----------------------------------------------------------
161 //
162 ACTION_MENU* viewMenu = new ACTION_MENU( false, controlTool );
163
164 viewMenu->Add( ACTIONS::zoomRedraw );
165
166 viewMenu->AppendSeparator();
169
170#ifdef __APPLE__
171 // Add a separator only on macOS because the OS adds menu items to the view menu after ours
172 viewMenu->AppendSeparator();
173#endif
174
175 //-- Tools menu -----------------------------------------------
176 //
177 ACTION_MENU* toolsMenu = new ACTION_MENU( false, controlTool );
178
183
184 toolsMenu->AppendSeparator();
189
190 wxMenuItem* pcmMenuItem = toolsMenu->Add( KICAD_MANAGER_ACTIONS::showPluginManager );
191
194 {
195 pcmMenuItem->Enable( false );
196 }
197
198 toolsMenu->AppendSeparator();
199 toolsMenu->Add( _( "Edit Local File..." ),
200 _( "Edit local file in text editor" ),
202 BITMAPS::editor );
203
204 //-- Preferences menu -----------------------------------------------
205 //
206 ACTION_MENU* prefsMenu = new ACTION_MENU( false, controlTool );
207
208 prefsMenu->Add( ACTIONS::configurePaths );
209 prefsMenu->Add( ACTIONS::showSymbolLibTable );
212 prefsMenu->Add( ACTIONS::openPreferences );
213
214 prefsMenu->AppendSeparator();
215 AddMenuLanguageList( prefsMenu, controlTool );
216
217
218 //-- Menubar -------------------------------------------------------------
219 //
220 menuBar->Append( fileMenu, _( "&File" ) );
221 menuBar->Append( editMenu, _( "&Edit" ) );
222 menuBar->Append( viewMenu, _( "&View" ) );
223 menuBar->Append( toolsMenu, _( "&Tools" ) );
224 menuBar->Append( prefsMenu, _( "&Preferences" ) );
225 AddStandardHelpMenu( menuBar );
226
227 SetMenuBar( menuBar );
228 delete oldMenuBar;
229}
static TOOL_ACTION paste
Definition: actions.h:80
static TOOL_ACTION zoomRedraw
Definition: actions.h:131
static TOOL_ACTION saveAs
Definition: actions.h:59
static TOOL_ACTION copy
Definition: actions.h:78
static TOOL_ACTION showSymbolLibTable
Definition: actions.h:273
static TOOL_ACTION openPreferences
Definition: actions.h:271
static TOOL_ACTION showFootprintLibTable
Definition: actions.h:274
static TOOL_ACTION showDesignBlockLibTable
Definition: actions.h:275
static TOOL_ACTION cut
Definition: actions.h:77
static TOOL_ACTION configurePaths
Definition: actions.h:272
Define the structure of a menu based on ACTIONs.
Definition: action_menu.h:49
void AddQuitOrClose(KIFACE_BASE *aKiface, wxString aAppname="")
Add either a standard Quit or Close item to the menu.
ACTION_MENU * Clone() const
Create a deep, recursive copy of this ACTION_MENU.
void SetTitle(const wxString &aTitle) override
Set title for the menu.
Definition: action_menu.cpp:92
void SetIcon(BITMAPS aIcon)
Assign an icon for the entry.
Definition: action_menu.cpp:78
wxMenuItem * Add(const wxString &aLabel, int aId, BITMAPS aIcon)
Add a wxWidgets-style entry to the menu.
void AddMenuLanguageList(ACTION_MENU *aMasterMenu, TOOL_INTERACTIVE *aControlTool)
Create a menu list for language choice, and add it as submenu to MasterMenu.
void SetMenuBar(wxMenuBar *menu_bar) override
FILE_HISTORY & GetFileHistory()
Get the frame's main file history.
virtual void RegisterUIUpdateHandler(int aID, const ACTION_CONDITIONS &aConditions) override
Register a UI update handler for the control with ID aID.
void AddStandardHelpMenu(wxMenuBar *aMenuBar)
Add the standard KiCad help menu to the menubar.
This class implements a file history object to store a list of files, that can then be added to a men...
Definition: file_history.h:43
void SetClearText(wxString aClearText)
Set the text displayed on the menu item that clears the entire menu.
Definition: file_history.h:123
static SELECTION_CONDITION FileHistoryNotEmpty(const FILE_HISTORY &aHistory)
Create a SELECTION_CONDITION that can be used to enable a menu item when the file history has items i...
void AddFilesToMenu() override
Add the files to all registered menus.
Definition: file_history.h:98
static TOOL_ACTION openDemoProject
static TOOL_ACTION editPCB
static TOOL_ACTION unarchiveProject
static TOOL_ACTION newProject
static TOOL_ACTION editSchematic
static TOOL_ACTION openTextEditor
static TOOL_ACTION archiveProject
static TOOL_ACTION openProject
static TOOL_ACTION closeProject
static TOOL_ACTION convertImage
static TOOL_ACTION editDrawingSheet
static TOOL_ACTION openProjectDirectory
static TOOL_ACTION openJobsetFile
static TOOL_ACTION newJobsetFile
static TOOL_ACTION editFootprints
static TOOL_ACTION showPluginManager
static TOOL_ACTION showCalculator
static TOOL_ACTION viewGerbers
static TOOL_ACTION newFromRepository
static TOOL_ACTION newFromTemplate
static TOOL_ACTION editSymbols
Handle actions in the kicad manager frame.
void doReCreateMenuBar() override
static wxString GetStockDemosPath()
Gets the stock (install) demos path.
Definition: paths.cpp:413
TOOL_MANAGER * m_toolManager
Definition: tools_holder.h:171
Wrapper around a wxMenuBar object that prevents the accelerator table from being used.
Definition: wx_menubar.h:47
#define _(s)
IDs used in KiCad main frame foe menuitems and tools.
@ ID_IMPORT_EAGLE_PROJECT
Definition: kicad_id.h:69
@ ID_IMPORT_EASYEDAPRO_PROJECT
Definition: kicad_id.h:71
@ ID_IMPORT_CADSTAR_ARCHIVE_PROJECT
Definition: kicad_id.h:68
@ ID_EDIT_LOCAL_FILE_IN_TEXT_EDITOR
Definition: kicad_id.h:66
@ ID_IMPORT_EASYEDA_PROJECT
Definition: kicad_id.h:70
@ ID_IMPORT_ALTIUM_PROJECT
Definition: kicad_id.h:72
PBOOL GetPolicyBool(const wxString &aKey)
Definition: unix/policy.cpp:26
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
#define POLICY_KEY_PCM
Definition: policy_keys.h:31
Functors that can be used to figure out how the action controls should be displayed in the UI and if ...
ACTION_CONDITIONS & Enable(const SELECTION_CONDITION &aCondition)