KiCad PCB EDA Suite
Loading...
Searching...
No Matches
toolbars_sch_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) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2008 Wayne Stambaugh <[email protected]>
6 * Copyright (C) 2004-2019 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 <sch_draw_panel.h>
29#include <sch_edit_frame.h>
30#include <kiface_base.h>
31#include <bitmaps.h>
32#include <eeschema_id.h>
33#include <python_scripting.h>
34#include <tool/tool_manager.h>
35#include <tool/action_toolbar.h>
36#include <tools/ee_actions.h>
41
42/* Create the main Horizontal Toolbar for the schematic editor
43 */
45{
46 if( m_mainToolBar )
47 {
49 }
50 else
51 {
53 wxDefaultPosition, wxDefaultSize,
54 KICAD_AUI_TB_STYLE | wxAUI_TB_HORZ_LAYOUT | wxAUI_TB_HORIZONTAL );
56 }
57
58 // Set up toolbar
59 if( Kiface().IsSingle() ) // not when under a project mgr
60 {
63 }
64
66
69
74
77
81
85
93
98
104
109
117
120
121 // Access to the scripting console
122 if( SCRIPTING::IsWxAvailable() )
123 {
126 }
127
128 // after adding the tools to the toolbar, must call Realize() to reflect the changes
130}
131
132
133/* Create Vertical Right Toolbar
134 */
136{
137 if( m_drawToolBar )
138 {
140 }
141 else
142 {
143 m_drawToolBar = new ACTION_TOOLBAR( this, ID_V_TOOLBAR, wxDefaultPosition, wxDefaultSize,
144 KICAD_AUI_TB_STYLE | wxAUI_TB_VERTICAL );
146 }
147
148 // Set up toolbar
151
166
176
178}
179
180
181/* Create Vertical Left Toolbar (Option Toolbar)
182 */
184{
185 if( m_optionsToolBar )
186 {
188 }
189 else
190 {
192 wxDefaultPosition, wxDefaultSize,
193 KICAD_AUI_TB_STYLE | wxAUI_TB_VERTICAL );
195 }
196
202
205
210
213
216
217 if( ADVANCED_CFG::GetCfg().m_DrawBoundingBoxes )
219
221 std::unique_ptr<ACTION_MENU> gridMenu = std::make_unique<ACTION_MENU>( false, selTool );
222 gridMenu->Add( ACTIONS::gridProperties );
224
226}
227
228
230{
232
233 // Ensure m_show_search is up to date (the pane can be closed outside the menu)
234 m_show_search = m_auimgr.GetPane( SearchPaneName() ).IsShown();
235
237
238 wxAuiPaneInfo& searchPaneInfo = m_auimgr.GetPane( SearchPaneName() );
239 searchPaneInfo.Show( m_show_search );
240
241 if( m_show_search )
242 {
243 SetAuiPaneSize( m_auimgr, searchPaneInfo, -1, cfg->m_AuiPanels.search_panel_height );
245 }
246 else
247 {
248 cfg->m_AuiPanels.search_panel_height = m_searchPane->GetSize().y;
249 m_auimgr.Update();
250 }
251}
252
253
255{
257
258 wxCHECK( cfg, /* void */ );
259
260 wxAuiPaneInfo& hierarchy_pane = m_auimgr.GetPane( SchematicHierarchyPaneName() );
261
262 hierarchy_pane.Show( !hierarchy_pane.IsShown() );
263
264 if( hierarchy_pane.IsShown() )
265 {
266 if( hierarchy_pane.IsFloating() )
267 {
268 hierarchy_pane.FloatingSize( cfg->m_AuiPanels.hierarchy_panel_float_width,
270 m_auimgr.Update();
271 }
272 else if( cfg->m_AuiPanels.hierarchy_panel_docked_width > 0 )
273 {
274 // SetAuiPaneSize also updates m_auimgr
275 SetAuiPaneSize( m_auimgr, hierarchy_pane,
277 }
278 }
279 else
280 {
281 if( hierarchy_pane.IsFloating() )
282 {
283 cfg->m_AuiPanels.hierarchy_panel_float_width = hierarchy_pane.floating_size.x;
284 cfg->m_AuiPanels.hierarchy_panel_float_height = hierarchy_pane.floating_size.y;
285 }
286 else
287 {
289 }
290
291 m_auimgr.Update();
292 }
293}
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static TOOL_ACTION gridProperties
Definition: actions.h:145
static TOOL_ACTION toggleGrid
Definition: actions.h:144
static TOOL_ACTION paste
Definition: actions.h:69
static TOOL_ACTION zoomRedraw
Definition: actions.h:93
static TOOL_ACTION millimetersUnits
Definition: actions.h:150
static TOOL_ACTION zoomOutCenter
Definition: actions.h:97
static TOOL_ACTION showSymbolEditor
Definition: actions.h:165
static TOOL_ACTION showSymbolBrowser
Definition: actions.h:164
static TOOL_ACTION findAndReplace
Definition: actions.h:79
static TOOL_ACTION milsUnits
Definition: actions.h:149
static TOOL_ACTION toggleBoundingBoxes
Definition: actions.h:108
static TOOL_ACTION plot
Definition: actions.h:58
static TOOL_ACTION open
Definition: actions.h:50
static TOOL_ACTION pageSettings
Definition: actions.h:56
static TOOL_ACTION undo
Definition: actions.h:65
static TOOL_ACTION inchesUnits
Definition: actions.h:148
static TOOL_ACTION toggleCursorStyle
Definition: actions.h:105
static TOOL_ACTION selectionTool
Definition: actions.h:157
static TOOL_ACTION save
Definition: actions.h:51
static TOOL_ACTION zoomFitScreen
Definition: actions.h:99
static TOOL_ACTION redo
Definition: actions.h:66
static TOOL_ACTION deleteTool
Definition: actions.h:74
static TOOL_ACTION zoomTool
Definition: actions.h:102
static TOOL_ACTION showFootprintEditor
Definition: actions.h:167
static TOOL_ACTION print
Definition: actions.h:57
static TOOL_ACTION doNew
Definition: actions.h:47
static TOOL_ACTION zoomFitObjects
Definition: actions.h:100
static TOOL_ACTION zoomInCenter
Definition: actions.h:96
static TOOL_ACTION find
Definition: actions.h:78
Define the structure of a toolbar with buttons that invoke ACTIONs.
static constexpr bool TOGGLE
static constexpr bool CANCEL
void SetAuiManager(wxAuiManager *aManager)
Set the AUI manager that this toolbar belongs to.
void AddToolContextMenu(const TOOL_ACTION &aAction, std::unique_ptr< ACTION_MENU > aMenu)
Add a context menu to a specific tool item on the toolbar.
void AddScaledSeparator(wxWindow *aWindow)
Add a separator that introduces space on either side to not squash the tools when scaled.
bool KiRealize()
Use this over Realize() to avoid a rendering glitch with fixed orientation toolbars.
void ClearToolbar()
Clear the toolbar and remove all associated menus.
void Add(const TOOL_ACTION &aAction, bool aIsToggleEntry=false, bool aIsCancellable=false)
Add a TOOL_ACTION-based button to the toolbar.
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
static constexpr int KICAD_AUI_TB_STYLE
< Default style flags used for wxAUI toolbars.
wxAuiManager m_auimgr
ACTION_TOOLBAR * m_optionsToolBar
ACTION_TOOLBAR * m_mainToolBar
ACTION_TOOLBAR * m_drawToolBar
SEARCH_PANE * m_searchPane
The current canvas type.
static TOOL_ACTION mirrorV
Definition: ee_actions.h:126
static TOOL_ACTION runERC
Definition: ee_actions.h:151
static TOOL_ACTION toggleAnnotateAuto
Definition: ee_actions.h:261
static TOOL_ACTION lineMode90
Definition: ee_actions.h:256
static TOOL_ACTION toggleHiddenPins
Definition: ee_actions.h:230
static TOOL_ACTION navigateForward
Definition: ee_actions.h:218
static TOOL_ACTION placeSymbol
Definition: ee_actions.h:79
static TOOL_ACTION navigateBack
Definition: ee_actions.h:219
static TOOL_ACTION showPythonConsole
Definition: ee_actions.h:251
static TOOL_ACTION placeClassLabel
Definition: ee_actions.h:88
static TOOL_ACTION drawWire
Definition: ee_actions.h:81
static TOOL_ACTION drawCircle
Definition: ee_actions.h:96
static TOOL_ACTION rotateCCW
Definition: ee_actions.h:125
static TOOL_ACTION lineModeFree
Definition: ee_actions.h:255
static TOOL_ACTION drawBus
Definition: ee_actions.h:82
static TOOL_ACTION placePower
Definition: ee_actions.h:80
static TOOL_ACTION drawLines
Definition: ee_actions.h:98
static TOOL_ACTION mirrorH
Definition: ee_actions.h:127
static TOOL_ACTION showSimulator
Definition: ee_actions.h:270
static TOOL_ACTION highlightNetTool
Definition: ee_actions.h:286
static TOOL_ACTION rotateCW
Definition: ee_actions.h:124
static TOOL_ACTION importSheetPin
Definition: ee_actions.h:92
static TOOL_ACTION assignFootprints
Definition: ee_actions.h:161
static TOOL_ACTION placeGlobalLabel
Definition: ee_actions.h:89
static TOOL_ACTION placeHierLabel
Definition: ee_actions.h:90
static TOOL_ACTION editSymbolFields
Definition: ee_actions.h:153
static TOOL_ACTION drawTextBox
Definition: ee_actions.h:94
static TOOL_ACTION drawRectangle
Definition: ee_actions.h:95
static TOOL_ACTION annotate
Definition: ee_actions.h:152
static TOOL_ACTION placeImage
Definition: ee_actions.h:99
static TOOL_ACTION showHierarchy
Definition: ee_actions.h:222
static TOOL_ACTION placeSchematicText
Definition: ee_actions.h:93
static TOOL_ACTION drawArc
Definition: ee_actions.h:97
static TOOL_ACTION lineMode45
Definition: ee_actions.h:257
static TOOL_ACTION drawSheet
Definition: ee_actions.h:91
static TOOL_ACTION navigateUp
Definition: ee_actions.h:217
static TOOL_ACTION placeLabel
Definition: ee_actions.h:87
static TOOL_ACTION showPcbNew
Definition: ee_actions.h:174
static TOOL_ACTION placeBusWireEntry
Definition: ee_actions.h:86
static TOOL_ACTION placeJunction
Definition: ee_actions.h:85
static TOOL_ACTION generateBOM
Definition: ee_actions.h:177
static TOOL_ACTION placeNoConnect
Definition: ee_actions.h:84
static TOOL_ACTION schematicSetup
Definition: ee_actions.h:163
EESCHEMA_SETTINGS * eeconfig() const
void ReCreateVToolbar() override
void ToggleSearch()
Toggle the show/hide state of Search pane.
static const wxString SearchPaneName()
void ToggleSchematicHierarchy()
Toggle the show/hide state of the left side schematic navigation panel.
static const wxString SchematicHierarchyPaneName()
void ReCreateOptToolbar() override
HIERARCHY_PANE * m_hierarchy
void ReCreateHToolbar() override
void FocusSearch()
Definition: search_pane.cpp:89
TOOL_MANAGER * m_toolManager
Definition: tools_holder.h:170
@ ID_OPT_TOOLBAR
Definition: id.h:102
@ ID_V_TOOLBAR
Definition: id.h:101
@ ID_H_TOOLBAR
Definition: id.h:100
void SetAuiPaneSize(wxAuiManager &aManager, wxAuiPaneInfo &aPane, int aWidth, int aHeight)
Sets the size of an AUI pane, working around http://trac.wxwidgets.org/ticket/13180.