KiCad PCB EDA Suite
Loading...
Searching...
No Matches
menubar_footprint_editor.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) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2015 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 2015 Wayne Stambaugh <[email protected]>
7 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
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, see <https://www.gnu.org/licenses/>.
21 */
22
24#include "pcbnew_id.h"
25#include <bitmaps.h>
26#include <tool/actions.h>
27#include <tool/action_menu.h>
28#include <tool/tool_manager.h>
29#include <tools/pcb_actions.h>
31#include <widgets/wx_menubar.h>
32
33
35{
37 // wxWidgets handles the Mac Application menu behind the scenes, but that means
38 // we always have to start from scratch with a new wxMenuBar.
39 wxMenuBar* oldMenuBar = GetMenuBar();
40 WX_MENUBAR* menuBar = new WX_MENUBAR();
41
42 //-- File menu ----------------------------------------------------------
43 //
44 ACTION_MENU* fileMenu = new ACTION_MENU( false, selTool );
45
46 fileMenu->Add( ACTIONS::newLibrary );
47 fileMenu->Add( ACTIONS::addLibrary );
48 fileMenu->Add( PCB_ACTIONS::newFootprint );
51
52 fileMenu->AppendSeparator();
53
54 fileMenu->Add( ACTIONS::save );
55 fileMenu->Add( ACTIONS::saveAs );
56 fileMenu->Add( ACTIONS::revert );
57
58 fileMenu->AppendSeparator();
59
60 ACTION_MENU* submenuImport = new ACTION_MENU( false, selTool );
61 submenuImport->SetTitle( _( "Import" ) );
62 submenuImport->SetIcon( BITMAPS::import );
63
64 submenuImport->Add( PCB_ACTIONS::importFootprint, ACTION_MENU::NORMAL, _( "Footprint..." ) );
65 submenuImport->Add( PCB_ACTIONS::placeImportedGraphics, ACTION_MENU::NORMAL, _( "Graphics..." ) );
66
67 fileMenu->Add( submenuImport );
68
69 ACTION_MENU* submenuExport = new ACTION_MENU( false, selTool );
70 submenuExport->SetTitle( _( "Export" ) );
71 submenuExport->SetIcon( BITMAPS::export_file );
72
73 submenuExport->Add( PCB_ACTIONS::exportFootprint, ACTION_MENU::NORMAL, _( "Footprint..." ) );
74 submenuExport->Add( _( "View as &PNG..." ),
75 _( "Create a PNG file from the current view" ),
78
79 fileMenu->Add( submenuExport );
80
81 fileMenu->AppendSeparator();
83
84 fileMenu->AppendSeparator();
86
87 fileMenu->AppendSeparator();
88 fileMenu->Add( ACTIONS::print );
89
90 fileMenu->AppendSeparator();
91 fileMenu->AddClose( _( "Footprint Editor" ) );
92
93
94 //-- Edit menu -------------------------------------------------------
95 //
96 ACTION_MENU* editMenu = new ACTION_MENU( false, selTool );
97
98 editMenu->Add( ACTIONS::undo );
99 editMenu->Add( ACTIONS::redo );
100
101 editMenu->AppendSeparator();
102 editMenu->Add( ACTIONS::cut );
103 editMenu->Add( ACTIONS::copy );
104 editMenu->Add( ACTIONS::paste );
105 editMenu->Add( ACTIONS::doDelete );
106 editMenu->Add( ACTIONS::duplicate );
107
108
109 editMenu->AppendSeparator();
110
111 // Select Submenu
112 ACTION_MENU* selectSubMenu = new ACTION_MENU( false, selTool );
113 selectSubMenu->SetTitle( _( "&Select" ) );
114 selectSubMenu->Add( ACTIONS::selectAll );
115 selectSubMenu->Add( ACTIONS::unselectAll );
116
117 editMenu->Add( selectSubMenu );
118
119 editMenu->AppendSeparator();
121 editMenu->Add( PCB_ACTIONS::padTable );
123 editMenu->Add( PCB_ACTIONS::enumeratePads );
124 editMenu->Add( ACTIONS::gridOrigin );
125
126
127 //-- View menu -------------------------------------------------------
128 //
129 ACTION_MENU* viewMenu = new ACTION_MENU( false, selTool );
130
131 ACTION_MENU* showHidePanels = new ACTION_MENU( false, selTool );
132 showHidePanels->SetTitle( _( "Panels" ) );
136 viewMenu->Add( showHidePanels );
137 viewMenu->AppendSeparator();
138
142 viewMenu->AppendSeparator();
143
145 viewMenu->Add( ACTIONS::show3DViewer );
146
147 viewMenu->AppendSeparator();
148 viewMenu->Add( ACTIONS::zoomInCenter );
149 viewMenu->Add( ACTIONS::zoomOutCenter );
150 viewMenu->Add( ACTIONS::zoomFitScreen );
151 viewMenu->Add( ACTIONS::zoomTool );
152 viewMenu->Add( ACTIONS::zoomRedraw );
153
154 viewMenu->AppendSeparator();
155 // Drawing Mode Submenu
156 ACTION_MENU* drawingModeSubMenu = new ACTION_MENU( false, selTool );
157 drawingModeSubMenu->SetTitle( _( "&Drawing Mode" ) );
158 drawingModeSubMenu->SetIcon( BITMAPS::add_zone );
159
160 drawingModeSubMenu->Add( PCB_ACTIONS::padDisplayMode, ACTION_MENU::CHECK );
162 drawingModeSubMenu->Add( PCB_ACTIONS::textOutlines, ACTION_MENU::CHECK );
163 viewMenu->Add( drawingModeSubMenu );
164
165 // Contrast Mode Submenu
166 ACTION_MENU* contrastModeSubMenu = new ACTION_MENU( false, selTool );
167 contrastModeSubMenu->SetTitle( _( "&Contrast Mode" ) );
168 contrastModeSubMenu->SetIcon( BITMAPS::contrast_mode );
169
170 contrastModeSubMenu->Add( ACTIONS::highContrastMode, ACTION_MENU::CHECK );
171 contrastModeSubMenu->Add( PCB_ACTIONS::layerAlphaDec );
172 contrastModeSubMenu->Add( PCB_ACTIONS::layerAlphaInc );
173 viewMenu->Add( contrastModeSubMenu );
174
176
177
178 //-- Place menu -------------------------------------------------------
179 //
180 ACTION_MENU* placeMenu = new ACTION_MENU( false, selTool );
181
182 placeMenu->Add( PCB_ACTIONS::placePad );
183 placeMenu->Add( PCB_ACTIONS::drawRuleArea );
184
185 placeMenu->AppendSeparator();
186 placeMenu->Add( PCB_ACTIONS::drawLine );
187 placeMenu->Add( PCB_ACTIONS::drawArc );
188 placeMenu->Add( PCB_ACTIONS::drawRectangle );
189 placeMenu->Add( PCB_ACTIONS::drawCircle );
190 placeMenu->Add( PCB_ACTIONS::drawEllipse );
191 placeMenu->Add( PCB_ACTIONS::drawEllipseArc );
192 placeMenu->Add( PCB_ACTIONS::drawPolygon );
193 placeMenu->Add( PCB_ACTIONS::drawBezier );
195 placeMenu->Add( PCB_ACTIONS::placeText );
196 placeMenu->Add( PCB_ACTIONS::drawTextBox );
197 placeMenu->Add( PCB_ACTIONS::drawTable );
198 placeMenu->Add( PCB_ACTIONS::placePoint );
199 placeMenu->Add( PCB_ACTIONS::placeBarcode );
200
201 placeMenu->AppendSeparator();
206 placeMenu->Add( PCB_ACTIONS::drawLeader );
207
208 placeMenu->AppendSeparator();
209 placeMenu->Add( PCB_ACTIONS::setAnchor );
210 placeMenu->Add( ACTIONS::gridSetOrigin );
211 placeMenu->AppendSeparator();
212 placeMenu->Add( ACTIONS::gridResetOrigin );
213
214
215 //-- Inspect menu ------------------------------------------------------
216 //
217 ACTION_MENU* inspectMenu = new ACTION_MENU( false, selTool );
218
219 inspectMenu->Add( ACTIONS::measureTool );
220
221 inspectMenu->AppendSeparator();
222 inspectMenu->Add( PCB_ACTIONS::checkFootprint );
223
224 inspectMenu->AppendSeparator();
225 inspectMenu->Add( PCB_ACTIONS::showDatasheet );
226
227
228 //-- Tools menu --------------------------------------------------------
229 //
230 ACTION_MENU* toolsMenu = new ACTION_MENU( false, selTool );
231
232 toolsMenu->Add( PCB_ACTIONS::loadFpFromBoard );
233 toolsMenu->Add( PCB_ACTIONS::saveFpToBoard );
234
235 toolsMenu->AppendSeparator();
236 toolsMenu->Add( PCB_ACTIONS::cleanupGraphics );
237 toolsMenu->Add( PCB_ACTIONS::repairFootprint );
238
239
240 //-- Preferences menu -------------------------------------------------
241 //
242 ACTION_MENU* prefsMenu = new ACTION_MENU( false, selTool );
243
244 prefsMenu->Add( ACTIONS::configurePaths );
246 prefsMenu->Add( ACTIONS::openPreferences );
247
248 prefsMenu->AppendSeparator();
249 AddMenuLanguageList( prefsMenu, selTool );
250
251 //--MenuBar -----------------------------------------------------------
252 //
253 menuBar->Append( fileMenu, _( "&File" ) );
254 menuBar->Append( editMenu, _( "&Edit" ) );
255 menuBar->Append( viewMenu, _( "&View" ) );
256 menuBar->Append( placeMenu, _( "&Place" ) );
257 menuBar->Append( inspectMenu, _( "&Inspect" ) );
258 menuBar->Append( toolsMenu, _( "&Tools" ) );
259 menuBar->Append( prefsMenu, _( "P&references" ) );
260 AddStandardHelpMenu( menuBar );
261
262 SetMenuBar( menuBar );
263 delete oldMenuBar;
264}
static TOOL_ACTION paste
Definition actions.h:76
static TOOL_ACTION zoomRedraw
Definition actions.h:128
static TOOL_ACTION unselectAll
Definition actions.h:79
static TOOL_ACTION revert
Definition actions.h:58
static TOOL_ACTION show3DViewer
Definition actions.h:254
static TOOL_ACTION showLibraryTree
Definition actions.h:160
static TOOL_ACTION zoomOutCenter
Definition actions.h:132
static TOOL_ACTION saveAs
Definition actions.h:55
static TOOL_ACTION addLibrary
Definition actions.h:52
static TOOL_ACTION copy
Definition actions.h:74
static TOOL_ACTION gridResetOrigin
Definition actions.h:192
static TOOL_ACTION showDatasheet
Definition actions.h:263
static TOOL_ACTION openPreferences
Definition actions.h:276
static TOOL_ACTION showFootprintLibTable
Definition actions.h:279
static TOOL_ACTION undo
Definition actions.h:71
static TOOL_ACTION duplicate
Definition actions.h:80
static TOOL_ACTION highContrastMode
Definition actions.h:151
static TOOL_ACTION gridOrigin
Definition actions.h:197
static TOOL_ACTION measureTool
Definition actions.h:248
static TOOL_ACTION doDelete
Definition actions.h:81
static TOOL_ACTION save
Definition actions.h:54
static TOOL_ACTION zoomFitScreen
Definition actions.h:138
static TOOL_ACTION redo
Definition actions.h:72
static TOOL_ACTION zoomTool
Definition actions.h:142
static TOOL_ACTION print
Definition actions.h:60
static TOOL_ACTION showProperties
Definition actions.h:262
static TOOL_ACTION zoomInCenter
Definition actions.h:131
static TOOL_ACTION newLibrary
Definition actions.h:51
static TOOL_ACTION cut
Definition actions.h:73
static TOOL_ACTION gridSetOrigin
Definition actions.h:191
static TOOL_ACTION configurePaths
Definition actions.h:277
static TOOL_ACTION showFootprintBrowser
Definition actions.h:257
static TOOL_ACTION selectAll
Definition actions.h:78
Define the structure of a menu based on ACTIONs.
Definition action_menu.h:43
static constexpr bool CHECK
void AddClose(const wxString &aAppname="")
Add a standard close item to the menu with the accelerator key CTRL-W.
void SetTitle(const wxString &aTitle) override
Set title for the menu.
static constexpr bool NORMAL
void SetIcon(BITMAPS aIcon)
Assign an icon for the entry.
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 AddStandardHelpMenu(wxMenuBar *aMenuBar)
Add the standard KiCad help menu to the menubar.
void doReCreateMenuBar() override
(Re)Create the menubar for the Footprint Editor frame
static TOOL_ACTION drawRuleArea
static TOOL_ACTION drawBezier
static TOOL_ACTION placeText
static TOOL_ACTION drawOrthogonalDimension
static TOOL_ACTION enumeratePads
Tool for quick pad enumeration.
static TOOL_ACTION drawRectangle
static TOOL_ACTION setAnchor
static TOOL_ACTION padDisplayMode
static TOOL_ACTION placeReferenceImage
static TOOL_ACTION showLayersManager
static TOOL_ACTION drawCircle
static TOOL_ACTION createFootprint
static TOOL_ACTION exportFootprint
static TOOL_ACTION drawEllipseArc
static TOOL_ACTION drawTable
static TOOL_ACTION drawTextBox
static TOOL_ACTION layerAlphaDec
static TOOL_ACTION drawPolygon
static TOOL_ACTION placePad
Activation of the drawing tool (placing a PAD)
static TOOL_ACTION drawRadialDimension
static TOOL_ACTION padTable
static TOOL_ACTION editTextAndGraphics
static TOOL_ACTION drawLeader
static TOOL_ACTION layerAlphaInc
static TOOL_ACTION newFootprint
static TOOL_ACTION defaultPadProperties
static TOOL_ACTION prevFootprintTab
static TOOL_ACTION drawEllipse
static TOOL_ACTION importFootprint
static TOOL_ACTION placeImportedGraphics
static TOOL_ACTION drawArc
static TOOL_ACTION graphicsOutlines
Display footprint graphics as outlines.
static TOOL_ACTION loadFpFromBoard
static TOOL_ACTION drawCenterDimension
static TOOL_ACTION footprintProperties
static TOOL_ACTION flipBoard
static TOOL_ACTION closeFootprintTab
static TOOL_ACTION nextFootprintTab
static TOOL_ACTION textOutlines
Display texts as lines.
static TOOL_ACTION checkFootprint
static TOOL_ACTION placeBarcode
static TOOL_ACTION placePoint
static TOOL_ACTION editLibFpInFpEditor
static TOOL_ACTION repairFootprint
static TOOL_ACTION saveFpToBoard
static TOOL_ACTION compareFpLibraryWithFile
static TOOL_ACTION drawLine
static TOOL_ACTION cleanupGraphics
static TOOL_ACTION drawAlignedDimension
The selection tool: currently supports:
TOOL_MANAGER * m_toolManager
Wrapper around a wxMenuBar object that prevents the accelerator table from being used.
Definition wx_menubar.h:43
#define _(s)
@ ID_FPEDIT_SAVE_PNG
Definition pcbnew_id.h:81