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 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, see <https://www.gnu.org/licenses/>.
21 */
22
23#include <advanced_config.h>
25#include <sch_draw_panel.h>
26#include <sch_edit_frame.h>
27#include <kiface_base.h>
28#include <bitmaps.h>
29#include <eeschema_id.h>
30#include <pgm_base.h>
31#include <tool/action_menu.h>
32#include <tool/tool_manager.h>
34#include <tool/action_toolbar.h>
36#include <widgets/wx_infobar.h>
37#include <tools/sch_actions.h>
44#include <toolbars_sch_editor.h>
45#include <wx/choice.h>
46#include <wx/stattext.h>
47
48
50 _( "Current variant" ),
51 _( "Selects the current schematic variant" ),
52 { FRAME_SCH } );
53
54
55std::optional<TOOLBAR_CONFIGURATION> SCH_EDIT_TOOLBAR_SETTINGS::DefaultToolbarConfig( TOOLBAR_LOC aToolbar )
56{
58
59 // clang-format off
60 switch( aToolbar )
61 {
63 return std::nullopt;
64
66 config.AppendAction( ACTIONS::toggleGrid )
67 .WithContextMenu(
68 []( TOOL_MANAGER* aToolMgr )
69 {
70 SCH_SELECTION_TOOL* selTool = aToolMgr->GetTool<SCH_SELECTION_TOOL>();
71 auto menu = std::make_unique<ACTION_MENU>( false, selTool );
72 menu->Add( ACTIONS::gridProperties );
73 return menu;
74 } )
75 .AppendAction( ACTIONS::toggleGridOverrides )
76 .AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Units" ) )
77 .AddAction( ACTIONS::inchesUnits )
78 .AddAction( ACTIONS::milsUnits )
79 .AddAction( ACTIONS::millimetersUnits ) )
80 .AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Crosshair modes" ) )
83 .AddAction( ACTIONS::cursor45Crosshairs ) );
84
85 config.AppendSeparator()
86 .AppendAction( SCH_ACTIONS::toggleHiddenPins );
87
88 config.AppendSeparator()
89 .AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Line modes" ) )
90 .AddAction( SCH_ACTIONS::lineModeFree )
91 .AddAction( SCH_ACTIONS::lineMode90 )
92 .AddAction( SCH_ACTIONS::lineMode45 ) );
93
94 config.AppendSeparator()
95 .AppendAction( SCH_ACTIONS::toggleAnnotateAuto );
96
97 config.AppendSeparator()
98 .AppendAction( SCH_ACTIONS::showHierarchy )
99 .AppendAction( ACTIONS::showProperties );
100
101 if( ADVANCED_CFG::GetCfg().m_DrawBoundingBoxes )
102 config.AppendAction( ACTIONS::toggleBoundingBoxes );
103
104 break;
105
107 config.AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Selection modes" ) )
108 .AddAction( ACTIONS::selectSetRect )
109 .AddAction( ACTIONS::selectSetLasso ) )
110 .AppendAction( SCH_ACTIONS::highlightNetTool );
111
112 config.AppendSeparator()
113 .AppendAction( SCH_ACTIONS::placeSymbol )
114 .AppendAction( SCH_ACTIONS::placePower )
115 .AppendAction( SCH_ACTIONS::drawWire )
116 .AppendAction( SCH_ACTIONS::drawBus )
117 .AppendAction( SCH_ACTIONS::placeBusWireEntry )
118 .AppendAction( SCH_ACTIONS::placeNoConnect )
119 .AppendAction( SCH_ACTIONS::placeJunction )
120 .AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Labels" ) )
121 .AddAction( SCH_ACTIONS::placeLabel )
122 .AddAction( SCH_ACTIONS::placeClassLabel )
124 .AddAction( SCH_ACTIONS::placeHierLabel ) )
125 .AppendAction( SCH_ACTIONS::drawRuleArea )
126 .AppendAction( SCH_ACTIONS::drawSheet )
127 .AppendAction( SCH_ACTIONS::placeSheetPin )
128 .AppendAction( SCH_ACTIONS::syncAllSheetsPins );
129
130 config.AppendSeparator()
131 .AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Text objects" ) )
133 .AddAction( SCH_ACTIONS::drawTextBox ) )
134 .AppendAction( SCH_ACTIONS::drawTable )
135 .AppendAction( SCH_ACTIONS::drawRectangle )
136 .AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Circle" ) )
137 .AddAction( SCH_ACTIONS::drawCircle )
138 .AddAction( SCH_ACTIONS::drawEllipse ) )
139 .AppendGroup( TOOLBAR_GROUP_CONFIG( _( "Arc" ) )
140 .AddAction( SCH_ACTIONS::drawArc )
141 .AddAction( SCH_ACTIONS::drawEllipseArc ) )
142 .AppendAction( SCH_ACTIONS::drawBezier )
143 .AppendAction( SCH_ACTIONS::drawPolygon )
144 .AppendAction( SCH_ACTIONS::drawLines )
145 .AppendAction( SCH_ACTIONS::placeImage )
146 .AppendAction( ACTIONS::deleteTool );
147
148 break;
149
151 if( Kiface().IsSingle() ) // not when under a project mgr
152 {
153 config.AppendAction( ACTIONS::doNew );
154 config.AppendAction( ACTIONS::open );
155 }
156
157 config.AppendAction( ACTIONS::save );
158
159 config.AppendSeparator()
160 .AppendAction( SCH_ACTIONS::schematicSetup );
161
162 config.AppendSeparator()
163 .AppendAction( ACTIONS::pageSettings )
164 .AppendAction( ACTIONS::print )
165 .AppendAction( ACTIONS::plot );
166
167 config.AppendSeparator()
168 .AppendAction( ACTIONS::paste );
169
170 config.AppendSeparator()
171 .AppendAction( ACTIONS::undo )
172 .AppendAction( ACTIONS::redo );
173
174 config.AppendSeparator()
175 .AppendAction( ACTIONS::find )
176 .AppendAction( ACTIONS::findAndReplace );
177
178 config.AppendSeparator()
179 .AppendAction( ACTIONS::zoomRedraw )
180 .AppendAction( ACTIONS::zoomInCenter )
181 .AppendAction( ACTIONS::zoomOutCenter )
182 .AppendAction( ACTIONS::zoomFitScreen )
183 .AppendAction( ACTIONS::zoomFitObjects )
184 .AppendAction( ACTIONS::zoomTool );
185
186 config.AppendSeparator()
187 .AppendAction( SCH_ACTIONS::navigateBack )
188 .AppendAction( SCH_ACTIONS::navigateUp )
189 .AppendAction( SCH_ACTIONS::navigateForward );
190
191 config.AppendSeparator()
192 .AppendAction( SCH_ACTIONS::rotateCCW )
193 .AppendAction( SCH_ACTIONS::rotateCW )
194 .AppendAction( SCH_ACTIONS::mirrorV )
195 .AppendAction( SCH_ACTIONS::mirrorH )
196 .AppendAction( ACTIONS::group )
197 .AppendAction( ACTIONS::ungroup );
198
199 config.AppendSeparator()
200 .AppendAction( ACTIONS::showSymbolEditor )
201 .AppendAction( ACTIONS::showSymbolBrowser )
202 .AppendAction( ACTIONS::showFootprintEditor );
203
204 config.AppendSeparator()
205 .AppendAction( SCH_ACTIONS::annotate )
206 .AppendAction( SCH_ACTIONS::runERC )
207 .AppendAction( SCH_ACTIONS::showSimulator )
208 .AppendAction( SCH_ACTIONS::assignFootprints )
209 .AppendAction( SCH_ACTIONS::editSymbolFields )
210 .AppendAction( SCH_ACTIONS::generateBOM );
211
212 config.AppendSeparator()
213 .AppendAction( SCH_ACTIONS::showPcbNew );
214
216
217 // Insert all the IPC plugins here on the toolbar
218 // TODO (ISM): Move this to individual actions for each script
220
222
223 break;
224 }
225
226 // clang-format on
227 return config;
228}
229
230
232{
234
235 // Variant selection drop down control on main tool bar.
236 auto variantSelectionCtrlFactory =
237 [this]( ACTION_TOOLBAR* aToolbar )
238 {
239 std::optional<wxString> currentVariantName = Schematic().GetCurrentVariant();
240 wxString tmp = currentVariantName ? *currentVariantName : GetDefaultVariantName();
241
242 m_currentVariantCtrl = new wxChoice( aToolbar, ID_TOOLBAR_SCH_SELECT_VARAIANT, wxDefaultPosition,
243 wxDefaultSize, Schematic().GetVariantNamesForUI(), 0,
244 wxDefaultValidator, tmp );
245
246 m_currentVariantCtrl->SetToolTip( _( "Select the current variant to display and edit." ) );
247 aToolbar->Add( m_currentVariantCtrl );
248 UpdateVariantSelectionCtrl( Schematic().GetVariantNamesForUI() );
249 };
250
252
253 // IPC/Scripting plugin control
254 // TODO (ISM): Clean this up to make IPC actions just normal tool actions to get rid of this entire
255 // control
256 auto pluginControlFactory =
257 [this]( ACTION_TOOLBAR* aToolbar )
258 {
259
260 bool haveApiPlugins = Pgm().GetCommonSettings()->m_Api.enable_server
262
263 if( haveApiPlugins )
264 {
265 aToolbar->AddScaledSeparator( aToolbar->GetParent() );
266 AddApiPluginTools( aToolbar );
267 }
268 };
269
271}
272
273
275{
277
278 switch( aId )
279 {
281 }
282}
283
284
285void SCH_EDIT_FRAME::UpdateVariantSelectionCtrl( const wxArrayString& aVariantNames )
286{
288 return;
289
290 // Fall back to the default if nothing is currently selected.
291 wxString currentSelection = GetDefaultVariantName();
292 int selectionIndex = m_currentVariantCtrl->GetSelection();
293
294 if( selectionIndex != wxNOT_FOUND )
295 currentSelection = m_currentVariantCtrl->GetString( selectionIndex );
296
297 // Add all variant names, a separator, and "Add New Variant..." at the end
298 wxArrayString contents = aVariantNames;
299 contents.Add( wxS( "---" ) );
300 contents.Add( _( "Add New Design Variant..." ) );
301
302 m_currentVariantCtrl->Set( contents );
303
304 selectionIndex = m_currentVariantCtrl->FindString( currentSelection );
305
306 if( ( selectionIndex == wxNOT_FOUND ) && ( m_currentVariantCtrl->GetCount() != 0 ) )
307 selectionIndex = 0;
308
309 m_currentVariantCtrl->SetSelection( selectionIndex );
310}
311
312
313void SCH_EDIT_FRAME::onVariantSelected( wxCommandEvent& aEvent )
314{
315 if( aEvent.GetId() != ID_TOOLBAR_SCH_SELECT_VARAIANT )
316 return;
317
318 wxCHECK( m_currentVariantCtrl, /* void */ );
319
320 int selection = m_currentVariantCtrl->GetSelection();
321 int count = m_currentVariantCtrl->GetCount();
322
323 if( selection == wxNOT_FOUND || count == 0 )
324 return;
325
326 // "Add New Variant..." is always the last item, separator is second-to-last
327 if( selection == count - 1 )
328 {
329 // Restore previous selection before showing dialog
330 int previousSelection = m_currentVariantCtrl->FindString(
331 Schematic().GetCurrentVariant().IsEmpty() ? GetDefaultVariantName()
332 : Schematic().GetCurrentVariant() );
333
334 if( previousSelection != wxNOT_FOUND )
335 m_currentVariantCtrl->SetSelection( previousSelection );
336
338 return;
339 }
340
341 // Separator line - ignore selection
342 if( selection == count - 2 )
343 {
344 int previousSelection = m_currentVariantCtrl->FindString(
345 Schematic().GetCurrentVariant().IsEmpty() ? GetDefaultVariantName()
346 : Schematic().GetCurrentVariant() );
347
348 if( previousSelection != wxNOT_FOUND )
349 m_currentVariantCtrl->SetSelection( previousSelection );
350
351 return;
352 }
353
354 wxString selectedString = m_currentVariantCtrl->GetString( selection );
355 wxString selectedVariant;
356
357 if( selectedString != GetDefaultVariantName() )
358 selectedVariant = selectedString;
359
360 Schematic().SetCurrentVariant( selectedVariant );
362 HardRedraw();
363
364 // Refresh message panel for current selection
366
367 if( selTool )
368 {
369 SCH_SELECTION& sub_sel = selTool->GetSelection();
370
371 if( sub_sel.GetSize() == 1 )
372 SetMsgPanel( static_cast<EDA_ITEM*>( sub_sel.Front() ) );
373 }
374}
375
376
378{
379 if( !aParent )
380 aParent = this;
381
382 // Create a dialog with both name and description fields
383 wxDialog dlg( aParent, wxID_ANY, _( "New Design Variant" ), wxDefaultPosition, wxDefaultSize,
384 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER );
385
386 wxBoxSizer* mainSizer = new wxBoxSizer( wxVERTICAL );
387
388 // Name field
389 wxStaticText* nameLabel = new wxStaticText( &dlg, wxID_ANY, _( "Variant name:" ) );
390 mainSizer->Add( nameLabel, 0, wxLEFT | wxRIGHT | wxTOP | wxEXPAND, 10 );
391
392 mainSizer->AddSpacer( 3 );
393
394 wxTextCtrl* nameCtrl = new wxTextCtrl( &dlg, wxID_ANY );
395 mainSizer->Add( nameCtrl, 0, wxLEFT | wxRIGHT | wxBOTTOM | wxEXPAND, 10 );
396
397 // Description field
398 wxStaticText* descLabel = new wxStaticText( &dlg, wxID_ANY, _( "Description (optional):" ) );
399 mainSizer->Add( descLabel, 0, wxLEFT | wxRIGHT | wxTOP | wxEXPAND, 10 );
400
401 mainSizer->AddSpacer( 3 );
402
403 wxTextCtrl* descCtrl = new wxTextCtrl( &dlg, wxID_ANY, wxEmptyString, wxDefaultPosition,
404 wxSize( 300, 60 ), wxTE_MULTILINE );
405 mainSizer->Add( descCtrl, 1, wxLEFT | wxRIGHT | wxBOTTOM | wxEXPAND, 10 );
406
407 // Buttons
408 wxStdDialogButtonSizer* btnSizer = new wxStdDialogButtonSizer();
409 btnSizer->AddButton( new wxButton( &dlg, wxID_OK ) );
410 btnSizer->AddButton( new wxButton( &dlg, wxID_CANCEL ) );
411 btnSizer->Realize();
412 mainSizer->Add( btnSizer, 0, wxALL | wxALIGN_RIGHT, 5 );
413
414 dlg.SetSizer( mainSizer );
415 dlg.Fit();
416 dlg.Centre();
417 nameLabel->SetFocus();
418
419 if( dlg.ShowModal() == wxID_CANCEL )
420 return false;
421
422 wxString variantName = nameCtrl->GetValue().Trim().Trim( false );
423 wxString variantDesc = descCtrl->GetValue().Trim().Trim( false );
424
425 // Empty strings, reserved names, and duplicate variant names are not allowed.
426 if( variantName.IsEmpty() )
427 {
428 GetInfoBar()->ShowMessageFor( _( "Variant name cannot be empty." ), 10000, wxICON_ERROR );
429 return false;
430 }
431
432 // Check for reserved name (case-insensitive)
433 if( variantName.CmpNoCase( GetDefaultVariantName() ) == 0 )
434 {
435 GetInfoBar()->ShowMessageFor( wxString::Format( _( "'%s' is a reserved variant name." ),
437 10000, wxICON_ERROR );
438 return false;
439 }
440
441 // Check for duplicate variant names (case-insensitive)
442 for( const wxString& existingName : Schematic().GetVariantNames() )
443 {
444 if( existingName.CmpNoCase( variantName ) == 0 )
445 {
446 GetInfoBar()->ShowMessageFor( wxString::Format( _( "Variant '%s' already exists." ),
447 existingName ),
448 10000, wxICON_ERROR );
449 return false;
450 }
451 }
452
453 // Add variant to the schematic
454 Schematic().AddVariant( variantName );
455
456 if( !variantDesc.IsEmpty() )
457 Schematic().SetVariantDescription( variantName, variantDesc );
458
459 // Update the variant selector and select the new variant
460 UpdateVariantSelectionCtrl( Schematic().GetVariantNamesForUI() );
461 SetCurrentVariant( variantName );
462 OnModify();
463 return true;
464}
465
466
467void SCH_EDIT_FRAME::SetCurrentVariant( const wxString& aVariantName )
468{
470 return;
471
472 wxString name = aVariantName.IsEmpty() ? GetDefaultVariantName() : aVariantName;
473
474 int newSelection = m_currentVariantCtrl->FindString( name );
475
476 if( newSelection == wxNOT_FOUND )
477 return;
478
479 int currentSelection = m_currentVariantCtrl->GetSelection();
480
481 wxString selectedString;
482
483 if( currentSelection != wxNOT_FOUND )
484 selectedString = m_currentVariantCtrl->GetString( currentSelection );
485
486 if( selectedString != name )
487 {
488 m_currentVariantCtrl->SetSelection( newSelection );
489 Schematic().SetCurrentVariant( aVariantName );
490
492 HardRedraw();
493 }
494}
const char * name
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static TOOL_ACTION gridProperties
Definition actions.h:196
static TOOL_ACTION toggleGrid
Definition actions.h:194
static TOOL_ACTION paste
Definition actions.h:76
static TOOL_ACTION zoomRedraw
Definition actions.h:128
static TOOL_ACTION millimetersUnits
Definition actions.h:202
static TOOL_ACTION cursorSmallCrosshairs
Definition actions.h:148
static TOOL_ACTION zoomOutCenter
Definition actions.h:132
static TOOL_ACTION selectSetLasso
Definition actions.h:217
static TOOL_ACTION selectSetRect
Set lasso selection mode.
Definition actions.h:216
static TOOL_ACTION group
Definition actions.h:235
static TOOL_ACTION showSymbolEditor
Definition actions.h:256
static TOOL_ACTION showSymbolBrowser
Definition actions.h:255
static TOOL_ACTION findAndReplace
Definition actions.h:114
static TOOL_ACTION milsUnits
Definition actions.h:201
static TOOL_ACTION ungroup
Definition actions.h:236
static TOOL_ACTION toggleBoundingBoxes
Definition actions.h:153
static TOOL_ACTION plot
Definition actions.h:61
static TOOL_ACTION open
Definition actions.h:53
static TOOL_ACTION pageSettings
Definition actions.h:59
static TOOL_ACTION undo
Definition actions.h:71
static TOOL_ACTION inchesUnits
Definition actions.h:200
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 deleteTool
Definition actions.h:82
static TOOL_ACTION zoomTool
Definition actions.h:142
static TOOL_ACTION cursor45Crosshairs
Definition actions.h:150
static TOOL_ACTION showFootprintEditor
Definition actions.h:258
static TOOL_ACTION print
Definition actions.h:60
static TOOL_ACTION showProperties
Definition actions.h:262
static TOOL_ACTION doNew
Definition actions.h:50
static TOOL_ACTION zoomFitObjects
Definition actions.h:139
static TOOL_ACTION zoomInCenter
Definition actions.h:131
static TOOL_ACTION toggleGridOverrides
Definition actions.h:195
static TOOL_ACTION cursorFullCrosshairs
Definition actions.h:149
static TOOL_ACTION find
Definition actions.h:113
static ACTION_TOOLBAR_CONTROL overrideLocks
static ACTION_TOOLBAR_CONTROL ipcScripting
Class to hold basic information about controls that can be added to the toolbars.
Define the structure of a toolbar with buttons that invoke ACTIONs.
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
std::vector< const PLUGIN_ACTION * > GetActionsForScope(PLUGIN_ACTION_SCOPE aScope)
virtual void ClearToolbarControl(int aId)
void RegisterCustomToolbarControlFactory(const ACTION_TOOLBAR_CONTROL &aControlDesc, const ACTION_TOOLBAR_CONTROL_FACTORY &aControlFactory)
Register a creation factory for toolbar controls that are present in this frame.
virtual void configureToolbars()
WX_INFOBAR * GetInfoBar()
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
virtual void AddApiPluginTools(ACTION_TOOLBAR *aToolbar)
Append actions from API plugins to the given toolbar.
virtual void UpdateProperties()
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition pgm_base.cpp:546
virtual API_PLUGIN_MANAGER & GetPluginManager() const
Definition pgm_base.h:139
void SetCurrentVariant(const wxString &aVariantName)
void AddVariant(const wxString &aVariantName)
wxString GetCurrentVariant() const
Return the current variant being edited.
void SetVariantDescription(const wxString &aVariantName, const wxString &aDescription)
Set the description for a variant.
static TOOL_ACTION showPcbNew
static TOOL_ACTION rotateCCW
static TOOL_ACTION placeClassLabel
Definition sch_actions.h:84
static TOOL_ACTION placeSheetPin
Definition sch_actions.h:90
static TOOL_ACTION assignFootprints
static TOOL_ACTION mirrorV
static TOOL_ACTION placeGlobalLabel
Definition sch_actions.h:85
static TOOL_ACTION editSymbolFields
static TOOL_ACTION drawEllipseArc
static TOOL_ACTION drawTextBox
Definition sch_actions.h:98
static TOOL_ACTION toggleAnnotateAuto
static TOOL_ACTION syncAllSheetsPins
Definition sch_actions.h:96
static TOOL_ACTION drawArc
static TOOL_ACTION drawSheet
Definition sch_actions.h:87
static TOOL_ACTION navigateBack
static TOOL_ACTION schematicSetup
static TOOL_ACTION highlightNetTool
static TOOL_ACTION drawRectangle
static TOOL_ACTION drawLines
static TOOL_ACTION placeHierLabel
Definition sch_actions.h:86
static TOOL_ACTION drawEllipse
static TOOL_ACTION placeLabel
Definition sch_actions.h:83
static TOOL_ACTION drawCircle
static TOOL_ACTION placeBusWireEntry
Definition sch_actions.h:82
static TOOL_ACTION drawBezier
static TOOL_ACTION drawWire
Definition sch_actions.h:77
static TOOL_ACTION lineMode45
static TOOL_ACTION rotateCW
static TOOL_ACTION generateBOM
static TOOL_ACTION showHierarchy
static TOOL_ACTION placeJunction
Definition sch_actions.h:81
static TOOL_ACTION drawRuleArea
static TOOL_ACTION placeSymbol
Definition sch_actions.h:71
static TOOL_ACTION placeImage
static TOOL_ACTION navigateForward
static TOOL_ACTION drawPolygon
static TOOL_ACTION mirrorH
static TOOL_ACTION showSimulator
static TOOL_ACTION drawBus
Definition sch_actions.h:78
static TOOL_ACTION runERC
Inspection and Editing.
static TOOL_ACTION drawTable
Definition sch_actions.h:99
static TOOL_ACTION lineMode90
static TOOL_ACTION placeSchematicText
Definition sch_actions.h:97
static TOOL_ACTION lineModeFree
static TOOL_ACTION annotate
static TOOL_ACTION placeNoConnect
Definition sch_actions.h:80
static TOOL_ACTION toggleHiddenPins
static TOOL_ACTION placePower
Definition sch_actions.h:73
static TOOL_ACTION navigateUp
static ACTION_TOOLBAR_CONTROL currentVariant
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag and update other data struc...
wxChoice * m_currentVariantCtrl
void SetCurrentVariant(const wxString &aVariantName)
void UpdateVariantSelectionCtrl(const wxArrayString &aVariantNames)
Update the variant name control on the main toolbar.
void configureToolbars() override
void HardRedraw() override
Rebuild the GAL and redraw the screen.
PLUGIN_ACTION_SCOPE PluginActionScope() const override
SCHEMATIC & Schematic() const
bool ShowAddVariantDialog(wxWindow *aParent=nullptr)
Show a dialog to create a new variant with name and description.
void onVariantSelected(wxCommandEvent &aEvent)
void ClearToolbarControl(int aId) override
std::optional< TOOLBAR_CONFIGURATION > DefaultToolbarConfig(TOOLBAR_LOC aToolbar) override
Get the default tools to show on the specified canvas toolbar.
SCH_SELECTION & GetSelection()
virtual unsigned int GetSize() const override
Return the number of stored items.
Definition selection.h:104
EDA_ITEM * Front() const
Definition selection.h:176
TOOL_MANAGER * m_toolManager
Master controller class:
void ShowMessageFor(const wxString &aMessage, int aTime, int aFlags=wxICON_INFORMATION, MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
Show the infobar with the provided message and icon for a specific period of time.
#define _(s)
@ ID_TOOLBAR_SCH_SELECT_VARAIANT
@ FRAME_SCH
Definition frame_type.h:30
PGM_BASE & Pgm()
The global program "get" accessor.
see class PGM_BASE
wxString GetDefaultVariantName()
@ RIGHT
Toolbar on the right side of the canvas.
@ LEFT
Toolbar on the left side of the canvas.
@ TOP_AUX
Toolbar on the top of the canvas.
@ TOP_MAIN
Toolbar on the top of the canvas.