KiCad PCB EDA Suite
Loading...
Searching...
No Matches
menubar_symbol_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) 2007 Jean-Pierre Charras, [email protected]
5 * Copyright (C) 2009 Wayne Stambaugh <[email protected]>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22#include <bitmaps.h>
23#include <tool/action_menu.h>
24#include <tool/tool_manager.h>
25#include <tools/sch_actions.h>
28#include "symbol_edit_frame.h"
29#include <widgets/wx_menubar.h>
30
31
33{
35 // wxWidgets handles the Mac Application menu behind the scenes, but that means
36 // we always have to start from scratch with a new wxMenuBar.
37 wxMenuBar* oldMenuBar = GetMenuBar();
38 WX_MENUBAR* menuBar = new WX_MENUBAR();
39
40 //-- File menu -----------------------------------------------
41 //
42 ACTION_MENU* fileMenu = new ACTION_MENU( false, selTool );
43
44 fileMenu->Add( ACTIONS::newLibrary );
45 fileMenu->Add( ACTIONS::addLibrary );
47 fileMenu->Add( SCH_ACTIONS::newSymbol );
49
50 fileMenu->AppendSeparator();
51 fileMenu->Add( ACTIONS::save );
52 fileMenu->Add( SCH_ACTIONS::saveSymbolAs );
54
56 fileMenu->Add( ACTIONS::saveAll );
57
58 fileMenu->Add( ACTIONS::revert );
59
60 fileMenu->AppendSeparator();
61
62 ACTION_MENU* submenuImport = new ACTION_MENU( false, selTool );
63 submenuImport->SetTitle( _( "Import" ) );
64 submenuImport->SetIcon( BITMAPS::import );
65
66 submenuImport->Add( SCH_ACTIONS::importSymbol, ACTION_MENU::NORMAL, _( "Symbol..." ) );
67 submenuImport->Add( SCH_ACTIONS::importGraphics, ACTION_MENU::NORMAL, _( "Graphics..." ) );
68
69 fileMenu->Add( submenuImport );
70
71 // Export submenu
72 ACTION_MENU* submenuExport = new ACTION_MENU( false, selTool );
73 submenuExport->SetTitle( _( "Export" ) );
74 submenuExport->SetIcon( BITMAPS::export_file );
75 submenuExport->Add( SCH_ACTIONS::exportSymbol, ACTION_MENU::NORMAL, _( "Symbol..." ) );
76 submenuExport->Add( SCH_ACTIONS::exportSymbolView, ACTION_MENU::NORMAL, _( "View as PNG..." ) );
77 submenuExport->Add( SCH_ACTIONS::exportSymbolAsSVG, ACTION_MENU::NORMAL, _( "Symbol as SVG..." ) );
78 fileMenu->Add( submenuExport );
79
80 fileMenu->AppendSeparator();
82
83 fileMenu->AppendSeparator();
85
86 fileMenu->AppendSeparator();
87 fileMenu->AddClose( _( "Library Editor" ) );
88
89
90 //-- Edit menu -----------------------------------------------
91 //
92 ACTION_MENU* editMenu = new ACTION_MENU( false, selTool );
93
94 editMenu->Add( ACTIONS::undo );
95 editMenu->Add( ACTIONS::redo );
96
97 editMenu->AppendSeparator();
98 editMenu->Add( ACTIONS::cut );
99 editMenu->Add( ACTIONS::copy );
100 editMenu->Add( ACTIONS::copyAsText );
101 editMenu->Add( ACTIONS::paste );
102 editMenu->Add( ACTIONS::doDelete );
103 editMenu->Add( ACTIONS::duplicate );
104
105 editMenu->AppendSeparator();
106 editMenu->Add( ACTIONS::selectAll );
107 editMenu->Add( ACTIONS::unselectAll );
108
109 editMenu->AppendSeparator();
110 editMenu->Add( ACTIONS::find );
111 editMenu->Add( ACTIONS::findAndReplace );
112
113 editMenu->AppendSeparator();
114 editMenu->Add( SCH_ACTIONS::pinTable );
116
117
118 //-- View menu -----------------------------------------------
119 //
120 ACTION_MENU* viewMenu = new ACTION_MENU( false, selTool );
121
122 ACTION_MENU* showHidePanels = new ACTION_MENU( false, selTool );
123 showHidePanels->SetTitle( _( "Panels" ) );
126 viewMenu->Add( showHidePanels );
127 viewMenu->AppendSeparator();
128
129 viewMenu->Add( ACTIONS::showSymbolBrowser );
130
131 viewMenu->AppendSeparator();
132 viewMenu->Add( ACTIONS::zoomInCenter );
133 viewMenu->Add( ACTIONS::zoomOutCenter );
134 viewMenu->Add( ACTIONS::zoomFitScreen );
135 viewMenu->Add( ACTIONS::zoomTool );
136 viewMenu->Add( ACTIONS::zoomRedraw );
137
138 viewMenu->AppendSeparator();
142
143 viewMenu->AppendSeparator();
144 viewMenu->Add( SCH_ACTIONS::nextSymbolTab );
145 viewMenu->Add( SCH_ACTIONS::prevSymbolTab );
146 viewMenu->Add( SCH_ACTIONS::closeSymbolTab );
147
148
149 //-- Place menu -----------------------------------------------
150 //
151 ACTION_MENU* placeMenu = new ACTION_MENU( false, selTool );
152
153 placeMenu->Add( SCH_ACTIONS::placeSymbolPin );
154 placeMenu->Add( SCH_ACTIONS::placeSymbolText );
156 placeMenu->Add( SCH_ACTIONS::drawRectangle );
157 placeMenu->Add( SCH_ACTIONS::drawCircle );
158 placeMenu->Add( SCH_ACTIONS::drawEllipse );
159 placeMenu->Add( SCH_ACTIONS::drawEllipseArc );
160 placeMenu->Add( SCH_ACTIONS::drawArc );
161 placeMenu->Add( SCH_ACTIONS::drawBezier );
162 placeMenu->Add( SCH_ACTIONS::drawSymbolLines );
164
165
166 //-- Inspect menu -----------------------------------------------
167 //
168 ACTION_MENU* inspectMenu = new ACTION_MENU( false, selTool );
169
170 inspectMenu->Add( ACTIONS::showDatasheet );
171
172 inspectMenu->AppendSeparator();
173 inspectMenu->Add( SCH_ACTIONS::checkSymbol );
174
175
176 //-- Preferences menu -----------------------------------------------
177 //
178 ACTION_MENU* prefsMenu = new ACTION_MENU( false, selTool );
179
180 prefsMenu->Add( ACTIONS::configurePaths );
181 prefsMenu->Add( ACTIONS::showSymbolLibTable );
182 prefsMenu->Add( ACTIONS::openPreferences );
183
184 prefsMenu->AppendSeparator();
185 AddMenuLanguageList( prefsMenu, selTool );
186
187
188 //-- Menubar -------------------------------------------------------------
189 //
190 menuBar->Append( fileMenu, _( "&File" ) );
191 menuBar->Append( editMenu, _( "&Edit" ) );
192 menuBar->Append( viewMenu, _( "&View" ) );
193 menuBar->Append( placeMenu, _( "&Place" ) );
194 menuBar->Append( inspectMenu, _( "&Inspect" ) );
195 menuBar->Append( prefsMenu, _( "P&references" ) );
196 AddStandardHelpMenu( menuBar );
197
198 SetMenuBar( menuBar );
199 delete oldMenuBar;
200}
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 showLibraryTree
Definition actions.h:160
static TOOL_ACTION zoomOutCenter
Definition actions.h:132
static TOOL_ACTION addLibrary
Definition actions.h:52
static TOOL_ACTION copy
Definition actions.h:74
static TOOL_ACTION showSymbolLibTable
Definition actions.h:278
static TOOL_ACTION showSymbolBrowser
Definition actions.h:255
static TOOL_ACTION showDatasheet
Definition actions.h:263
static TOOL_ACTION findAndReplace
Definition actions.h:114
static TOOL_ACTION openPreferences
Definition actions.h:276
static TOOL_ACTION saveAll
Definition actions.h:57
static TOOL_ACTION undo
Definition actions.h:71
static TOOL_ACTION duplicate
Definition actions.h:80
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 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 configurePaths
Definition actions.h:277
static TOOL_ACTION copyAsText
Definition actions.h:75
static TOOL_ACTION selectAll
Definition actions.h:78
static TOOL_ACTION find
Definition actions.h:113
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.
static TOOL_ACTION importSymbol
static TOOL_ACTION newSymbol
static TOOL_ACTION saveLibraryAs
static TOOL_ACTION drawEllipseArc
Definition sch_actions.h:94
static TOOL_ACTION checkSymbol
static TOOL_ACTION editLibSymbolWithLibEdit
static TOOL_ACTION drawArc
Definition sch_actions.h:95
static TOOL_ACTION pinTable
static TOOL_ACTION drawSymbolLines
static TOOL_ACTION placeSymbolPin
static TOOL_ACTION drawSymbolTextBox
static TOOL_ACTION exportSymbolAsSVG
static TOOL_ACTION drawRectangle
Definition sch_actions.h:91
static TOOL_ACTION drawEllipse
Definition sch_actions.h:93
static TOOL_ACTION drawCircle
Definition sch_actions.h:92
static TOOL_ACTION importGraphics
static TOOL_ACTION closeSymbolTab
static TOOL_ACTION drawBezier
Definition sch_actions.h:96
static TOOL_ACTION compareLibraryWithFile
static TOOL_ACTION saveSymbolCopyAs
static TOOL_ACTION drawSymbolPolygon
static TOOL_ACTION showHiddenFields
static TOOL_ACTION prevSymbolTab
static TOOL_ACTION showHiddenPins
static TOOL_ACTION exportSymbolView
static TOOL_ACTION symbolProperties
static TOOL_ACTION placeSymbolText
static TOOL_ACTION nextSymbolTab
static TOOL_ACTION togglePinAltIcons
static TOOL_ACTION updateSymbolFields
static TOOL_ACTION exportSymbol
static TOOL_ACTION saveSymbolAs
bool IsSymbolFromSchematic() const
void doReCreateMenuBar() override
TOOL_MANAGER * m_toolManager
Wrapper around a wxMenuBar object that prevents the accelerator table from being used.
Definition wx_menubar.h:43
#define _(s)