KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
toolbars_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) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
6 * Copyright (C) 2012 Wayne Stambaugh <stambaughw@gmail.com>
7 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software: you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your
12 * option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#include <tool/actions.h>
25#include <pcbnew_id.h>
26#include <bitmaps.h>
27#include <lset.h>
28#include <tool/action_toolbar.h>
29#include <tool/tool_manager.h>
30#include <tools/pcb_actions.h>
33#include <wx/choice.h>
34#include <wx/wupdlock.h>
35#include <advanced_config.h>
36
38
39std::optional<TOOLBAR_CONFIGURATION> FOOTPRINT_EDIT_TOOLBAR_SETTINGS::DefaultToolbarConfig( TOOLBAR_LOC aToolbar )
40{
42
43 // clang-format off
44 switch( aToolbar )
45 {
46 // No Aux toolbar
47 case TOOLBAR_LOC::TOP_AUX:
48 return std::nullopt;
49
50 case TOOLBAR_LOC::LEFT:
51 config.AppendAction( ACTIONS::toggleGrid )
52 .AppendAction( ACTIONS::toggleGridOverrides )
53 .AppendAction( PCB_ACTIONS::togglePolarCoords )
54 .AppendAction( ACTIONS::inchesUnits )
55 .AppendAction( ACTIONS::milsUnits )
56 .AppendAction( ACTIONS::millimetersUnits )
57 .AppendAction( ACTIONS::toggleCursorStyle );
58
59 config.AppendSeparator()
60 .AppendAction( PCB_ACTIONS::toggleHV45Mode );
61
62 config.AppendSeparator()
63 .AppendAction( PCB_ACTIONS::padDisplayMode )
64 .AppendAction( PCB_ACTIONS::graphicsOutlines )
65 .AppendAction( PCB_ACTIONS::textOutlines )
66 .AppendAction( ACTIONS::highContrastMode );
67
68 if( ADVANCED_CFG::GetCfg().m_DrawBoundingBoxes )
70
71 config.AppendSeparator()
72 .AppendAction( ACTIONS::showLibraryTree )
73 .AppendAction( PCB_ACTIONS::showLayersManager )
74 .AppendAction( ACTIONS::showProperties );
75
76 /* TODO (ISM): Implement context menus
77 PCB_SELECTION_TOOL* selTool = m_toolManager->GetTool<PCB_SELECTION_TOOL>();
78 std::unique_ptr<ACTION_MENU> gridMenu = std::make_unique<ACTION_MENU>( false, selTool );
79 gridMenu->Add( ACTIONS::gridProperties );
80 gridMenu->Add( ACTIONS::gridOrigin );
81 m_tbLeft->AddToolContextMenu( ACTIONS::toggleGrid, std::move( gridMenu ) );
82 */
83 break;
84
85 case TOOLBAR_LOC::RIGHT:
86 config.AppendAction( ACTIONS::selectionTool );
87
88 config.AppendSeparator()
89 .AppendAction( PCB_ACTIONS::placePad )
90 .AppendAction( PCB_ACTIONS::drawRuleArea );
91
92 config.AppendSeparator()
93 .AppendAction( PCB_ACTIONS::drawLine )
94 .AppendAction( PCB_ACTIONS::drawArc )
95 .AppendAction( PCB_ACTIONS::drawRectangle )
96 .AppendAction( PCB_ACTIONS::drawCircle )
97 .AppendAction( PCB_ACTIONS::drawPolygon )
98 .AppendAction( PCB_ACTIONS::drawBezier )
100 .AppendAction( PCB_ACTIONS::placeText )
101 .AppendAction( PCB_ACTIONS::drawTextBox )
102 .AppendAction( PCB_ACTIONS::drawTable )
103 .AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Dimension objects" ) )
108 .AddAction( PCB_ACTIONS::drawLeader ) )
109 .AppendAction( ACTIONS::deleteTool );
110
111 config.AppendSeparator()
112 .AppendAction( PCB_ACTIONS::setAnchor )
113 .AppendAction( ACTIONS::gridSetOrigin )
114 .AppendAction( ACTIONS::measureTool );
115
116 /* TODO (ISM): Implement context menus
117 PCB_SELECTION_TOOL* selTool = m_toolManager->GetTool<PCB_SELECTION_TOOL>();
118
119 auto makeArcMenu = [&]()
120 {
121 std::unique_ptr<ACTION_MENU> arcMenu = std::make_unique<ACTION_MENU>( false, selTool );
122
123 arcMenu->Add( PCB_ACTIONS::pointEditorArcKeepCenter, ACTION_MENU::CHECK );
124 arcMenu->Add( PCB_ACTIONS::pointEditorArcKeepEndpoint, ACTION_MENU::CHECK );
125
126 return arcMenu;
127 };
128
129 m_tbRight->AddToolContextMenu( PCB_ACTIONS::drawArc, makeArcMenu() );
130 */
131 break;
132
133 case TOOLBAR_LOC::TOP_MAIN:
134 config.AppendAction( PCB_ACTIONS::newFootprint )
135 .AppendAction( PCB_ACTIONS::createFootprint )
136 .AppendAction( ACTIONS::save );
137
138 config.AppendSeparator()
139 .AppendAction( ACTIONS::print );
140
141 config.AppendSeparator()
142 .AppendAction( ACTIONS::undo )
143 .AppendAction( ACTIONS::redo );
144
145 config.AppendSeparator()
146 .AppendAction( ACTIONS::zoomRedraw )
147 .AppendAction( ACTIONS::zoomInCenter )
148 .AppendAction( ACTIONS::zoomOutCenter )
149 .AppendAction( ACTIONS::zoomFitScreen )
150 .AppendAction( ACTIONS::zoomTool );
151
152 config.AppendSeparator()
153 .AppendAction( PCB_ACTIONS::rotateCcw )
154 .AppendAction( PCB_ACTIONS::rotateCw )
155 .AppendAction( PCB_ACTIONS::mirrorH )
156 .AppendAction( PCB_ACTIONS::mirrorV )
157 .AppendAction( ACTIONS::group )
158 .AppendAction( ACTIONS::ungroup );
159
160 config.AppendSeparator()
161 .AppendAction( PCB_ACTIONS::footprintProperties )
162 .AppendAction( PCB_ACTIONS::defaultPadProperties )
163 .AppendAction( ACTIONS::showDatasheet )
164 .AppendAction( PCB_ACTIONS::checkFootprint );
165
166 config.AppendSeparator()
167 .AppendAction( PCB_ACTIONS::loadFpFromBoard )
168 .AppendAction( PCB_ACTIONS::saveFpToBoard );
169
170 config.AppendSeparator()
171 .AppendControl( ACTION_TOOLBAR_CONTROLS::gridSelect );
172
173 config.AppendSeparator()
174 .AppendControl( ACTION_TOOLBAR_CONTROLS::zoomSelect );
175
176 config.AppendSeparator()
178 break;
179 }
180
181 // clang-format on
182 return config;
183}
184
185
186void FOOTPRINT_EDIT_FRAME::ReCreateLayerBox( bool aForceResizeToolbar )
187{
188 if( !m_SelLayerBox )
189 return;
190
191 m_SelLayerBox->SetToolTip( _( "+/- to switch" ) );
193
194 if( aForceResizeToolbar )
196}
static TOOL_ACTION toggleGrid
Definition: actions.h:198
static TOOL_ACTION zoomRedraw
Definition: actions.h:131
static TOOL_ACTION millimetersUnits
Definition: actions.h:206
static TOOL_ACTION showLibraryTree
Definition: actions.h:161
static TOOL_ACTION zoomOutCenter
Definition: actions.h:135
static TOOL_ACTION togglePolarCoords
Definition: actions.h:209
static TOOL_ACTION group
Definition: actions.h:235
static TOOL_ACTION showDatasheet
Definition: actions.h:261
static TOOL_ACTION milsUnits
Definition: actions.h:205
static TOOL_ACTION ungroup
Definition: actions.h:236
static TOOL_ACTION toggleBoundingBoxes
Definition: actions.h:154
static TOOL_ACTION undo
Definition: actions.h:75
static TOOL_ACTION inchesUnits
Definition: actions.h:204
static TOOL_ACTION highContrastMode
Definition: actions.h:152
static TOOL_ACTION toggleCursorStyle
Definition: actions.h:151
static TOOL_ACTION measureTool
Definition: actions.h:247
static TOOL_ACTION selectionTool
Definition: actions.h:246
static TOOL_ACTION save
Definition: actions.h:58
static TOOL_ACTION zoomFitScreen
Definition: actions.h:141
static TOOL_ACTION redo
Definition: actions.h:76
static TOOL_ACTION deleteTool
Definition: actions.h:86
static TOOL_ACTION zoomTool
Definition: actions.h:145
static TOOL_ACTION print
Definition: actions.h:64
static TOOL_ACTION showProperties
Definition: actions.h:260
static TOOL_ACTION zoomInCenter
Definition: actions.h:134
static TOOL_ACTION gridSetOrigin
Definition: actions.h:195
static TOOL_ACTION toggleGridOverrides
Definition: actions.h:199
static ACTION_TOOLBAR_CONTROL gridSelect
static ACTION_TOOLBAR_CONTROL layerSelector
static ACTION_TOOLBAR_CONTROL zoomSelect
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
virtual void UpdateToolbarControlSizes()
Update the sizes of any controls in the toolbars of the frame.
void ReCreateLayerBox(bool aForceResizeToolbar=true)
Re create the layer Box by clearing the old list, and building a new one from the new layers names an...
std::optional< TOOLBAR_CONFIGURATION > DefaultToolbarConfig(TOOLBAR_LOC aToolbar) override
Get the default tools to show on the specified canvas toolbar.
static TOOL_ACTION toggleHV45Mode
Definition: pcb_actions.h:520
static TOOL_ACTION drawRuleArea
Definition: pcb_actions.h:206
static TOOL_ACTION drawBezier
Definition: pcb_actions.h:189
static TOOL_ACTION placeText
Definition: pcb_actions.h:191
static TOOL_ACTION drawOrthogonalDimension
Definition: pcb_actions.h:202
static TOOL_ACTION drawRectangle
Definition: pcb_actions.h:186
static TOOL_ACTION setAnchor
Definition: pcb_actions.h:213
static TOOL_ACTION padDisplayMode
Definition: pcb_actions.h:317
static TOOL_ACTION placeReferenceImage
Definition: pcb_actions.h:190
static TOOL_ACTION showLayersManager
Definition: pcb_actions.h:434
static TOOL_ACTION drawCircle
Definition: pcb_actions.h:187
static TOOL_ACTION mirrorH
Mirroring of selected items.
Definition: pcb_actions.h:122
static TOOL_ACTION createFootprint
Definition: pcb_actions.h:456
static TOOL_ACTION drawTable
Definition: pcb_actions.h:193
static TOOL_ACTION drawTextBox
Definition: pcb_actions.h:192
static TOOL_ACTION drawPolygon
Definition: pcb_actions.h:185
static TOOL_ACTION placePad
Activation of the drawing tool (placing a PAD)
Definition: pcb_actions.h:480
static TOOL_ACTION drawRadialDimension
Definition: pcb_actions.h:201
static TOOL_ACTION drawLeader
Definition: pcb_actions.h:203
static TOOL_ACTION newFootprint
Definition: pcb_actions.h:453
static TOOL_ACTION defaultPadProperties
Definition: pcb_actions.h:469
static TOOL_ACTION drawArc
Definition: pcb_actions.h:188
static TOOL_ACTION graphicsOutlines
Display footprint graphics as outlines.
Definition: pcb_actions.h:492
static TOOL_ACTION loadFpFromBoard
Definition: pcb_actions.h:473
static TOOL_ACTION drawCenterDimension
Definition: pcb_actions.h:200
static TOOL_ACTION footprintProperties
Definition: pcb_actions.h:468
static TOOL_ACTION textOutlines
Display texts as lines.
Definition: pcb_actions.h:495
static TOOL_ACTION checkFootprint
Definition: pcb_actions.h:471
static TOOL_ACTION mirrorV
Definition: pcb_actions.h:123
static TOOL_ACTION saveFpToBoard
Definition: pcb_actions.h:474
static TOOL_ACTION drawLine
Definition: pcb_actions.h:184
static TOOL_ACTION rotateCw
Rotation of selected objects.
Definition: pcb_actions.h:115
static TOOL_ACTION rotateCcw
Definition: pcb_actions.h:116
static TOOL_ACTION drawAlignedDimension
Definition: pcb_actions.h:199
PCB_LAYER_BOX_SELECTOR * m_SelLayerBox
#define _(s)