KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_edit_frame.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) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#include <algorithm>
26#include <api/api_handler_sch.h>
27#include <api/api_server.h>
28#include <base_units.h>
29#include <bitmaps.h>
30#include <symbol_library.h>
31#include <confirm.h>
32#include <connection_graph.h>
33#include <dialogs/dialog_erc.h>
38#include <eeschema_id.h>
39#include <executable_names.h>
42#include <gestfich.h>
44#include <invoke_sch_dialog.h>
45#include <string_utils.h>
46#include <kiface_base.h>
47#include <kiplatform/app.h>
48#include <kiway.h>
49#include <symbol_edit_frame.h>
50#include <symbol_viewer_frame.h>
51#include <pgm_base.h>
52#include <core/profile.h>
55#include <python_scripting.h>
56#include <sch_edit_frame.h>
58#include <sch_painter.h>
59#include <sch_marker.h>
60#include <sch_sheet_pin.h>
61#include <sch_commit.h>
62#include <sch_rule_area.h>
64#include <advanced_config.h>
65#include <sim/simulator_frame.h>
66#include <tool/action_manager.h>
67#include <tool/action_toolbar.h>
68#include <tool/common_control.h>
69#include <tool/common_tools.h>
70#include <tool/embed_tool.h>
71#include <tool/picker_tool.h>
73#include <tool/selection.h>
75#include <tool/tool_manager.h>
76#include <tool/zoom_tool.h>
77#include <tools/sch_actions.h>
83#include <tools/sch_edit_tool.h>
88#include <tools/sch_move_tool.h>
91#include <unordered_set>
92#include <view/view_controls.h>
93#include <widgets/wx_infobar.h>
98#include <wx/cmdline.h>
99#include <wx/app.h>
100#include <wx/filedlg.h>
101#include <wx/socket.h>
102#include <wx/debug.h>
104#include <widgets/wx_aui_utils.h>
107#include <toolbars_sch_editor.h>
108
109#ifdef KICAD_IPC_API
111#include <api/api_utils.h>
112#endif
113
114
115#define DIFF_SYMBOLS_DIALOG_NAME wxT( "DiffSymbolsDialog" )
116
117
118BEGIN_EVENT_TABLE( SCH_EDIT_FRAME, SCH_BASE_FRAME )
121
122 EVT_SIZE( SCH_EDIT_FRAME::OnSize )
123
126
128
129 EVT_MENU( wxID_EXIT, SCH_EDIT_FRAME::OnExit )
130 EVT_MENU( wxID_CLOSE, SCH_EDIT_FRAME::OnExit )
131
132 // Drop files event
133 EVT_DROP_FILES( SCH_EDIT_FRAME::OnDropFiles )
134END_EVENT_TABLE()
135
136
137wxDEFINE_EVENT( EDA_EVT_SCHEMATIC_CHANGING, wxCommandEvent );
138wxDEFINE_EVENT( EDA_EVT_SCHEMATIC_CHANGED, wxCommandEvent );
139
140
141SCH_EDIT_FRAME::SCH_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
142 SCH_BASE_FRAME( aKiway, aParent, FRAME_SCH, wxT( "Eeschema" ), wxDefaultPosition,
144 m_ercDialog( nullptr ),
145 m_diffSymbolDialog( nullptr ),
146 m_symbolFieldsTableDialog( nullptr ),
147 m_netNavigator( nullptr ),
148 m_highlightedConnChanged( false ),
149 m_designBlocksPane( nullptr )
150{
151 m_maximizeByDefault = true;
152 m_schematic = new SCHEMATIC( nullptr );
153
154 m_showBorderAndTitleBlock = true; // true to show sheet references
155 m_supportsAutoSave = true;
156 m_syncingPcbToSchSelection = false;
157 m_aboutTitle = _HKI( "KiCad Schematic Editor" );
158 m_show_search = false;
159
160 m_findReplaceDialog = nullptr;
161
162 m_findReplaceData = std::make_unique<SCH_SEARCH_DATA>();
163
164 // Give an icon
165 wxIcon icon;
166 wxIconBundle icon_bundle;
167
168 icon.CopyFromBitmap( KiBitmap( BITMAPS::icon_eeschema, 48 ) );
169 icon_bundle.AddIcon( icon );
170 icon.CopyFromBitmap( KiBitmap( BITMAPS::icon_eeschema, 128 ) );
171 icon_bundle.AddIcon( icon );
172 icon.CopyFromBitmap( KiBitmap( BITMAPS::icon_eeschema, 256 ) );
173 icon_bundle.AddIcon( icon );
174 icon.CopyFromBitmap( KiBitmap( BITMAPS::icon_eeschema_32 ) );
175 icon_bundle.AddIcon( icon );
176 icon.CopyFromBitmap( KiBitmap( BITMAPS::icon_eeschema_16 ) );
177 icon_bundle.AddIcon( icon );
178
179 SetIcons( icon_bundle );
180
181 LoadSettings( eeconfig() );
182
183 // NB: also links the schematic to the loaded project
184 CreateScreens();
185
186 SCH_SHEET_PATH root;
187 root.push_back( &Schematic().Root() );
188 SetCurrentSheet( root );
189
190 setupTools();
191 setupUIConditions();
192 ReCreateMenuBar();
193
194 m_toolbarSettings = Pgm().GetSettingsManager().GetToolbarSettings<SCH_EDIT_TOOLBAR_SETTINGS>( "eeschema-toolbars" );
195 configureToolbars();
196 RecreateToolbars();
197
198#ifdef KICAD_IPC_API
200 &SCH_EDIT_FRAME::onPluginAvailabilityChanged, this );
201#endif
202
203 m_hierarchy = new HIERARCHY_PANE( this );
204
205 // Initialize common print setup dialog settings.
206 m_pageSetupData.GetPrintData().SetPrintMode( wxPRINT_MODE_PRINTER );
207 m_pageSetupData.GetPrintData().SetQuality( wxPRINT_QUALITY_MEDIUM );
208 m_pageSetupData.GetPrintData().SetBin( wxPRINTBIN_AUTO );
209 m_pageSetupData.GetPrintData().SetNoCopies( 1 );
210
211 m_searchPane = new SCH_SEARCH_PANE( this );
212 m_propertiesPanel = new SCH_PROPERTIES_PANEL( this, this );
213
214 m_propertiesPanel->SetSplitterProportion( eeconfig()->m_AuiPanels.properties_splitter );
215
216 m_selectionFilterPanel = new PANEL_SCH_SELECTION_FILTER( this );
217 m_designBlocksPane = new SCH_DESIGN_BLOCK_PANE( this, nullptr, m_designBlockHistoryList );
218
219 m_auimgr.SetManagedWindow( this );
220
221 CreateInfoBar();
222
223 // Fetch a COPY of the config as a lot of these initializations are going to overwrite our
224 // data.
225 EESCHEMA_SETTINGS::AUI_PANELS aui_cfg = eeconfig()->m_AuiPanels;
226 EESCHEMA_SETTINGS::APPEARANCE appearance_cfg = eeconfig()->m_Appearance;
227
228 // Rows; layers 4 - 6
229 m_auimgr.AddPane( m_tbTopMain, EDA_PANE().HToolbar().Name( wxS( "TopMainToolbar" ) )
230 .Top().Layer( 6 ) );
231
232 m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( wxS( "MsgPanel" ) )
233 .Bottom().Layer( 6 ) );
234
235 // Columns; layers 1 - 3
236 m_auimgr.AddPane( m_hierarchy, EDA_PANE().Palette().Name( SchematicHierarchyPaneName() )
237 .Caption( _( "Schematic Hierarchy" ) )
238 .Left().Layer( 3 ).Position( 1 )
239 .TopDockable( false )
240 .BottomDockable( false )
241 .CloseButton( true )
242 .MinSize( FromDIP( wxSize( 120, 60 ) ) )
243 .BestSize( FromDIP( wxSize( 200, 200 ) ) )
244 .FloatingSize( FromDIP( wxSize( 200, 200 ) ) )
245 .FloatingPosition( FromDIP( wxPoint( 50, 50 ) ) )
246 .Show( false ) );
247
248 m_auimgr.AddPane( m_propertiesPanel, defaultPropertiesPaneInfo( this ) );
249 m_auimgr.AddPane( m_selectionFilterPanel, defaultSchSelectionFilterPaneInfo( this ) );
250
251 m_auimgr.AddPane( m_designBlocksPane, defaultDesignBlocksPaneInfo( this ) );
252
253 m_auimgr.AddPane( createHighlightedNetNavigator(), defaultNetNavigatorPaneInfo() );
254
255 m_auimgr.AddPane( m_tbLeft, EDA_PANE().VToolbar().Name( wxS( "LeftToolbar" ) )
256 .Left().Layer( 2 ) );
257
258 m_auimgr.AddPane( m_tbRight, EDA_PANE().VToolbar().Name( wxS( "RightToolbar" ) )
259 .Right().Layer( 2 ) );
260
261 // Center
262 m_auimgr.AddPane( GetCanvas(), EDA_PANE().Canvas().Name( wxS( "DrawFrame" ) )
263 .Center() );
264
265 m_auimgr.AddPane( m_searchPane, EDA_PANE()
266 .Name( SearchPaneName() )
267 .Bottom()
268 .Caption( _( "Search" ) )
269 .PaneBorder( false )
270 .MinSize( FromDIP( wxSize( 180, 60 ) ) )
271 .BestSize( FromDIP( wxSize( 180, 100 ) ) )
272 .FloatingSize( FromDIP( wxSize( 480, 200 ) ) )
273 .CloseButton( true )
274 .DestroyOnClose( false )
275 .Show( m_show_search ) );
276
277 FinishAUIInitialization();
278
279 wxAuiPaneInfo& hierarchy_pane = m_auimgr.GetPane( SchematicHierarchyPaneName() );
280 wxAuiPaneInfo& netNavigatorPane = m_auimgr.GetPane( NetNavigatorPaneName() );
281 wxAuiPaneInfo& propertiesPane = m_auimgr.GetPane( PropertiesPaneName() );
282 wxAuiPaneInfo& selectionFilterPane = m_auimgr.GetPane( wxS( "SelectionFilter" ) );
283 wxAuiPaneInfo& designBlocksPane = m_auimgr.GetPane( DesignBlocksPaneName() );
284
285 hierarchy_pane.Show( aui_cfg.show_schematic_hierarchy );
286 netNavigatorPane.Show( aui_cfg.show_net_nav_panel );
287 propertiesPane.Show( aui_cfg.show_properties );
288 designBlocksPane.Show( aui_cfg.design_blocks_show );
289 updateSelectionFilterVisbility();
290
291 // The selection filter doesn't need to grow in the vertical direction when docked
292 selectionFilterPane.dock_proportion = 0;
293
294 if( aui_cfg.hierarchy_panel_float_width > 0 && aui_cfg.hierarchy_panel_float_height > 0 )
295 {
296 // Show at end, after positioning
297 hierarchy_pane.FloatingSize( aui_cfg.hierarchy_panel_float_width,
299 }
300
301 if( aui_cfg.net_nav_panel_float_size.GetWidth() > 0
302 && aui_cfg.net_nav_panel_float_size.GetHeight() > 0 )
303 {
304 netNavigatorPane.FloatingSize( aui_cfg.net_nav_panel_float_size );
305 netNavigatorPane.FloatingPosition( aui_cfg.net_nav_panel_float_pos );
306 }
307
308 if( aui_cfg.properties_panel_width > 0 )
309 SetAuiPaneSize( m_auimgr, propertiesPane, aui_cfg.properties_panel_width, -1 );
310
311 if( aui_cfg.schematic_hierarchy_float )
312 hierarchy_pane.Float();
313
314 if( aui_cfg.search_panel_height > 0
315 && ( aui_cfg.search_panel_dock_direction == wxAUI_DOCK_TOP
316 || aui_cfg.search_panel_dock_direction == wxAUI_DOCK_BOTTOM ) )
317 {
318 wxAuiPaneInfo& searchPane = m_auimgr.GetPane( SearchPaneName() );
319 searchPane.Direction( aui_cfg.search_panel_dock_direction );
320 SetAuiPaneSize( m_auimgr, searchPane, -1, aui_cfg.search_panel_height );
321 }
322
323 else if( aui_cfg.search_panel_width > 0
324 && ( aui_cfg.search_panel_dock_direction == wxAUI_DOCK_LEFT
325 || aui_cfg.search_panel_dock_direction == wxAUI_DOCK_RIGHT ) )
326 {
327 wxAuiPaneInfo& searchPane = m_auimgr.GetPane( SearchPaneName() );
328 searchPane.Direction( aui_cfg.search_panel_dock_direction );
329 SetAuiPaneSize( m_auimgr, searchPane, aui_cfg.search_panel_width, -1 );
330 }
331
332 if( aui_cfg.float_net_nav_panel )
333 netNavigatorPane.Float();
334
335 if( aui_cfg.design_blocks_show )
336 SetAuiPaneSize( m_auimgr, designBlocksPane, aui_cfg.design_blocks_panel_docked_width, -1 );
337
338 if( aui_cfg.hierarchy_panel_docked_width > 0 )
339 {
340 // If the net navigator is not show, let the hierarchy navigator take all of the vertical
341 // space.
342 if( !aui_cfg.show_net_nav_panel )
343 {
344 SetAuiPaneSize( m_auimgr, hierarchy_pane, aui_cfg.hierarchy_panel_docked_width, -1 );
345 }
346 else
347 {
348 SetAuiPaneSize( m_auimgr, hierarchy_pane,
351
352 SetAuiPaneSize( m_auimgr, netNavigatorPane,
353 aui_cfg.net_nav_panel_docked_size.GetWidth(),
354 aui_cfg.net_nav_panel_docked_size.GetHeight() );
355 }
356
357 // wxAUI hack: force width by setting MinSize() and then Fixed()
358 // thanks to ZenJu https://github.com/wxWidgets/wxWidgets/issues/13180
359 hierarchy_pane.MinSize( aui_cfg.hierarchy_panel_docked_width, 60 );
360 hierarchy_pane.Fixed();
361 netNavigatorPane.MinSize( aui_cfg.net_nav_panel_docked_size.GetWidth(), 60 );
362 netNavigatorPane.Fixed();
363 m_auimgr.Update();
364
365 // now make it resizable again
366 hierarchy_pane.Resizable();
367 netNavigatorPane.Resizable();
368 m_auimgr.Update();
369
370 // Note: DO NOT call m_auimgr.Update() anywhere after this; it will nuke the size
371 // back to minimum.
372 hierarchy_pane.MinSize( FromDIP( wxSize( 120, 60 ) ) );
373 netNavigatorPane.MinSize( FromDIP( wxSize( 120, 60 ) ) );
374 }
375 else
376 {
377 m_auimgr.Update();
378 }
379
380 resolveCanvasType();
381 SwitchCanvas( m_canvasType );
382
383 GetCanvas()->GetGAL()->SetAxesEnabled( false );
384
385 KIGFX::SCH_VIEW* view = GetCanvas()->GetView();
386 static_cast<KIGFX::SCH_PAINTER*>( view->GetPainter() )->SetSchematic( m_schematic );
387
388 LoadProjectSettings();
389 LoadDrawingSheet();
390
391 view->SetLayerVisible( LAYER_ERC_ERR, appearance_cfg.show_erc_errors );
392 view->SetLayerVisible( LAYER_ERC_WARN, appearance_cfg.show_erc_warnings );
394 view->SetLayerVisible( LAYER_OP_VOLTAGES, appearance_cfg.show_op_voltages );
395 view->SetLayerVisible( LAYER_OP_CURRENTS, appearance_cfg.show_op_currents );
396
397 initScreenZoom();
398
399 m_hierarchy->Bind( wxEVT_SIZE, &SCH_EDIT_FRAME::OnResizeHierarchyNavigator, this );
400 m_netNavigator->Bind( wxEVT_TREE_SEL_CHANGING, &SCH_EDIT_FRAME::onNetNavigatorSelChanging,
401 this );
402 m_netNavigator->Bind( wxEVT_TREE_SEL_CHANGED, &SCH_EDIT_FRAME::onNetNavigatorSelection, this );
403 m_netNavigator->Bind( wxEVT_SIZE, &SCH_EDIT_FRAME::onResizeNetNavigator, this );
404
405 // This is used temporarily to fix a client size issue on GTK that causes zoom to fit
406 // to calculate the wrong zoom size. See SCH_EDIT_FRAME::onSize().
407 Bind( wxEVT_SIZE, &SCH_EDIT_FRAME::onSize, this );
408
409 setupUnits( eeconfig() );
410
411 // Net list generator
412 DefaultExecFlags();
413
414 updateTitle();
415 m_toolManager->GetTool<SCH_NAVIGATE_TOOL>()->ResetHistory();
416
417#ifdef KICAD_IPC_API
418 m_apiHandler = std::make_unique<API_HANDLER_SCH>( this );
419 Pgm().GetApiServer().RegisterHandler( m_apiHandler.get() );
420#endif
421
422 // Default shutdown reason until a file is loaded
423 KIPLATFORM::APP::SetShutdownBlockReason( this, _( "New schematic file is unsaved" ) );
424
425 // Init for dropping files
427 DragAcceptFiles( true );
428
429 // Ensure the window is on top
430 Raise();
431
432 // Now that all sizes are fixed, set the initial hierarchy_pane floating position to the
433 // top-left corner of the canvas
434 wxPoint canvas_pos = GetCanvas()->GetScreenPosition();
435 hierarchy_pane.FloatingPosition( canvas_pos.x + 10, canvas_pos.y + 10 );
436
437 Bind( EDA_EVT_CLOSE_DIALOG_BOOK_REPORTER, &SCH_EDIT_FRAME::onCloseSymbolDiffDialog, this );
438 Bind( EDA_EVT_CLOSE_ERC_DIALOG, &SCH_EDIT_FRAME::onCloseErcDialog, this );
439 Bind( EDA_EVT_CLOSE_DIALOG_SYMBOL_FIELDS_TABLE, &SCH_EDIT_FRAME::onCloseSymbolFieldsTableDialog, this );
440}
441
442
444{
445 m_hierarchy->Unbind( wxEVT_SIZE, &SCH_EDIT_FRAME::OnResizeHierarchyNavigator, this );
446
447 // Ensure m_canvasType is up to date, to save it in config
449
450 SetScreen( nullptr );
451
452 if( m_schematic )
454
455 // Delete all items not in draw list before deleting schematic
456 // to avoid dangling pointers stored in these items
459
460 delete m_schematic;
461 m_schematic = nullptr;
462
463 // Close the project if we are standalone, so it gets cleaned up properly
464 if( Kiface().IsSingle() )
465 {
466 try
467 {
468 GetSettingsManager()->UnloadProject( &Prj(), false );
469 }
470 catch( const nlohmann::detail::type_error& e )
471 {
472 wxFAIL_MSG( wxString::Format( wxT( "Settings exception occurred: %s" ), e.what() ) );
473 }
474 }
475
476 delete m_hierarchy;
478}
479
480
482{
483 aEvent.Skip();
484
485 // 1st Call: Handle the size update during the first resize event.
487
488 // Defer the second size capture
489 CallAfter( [this]() {
491 } );
492}
493
494
496{
497 // Called when resizing the Hierarchy Navigator panel
498 // Store the current pane size
499 // It allows to retrieve the last defined pane size when switching between
500 // docked and floating pane state
501 // Note: *DO NOT* call m_auimgr.Update() here: it crashes KiCad at least on Windows
502
503 EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() );
504 wxAuiPaneInfo& hierarchy_pane = m_auimgr.GetPane( SchematicHierarchyPaneName() );
505
506 if( cfg && m_hierarchy->IsShownOnScreen() )
507 {
508 cfg->m_AuiPanels.hierarchy_panel_float_width = hierarchy_pane.floating_size.x;
509 cfg->m_AuiPanels.hierarchy_panel_float_height = hierarchy_pane.floating_size.y;
510
511 // initialize hierarchy_panel_docked_width and best size only if the hierarchy_pane
512 // width is > 0 (i.e. if its size is already set and has meaning)
513 // if it is floating, its size is not initialized (only floating_size is initialized)
514 // initializing hierarchy_pane.best_size is useful when switching to float pane and
515 // after switching to the docked pane, to retrieve the last docked pane width
516 if( hierarchy_pane.rect.width > 50 ) // 50 is a good margin
517 {
518 cfg->m_AuiPanels.hierarchy_panel_docked_width = hierarchy_pane.rect.width;
519 hierarchy_pane.best_size.x = hierarchy_pane.rect.width;
520 }
521 }
522}
523
524
526{
527 // Create the manager and dispatcher & route draw panel events to the dispatcher
530 GetCanvas()->GetViewControls(), config(), this );
531 m_actions = new SCH_ACTIONS();
533
534 // Register tools
554
555 // Run the selection tool, it is supposed to be always active
557
559}
560
561
563{
565
567 SCH_EDITOR_CONDITIONS cond( this );
568
569 wxASSERT( mgr );
570
571 auto hasElements =
572 [ this ] ( const SELECTION& aSel )
573 {
574 return GetScreen() &&
575 ( !GetScreen()->Items().empty() || !SELECTION_CONDITIONS::Idle( aSel ) );
576 };
577
578 auto searchPaneCond =
579 [this] ( const SELECTION& )
580 {
581 return m_auimgr.GetPane( SearchPaneName() ).IsShown();
582 };
583
584 auto propertiesCond =
585 [this] ( const SELECTION& )
586 {
587 return m_auimgr.GetPane( PropertiesPaneName() ).IsShown();
588 };
589
590 auto hierarchyNavigatorCond =
591 [ this ] ( const SELECTION& aSel )
592 {
593 return m_auimgr.GetPane( SchematicHierarchyPaneName() ).IsShown();
594 };
595
596 auto netNavigatorCond =
597 [ this ] (const SELECTION& aSel )
598 {
599 return m_auimgr.GetPane( NetNavigatorPaneName() ).IsShown();
600 };
601
602 auto designBlockCond =
603 [ this ] (const SELECTION& aSel )
604 {
605 return m_auimgr.GetPane( DesignBlocksPaneName() ).IsShown();
606 };
607
608 auto undoCond =
609 [ this ] (const SELECTION& aSel )
610 {
612 return true;
613
614 return GetUndoCommandCount() > 0;
615 };
616
617#define ENABLE( x ) ACTION_CONDITIONS().Enable( x )
618#define CHECK( x ) ACTION_CONDITIONS().Check( x )
619
621 mgr->SetConditions( ACTIONS::undo, ENABLE( undoCond ) );
623
624 mgr->SetConditions( SCH_ACTIONS::showSearch, CHECK( searchPaneCond ) );
625 mgr->SetConditions( SCH_ACTIONS::showHierarchy, CHECK( hierarchyNavigatorCond ) );
626 mgr->SetConditions( SCH_ACTIONS::showNetNavigator, CHECK( netNavigatorCond ) );
627 mgr->SetConditions( ACTIONS::showProperties, CHECK( propertiesCond ) );
628 mgr->SetConditions( SCH_ACTIONS::showDesignBlockPanel, CHECK( designBlockCond ) );
632 mgr->SetConditions( ACTIONS::millimetersUnits, CHECK( cond.Units( EDA_UNITS::MM ) ) );
633 mgr->SetConditions( ACTIONS::inchesUnits, CHECK( cond.Units( EDA_UNITS::INCH ) ) );
634 mgr->SetConditions( ACTIONS::milsUnits, CHECK( cond.Units( EDA_UNITS::MILS ) ) );
635
636 mgr->SetConditions( SCH_ACTIONS::lineModeFree, CHECK( cond.LineMode( LINE_MODE::LINE_MODE_FREE ) ) );
637 mgr->SetConditions( SCH_ACTIONS::lineMode90, CHECK( cond.LineMode( LINE_MODE::LINE_MODE_90 ) ) );
638 mgr->SetConditions( SCH_ACTIONS::lineMode45, CHECK( cond.LineMode( LINE_MODE::LINE_MODE_45 ) ) );
639
640 mgr->SetConditions( ACTIONS::cut, ENABLE( hasElements ) );
641 mgr->SetConditions( ACTIONS::copy, ENABLE( hasElements ) );
642 mgr->SetConditions( ACTIONS::copyAsText, ENABLE( hasElements ) );
645 mgr->SetConditions( ACTIONS::doDelete, ENABLE( hasElements ) );
646 mgr->SetConditions( ACTIONS::duplicate, ENABLE( hasElements ) );
647 mgr->SetConditions( ACTIONS::selectAll, ENABLE( hasElements ) );
648 mgr->SetConditions( ACTIONS::unselectAll, ENABLE( hasElements ) );
649
650 mgr->SetConditions( SCH_ACTIONS::rotateCW, ENABLE( hasElements ) );
651 mgr->SetConditions( SCH_ACTIONS::rotateCCW, ENABLE( hasElements ) );
652 mgr->SetConditions( SCH_ACTIONS::mirrorH, ENABLE( hasElements ) );
653 mgr->SetConditions( SCH_ACTIONS::mirrorV, ENABLE( hasElements ) );
654
657
658 auto showHiddenPinsCond =
659 [this]( const SELECTION& )
660 {
661 return GetShowAllPins();
662 };
663
664 auto showHiddenFieldsCond =
665 [this]( const SELECTION& )
666 {
668 return cfg && cfg->m_Appearance.show_hidden_fields;
669 };
670
671 auto showDirectiveLabelsCond =
672 [this]( const SELECTION& )
673 {
675 return cfg && cfg->m_Appearance.show_directive_labels;
676 };
677
678 auto showERCErrorsCond =
679 [this]( const SELECTION& )
680 {
682 return cfg && cfg->m_Appearance.show_erc_errors;
683 };
684
685 auto showERCWarningsCond =
686 [this]( const SELECTION& )
687 {
689 return cfg && cfg->m_Appearance.show_erc_warnings;
690 };
691
692 auto showERCExclusionsCond =
693 [this]( const SELECTION& )
694 {
696 return cfg && cfg->m_Appearance.show_erc_exclusions;
697 };
698
699 auto markSimExclusionsCond =
700 [this]( const SELECTION& )
701 {
703 return cfg && cfg->m_Appearance.mark_sim_exclusions;
704 };
705
706 auto showOPVoltagesCond =
707 [this]( const SELECTION& )
708 {
710 return cfg && cfg->m_Appearance.show_op_voltages;
711 };
712
713 auto showOPCurrentsCond =
714 [this]( const SELECTION& )
715 {
717 return cfg && cfg->m_Appearance.show_op_currents;
718 };
719
720 auto showPinAltModeIconsCond =
721 [this]( const SELECTION& )
722 {
724 return cfg && cfg->m_Appearance.show_pin_alt_icons;
725 };
726
727 auto showAnnotateAutomaticallyCond =
728 [this]( const SELECTION& )
729 {
731 return cfg && cfg->m_AnnotatePanel.automatic;
732 };
733
734 auto remapSymbolsCondition =
735 [&]( const SELECTION& aSel )
736 {
737 SCH_SCREENS schematic( Schematic().Root() );
738
739 // The remapping can only be performed on legacy projects.
740 return schematic.HasNoFullyDefinedLibIds();
741 };
742
743 auto belowRootSheetCondition =
744 [this]( const SELECTION& aSel )
745 {
747 return navigateTool && navigateTool->CanGoUp();
748 };
749
750 mgr->SetConditions( SCH_ACTIONS::leaveSheet, ENABLE( belowRootSheetCondition ) );
751
752 /* Some of these are bound by default to arrow keys which will get a different action if we
753 * disable the buttons. So always leave them enabled so the action is consistent.
754 * https://gitlab.com/kicad/code/kicad/-/issues/14783
755 mgr->SetConditions( SCH_ACTIONS::navigateUp, ENABLE( belowRootSheetCondition ) );
756 mgr->SetConditions( SCH_ACTIONS::navigateForward, ENABLE( navHistoryHasForward ) );
757 mgr->SetConditions( SCH_ACTIONS::navigateBack, ENABLE( navHistoryHsBackward ) );
758 */
759
760 mgr->SetConditions( SCH_ACTIONS::remapSymbols, ENABLE( remapSymbolsCondition ) );
761 mgr->SetConditions( SCH_ACTIONS::toggleHiddenPins, CHECK( showHiddenPinsCond ) );
762 mgr->SetConditions( SCH_ACTIONS::toggleHiddenFields, CHECK( showHiddenFieldsCond ) );
763 mgr->SetConditions( SCH_ACTIONS::toggleDirectiveLabels, CHECK( showDirectiveLabelsCond ) );
764 mgr->SetConditions( SCH_ACTIONS::toggleERCErrors, CHECK( showERCErrorsCond ) );
765 mgr->SetConditions( SCH_ACTIONS::toggleERCWarnings, CHECK( showERCWarningsCond ) );
766 mgr->SetConditions( SCH_ACTIONS::toggleERCExclusions, CHECK( showERCExclusionsCond ) );
767 mgr->SetConditions( SCH_ACTIONS::markSimExclusions, CHECK( markSimExclusionsCond ) );
768 mgr->SetConditions( SCH_ACTIONS::toggleOPVoltages, CHECK( showOPVoltagesCond ) );
769 mgr->SetConditions( SCH_ACTIONS::toggleOPCurrents, CHECK( showOPCurrentsCond ) );
770 mgr->SetConditions( SCH_ACTIONS::togglePinAltIcons, CHECK( showPinAltModeIconsCond ) );
771 mgr->SetConditions( SCH_ACTIONS::toggleAnnotateAuto, CHECK( showAnnotateAutomaticallyCond ) );
773
776
777#define CURRENT_TOOL( action ) mgr->SetConditions( action, CHECK( cond.CurrentTool( action ) ) )
778
808
809#undef CURRENT_TOOL
810#undef CHECK
811#undef ENABLE
812}
813
814
816{
817 // we cannot store a pointer to an item in the display list here since
818 // that item may be deleted, such as part of a line concatenation or other.
819 // So simply always keep a copy of the object which is to be repeated.
820
821 if( aItem )
822 {
823 m_items_to_repeat.clear();
824
825 AddCopyForRepeatItem( aItem );
826 }
827}
828
829
831{
832 // we cannot store a pointer to an item in the display list here since
833 // that item may be deleted, such as part of a line concatenation or other.
834 // So simply always keep a copy of the object which is to be repeated.
835
836 if( aItem )
837 {
838 std::unique_ptr<SCH_ITEM> repeatItem( static_cast<SCH_ITEM*>( aItem->Duplicate() ) );
839
840 // Clone() preserves the flags & parent, we want 'em cleared.
841 repeatItem->ClearFlags();
842 repeatItem->SetParent( nullptr );
843
844 m_items_to_repeat.emplace_back( std::move( repeatItem ) );
845 }
846}
847
848
850{
851 return Schematic().GetItem( aId );
852}
853
854
856{
858}
859
860
862{
863 return GetCurrentSheet().LastScreen();
864}
865
866
868{
869 return *m_schematic;
870}
871
872
874{
875 return GetCurrentSheet().Last()->GetName();
876}
877
878
880{
882}
883
884
886{
889
890 SCH_SHEET* rootSheet = new SCH_SHEET( m_schematic );
891 m_schematic->SetRoot( rootSheet );
892
893 SCH_SCREEN* rootScreen = new SCH_SCREEN( m_schematic );
894 const_cast<KIID&>( rootSheet->m_Uuid ) = rootScreen->GetUuid();
895 m_schematic->Root().SetScreen( rootScreen );
896 SetScreen( Schematic().RootScreen() );
897
898
899 m_schematic->RootScreen()->SetFileName( wxEmptyString );
900
901 // Don't leave root page number empty
902 SCH_SHEET_PATH rootSheetPath;
903
904 rootSheetPath.push_back( rootSheet );
905 m_schematic->RootScreen()->SetPageNumber( wxT( "1" ) );
906 rootSheetPath.SetPageNumber( wxT( "1" ) );
907
908 // Rehash sheetpaths in hierarchy since we changed the uuid.
910
911 if( GetScreen() == nullptr )
912 {
913 SCH_SCREEN* screen = new SCH_SCREEN( m_schematic );
914 SetScreen( screen );
915 }
916}
917
918
920{
921 return m_schematic->CurrentSheet();
922}
923
924
926{
927 if( aSheet != GetCurrentSheet() )
928 {
929 ClearFocus();
930
931 Schematic().SetCurrentSheet( aSheet );
932 GetCanvas()->DisplaySheet( aSheet.LastScreen() );
933 }
934}
935
936
938{
940
941 for( SCH_ITEM* item : screen->Items() )
942 item->ClearCaches();
943
944 for( const std::pair<const wxString, LIB_SYMBOL*>& libSymbol : screen->GetLibSymbols() )
945 {
946 wxCHECK2( libSymbol.second, continue );
947 libSymbol.second->ClearCaches();
948 }
949
950 if( Schematic().Settings().m_IntersheetRefsShow )
952
953 ClearFocus();
954
955 GetCanvas()->DisplaySheet( GetCurrentSheet().LastScreen() );
956
958 selectionTool->Reset( TOOL_BASE::REDRAW );
959
961}
962
963
964bool SCH_EDIT_FRAME::canCloseWindow( wxCloseEvent& aEvent )
965{
966 // Exit interactive editing
967 // Note this this will commit *some* pending changes. For instance, the SCH_POINT_EDITOR
968 // will cancel any drag currently in progress, but commit all changes from previous drags.
969 if( m_toolManager )
971
972 // Shutdown blocks must be determined and vetoed as early as possible
973 if( KIPLATFORM::APP::SupportsShutdownBlockReason() && aEvent.GetId() == wxEVT_QUERY_END_SESSION
974 && IsContentModified() )
975 {
976 return false;
977 }
978
979 if( Kiface().IsSingle() )
980 {
981 auto* symbolEditor = (SYMBOL_EDIT_FRAME*) Kiway().Player( FRAME_SCH_SYMBOL_EDITOR, false );
982
983 if( symbolEditor && !symbolEditor->Close() ) // Can close symbol editor?
984 return false;
985
986 auto* symbolViewer = (SYMBOL_VIEWER_FRAME*) Kiway().Player( FRAME_SCH_VIEWER, false );
987
988 if( symbolViewer && !symbolViewer->Close() ) // Can close symbol viewer?
989 return false;
990
991 // SYMBOL_CHOOSER_FRAME is always modal so this shouldn't come up, but better safe than
992 // sorry.
993 auto* chooser = (SYMBOL_CHOOSER_FRAME*) Kiway().Player( FRAME_SYMBOL_CHOOSER, false );
994
995 if( chooser && !chooser->Close() ) // Can close symbol chooser?
996 return false;
997 }
998 else
999 {
1000 auto* symbolEditor = (SYMBOL_EDIT_FRAME*) Kiway().Player( FRAME_SCH_SYMBOL_EDITOR, false );
1001
1002 if( symbolEditor && symbolEditor->IsSymbolFromSchematic() )
1003 {
1004 if( !symbolEditor->CanCloseSymbolFromSchematic( true ) )
1005 return false;
1006 }
1007 }
1008
1009 if( !Kiway().PlayerClose( FRAME_SIMULATOR, false ) ) // Can close the simulator?
1010 return false;
1011
1013 && !m_symbolFieldsTableDialog->Close( false ) ) // Can close the symbol fields table?
1014 {
1015 return false;
1016 }
1017
1018 // We may have gotten multiple events; don't clean up twice
1019 if( !Schematic().IsValid() )
1020 return false;
1021
1022 if( IsContentModified() )
1023 {
1024 wxFileName fileName = Schematic().RootScreen()->GetFileName();
1025 wxString msg = _( "Save changes to '%s' before closing?" );
1026
1027 if( !HandleUnsavedChanges( this, wxString::Format( msg, fileName.GetFullName() ),
1028 [&]() -> bool
1029 {
1030 return SaveProject();
1031 } ) )
1032 {
1033 return false;
1034 }
1035 }
1036
1037 return true;
1038}
1039
1040
1042{
1043 SCH_SHEET_LIST sheetlist = Schematic().Hierarchy();
1044
1045#ifdef KICAD_IPC_API
1046 Pgm().GetApiServer().DeregisterHandler( m_apiHandler.get() );
1047 wxTheApp->Unbind( EDA_EVT_PLUGIN_AVAILABILITY_CHANGED,
1048 &SCH_EDIT_FRAME::onPluginAvailabilityChanged, this );
1049#endif
1050
1051 // Shutdown all running tools
1052 if( m_toolManager )
1054
1055 // Close modeless dialogs. They're trouble when they get destroyed after the frame.
1056 Unbind( EDA_EVT_CLOSE_DIALOG_BOOK_REPORTER, &SCH_EDIT_FRAME::onCloseSymbolDiffDialog, this );
1057 Unbind( EDA_EVT_CLOSE_ERC_DIALOG, &SCH_EDIT_FRAME::onCloseErcDialog, this );
1058 Unbind( EDA_EVT_CLOSE_DIALOG_SYMBOL_FIELDS_TABLE,
1060 m_netNavigator->Unbind( wxEVT_TREE_SEL_CHANGING, &SCH_EDIT_FRAME::onNetNavigatorSelChanging,
1061 this );
1062 m_netNavigator->Unbind( wxEVT_TREE_SEL_CHANGED, &SCH_EDIT_FRAME::onNetNavigatorSelection,
1063 this );
1064
1065 // Close the find dialog and preserve its setting if it is displayed.
1067 {
1070
1071 m_findReplaceDialog->Destroy();
1072 m_findReplaceDialog = nullptr;
1073 }
1074
1075 if( m_diffSymbolDialog )
1076 {
1077 m_diffSymbolDialog->Destroy();
1078 m_diffSymbolDialog = nullptr;
1079 }
1080
1081 if( m_ercDialog )
1082 {
1083 m_ercDialog->Destroy();
1084 m_ercDialog = nullptr;
1085 }
1086
1088 {
1089 m_symbolFieldsTableDialog->Destroy();
1090 m_symbolFieldsTableDialog = nullptr;
1091 }
1092
1093 // Make sure local settings are persisted
1094 if( Prj().GetLocalSettings().ShouldAutoSave() )
1096
1097 // Shutdown all running tools
1098 if( m_toolManager )
1099 {
1101
1102 // prevent the canvas from trying to dispatch events during close
1103 GetCanvas()->SetEventDispatcher( nullptr );
1104 delete m_toolManager;
1105 m_toolManager = nullptr;
1106 }
1107
1108 wxAuiPaneInfo& hierarchy_pane = m_auimgr.GetPane( SchematicHierarchyPaneName() );
1109
1110 if( hierarchy_pane.IsShown() && hierarchy_pane.IsFloating() )
1111 {
1112 hierarchy_pane.Show( false );
1113 m_auimgr.Update();
1114 }
1115
1116 SCH_SCREENS screens( Schematic().Root() );
1117 wxFileName fn;
1118
1119 for( SCH_SCREEN* screen = screens.GetFirst(); screen != nullptr; screen = screens.GetNext() )
1120 {
1121 fn = Prj().AbsolutePath( screen->GetFileName() );
1122
1123 // Auto save file name is the normal file name prepended with FILEEXT::AutoSaveFilePrefix.
1124 fn.SetName( FILEEXT::AutoSaveFilePrefix + fn.GetName() );
1125
1126 if( fn.IsFileWritable() )
1127 wxRemoveFile( fn.GetFullPath() );
1128 }
1129
1130 wxFileName tmpFn = Prj().GetProjectFullName();
1131 wxFileName autoSaveFileName( tmpFn.GetPath(), getAutoSaveFileName() );
1132
1133 if( autoSaveFileName.IsFileWritable() )
1134 wxRemoveFile( autoSaveFileName.GetFullPath() );
1135
1136 sheetlist.ClearModifyStatus();
1137
1138 wxString fileName = Prj().AbsolutePath( Schematic().RootScreen()->GetFileName() );
1139
1140 if( !Schematic().GetFileName().IsEmpty() && !Schematic().RootScreen()->IsEmpty() )
1141 UpdateFileHistory( fileName );
1142
1143 Schematic().RootScreen()->Clear( true );
1144
1145 // all sub sheets are deleted, only the main sheet is usable
1147
1148 // Clear view before destroying schematic as repaints depend on schematic being valid
1149 SetScreen( nullptr );
1150
1151 Schematic().Reset();
1152
1153 // Prevents any rogue events from continuing (i.e. search panel tries to redraw)
1154 Show( false );
1155
1156 Destroy();
1157}
1158
1159
1161{
1163}
1164
1165
1167{
1168 return Schematic().ErcSettings().GetSeverity( aErrorCode );
1169}
1170
1171
1173{
1175
1176 if( GetScreen() )
1178
1179 if( m_isClosing )
1180 return;
1181
1182 if( GetCanvas() )
1183 GetCanvas()->Refresh();
1184
1185 if( !GetTitle().StartsWith( wxS( "*" ) ) )
1186 updateTitle();
1187}
1188
1189
1191{
1192 if( Kiface().IsSingle() )
1193 {
1194 DisplayError( this, _( "Cannot update the PCB, because the Schematic Editor is opened"
1195 " in stand-alone mode. In order to create/update PCBs from"
1196 " schematics, launch the KiCad shell and create a project." ) );
1197 return;
1198 }
1199
1200 KIWAY_PLAYER* frame = Kiway().Player( FRAME_PCB_EDITOR, false );
1201 wxEventBlocker blocker( this );
1202
1203 if( !frame )
1204 {
1205 wxFileName fn = Prj().GetProjectFullName();
1206 fn.SetExt( FILEEXT::PcbFileExtension );
1207
1208 frame = Kiway().Player( FRAME_PCB_EDITOR, true );
1209
1210 // If Kiway() cannot create the Pcbnew frame, it shows a error message, and
1211 // frame is null
1212 if( !frame )
1213 return;
1214
1215 frame->OpenProjectFiles( std::vector<wxString>( 1, fn.GetFullPath() ) );
1216 }
1217
1218 if( !frame->IsVisible() )
1219 frame->Show( true );
1220
1221 // On Windows, Raise() does not bring the window on screen, when iconized
1222 if( frame->IsIconized() )
1223 frame->Iconize( false );
1224
1225 frame->Raise();
1226
1227 std::string payload;
1229}
1230
1231
1232void SCH_EDIT_FRAME::UpdateHierarchyNavigator( bool aRefreshNetNavigator, bool aClear )
1233{
1234 m_toolManager->GetTool<SCH_NAVIGATE_TOOL>()->CleanHistory();
1236
1237 if( aRefreshNetNavigator )
1239}
1240
1241
1243{
1244 // Update only the hierarchy navigation tree labels.
1245 // The tree list is expected to be up to date
1247}
1248
1249
1251{
1253}
1254
1255
1257{
1258 wxString findString;
1259
1260 SCH_SELECTION& selection = m_toolManager->GetTool<SCH_SELECTION_TOOL>()->GetSelection();
1261
1262 if( selection.Size() == 1 )
1263 {
1264 EDA_ITEM* front = selection.Front();
1265
1266 switch( front->Type() )
1267 {
1268 case SCH_SYMBOL_T:
1269 {
1270 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( front );
1271 findString = UnescapeString( symbol->GetField( FIELD_T::VALUE )->GetText() );
1272 break;
1273 }
1274
1275 case SCH_FIELD_T:
1276 findString = UnescapeString( static_cast<SCH_FIELD*>( front )->GetText() );
1277 break;
1278
1279 case SCH_LABEL_T:
1280 case SCH_GLOBAL_LABEL_T:
1281 case SCH_HIER_LABEL_T:
1282 case SCH_SHEET_PIN_T:
1283 findString = UnescapeString( static_cast<SCH_LABEL_BASE*>( front )->GetText() );
1284 break;
1285
1286 case SCH_TEXT_T:
1287 findString = UnescapeString( static_cast<SCH_TEXT*>( front )->GetText() );
1288
1289 if( findString.Contains( wxT( "\n" ) ) )
1290 findString = findString.Before( '\n' );
1291
1292 break;
1293
1294 default:
1295 break;
1296 }
1297 }
1298
1300 m_findReplaceDialog->Destroy();
1301
1303 this, static_cast<SCH_SEARCH_DATA*>( m_findReplaceData.get() ), wxDefaultPosition,
1304 wxDefaultSize, aReplace ? wxFR_REPLACEDIALOG : 0 );
1305
1308 m_findReplaceDialog->Show( true );
1309}
1310
1311
1312void SCH_EDIT_FRAME::ShowFindReplaceStatus( const wxString& aMsg, int aStatusTime )
1313{
1314 // Prepare the infobar, since we don't know its state
1317
1318 m_infoBar->ShowMessageFor( aMsg, aStatusTime, wxICON_INFORMATION );
1319}
1320
1321
1323{
1324 m_infoBar->Dismiss();
1325}
1326
1327
1329{
1332
1333 m_findReplaceDialog->Destroy();
1334 m_findReplaceDialog = nullptr;
1335
1337}
1338
1339
1340void SCH_EDIT_FRAME::OnLoadFile( wxCommandEvent& event )
1341{
1342 wxString fn = GetFileFromHistory( event.GetId(), _( "Schematic" ) );
1343
1344 if( fn.size() )
1345 OpenProjectFiles( std::vector<wxString>( 1, fn ) );
1346}
1347
1348
1349void SCH_EDIT_FRAME::OnClearFileHistory( wxCommandEvent& aEvent )
1350{
1352}
1353
1354
1356{
1357 // Only standalone mode can directly load a new document
1358 if( !Kiface().IsSingle() )
1359 return;
1360
1361 wxString pro_dir = m_mruPath;
1362
1363 wxFileDialog dlg( this, _( "New Schematic" ), pro_dir, wxEmptyString,
1365
1366 if( dlg.ShowModal() != wxID_CANCEL )
1367 {
1368 // Enforce the extension, wxFileDialog is inept.
1369 wxFileName create_me =
1371
1372 if( create_me.FileExists() )
1373 {
1374 wxString msg;
1375 msg.Printf( _( "Schematic file '%s' already exists." ), create_me.GetFullName() );
1376 DisplayError( this, msg );
1377 return ;
1378 }
1379
1380 // OpenProjectFiles() requires absolute
1381 wxASSERT_MSG( create_me.IsAbsolute(), wxS( "wxFileDialog returned non-absolute path" ) );
1382
1383 OpenProjectFiles( std::vector<wxString>( 1, create_me.GetFullPath() ), KICTL_CREATE );
1384 m_mruPath = create_me.GetPath();
1385 }
1386}
1387
1388
1390{
1391 // Only standalone mode can directly load a new document
1392 if( !Kiface().IsSingle() )
1393 return;
1394
1395 wxString pro_dir = m_mruPath;
1396 wxString wildcards = FILEEXT::AllSchematicFilesWildcard()
1398 + wxS( "|" ) + FILEEXT::LegacySchematicFileWildcard();
1399
1400 wxFileDialog dlg( this, _( "Open Schematic" ), pro_dir, wxEmptyString,
1401 wildcards, wxFD_OPEN | wxFD_FILE_MUST_EXIST );
1402
1403 if( dlg.ShowModal() != wxID_CANCEL )
1404 {
1405 OpenProjectFiles( std::vector<wxString>( 1, dlg.GetPath() ) );
1407 }
1408}
1409
1410
1412{
1413 wxFileName kicad_board = Prj().AbsolutePath( Schematic().GetFileName() );
1414
1415 if( kicad_board.IsOk() && !Schematic().GetFileName().IsEmpty() )
1416 {
1417 kicad_board.SetExt( FILEEXT::PcbFileExtension );
1418 wxFileName legacy_board( kicad_board );
1419 legacy_board.SetExt( FILEEXT::LegacyPcbFileExtension );
1420 wxFileName& boardfn = legacy_board;
1421
1422 if( !legacy_board.FileExists() || kicad_board.FileExists() )
1423 boardfn = kicad_board;
1424
1425 if( Kiface().IsSingle() )
1426 {
1427 ExecuteFile( PCBNEW_EXE, boardfn.GetFullPath() );
1428 }
1429 else
1430 {
1431 wxEventBlocker blocker(this);
1432 KIWAY_PLAYER* frame = Kiway().Player( FRAME_PCB_EDITOR, false );
1433
1434 if( !frame )
1435 {
1436 frame = Kiway().Player( FRAME_PCB_EDITOR, true );
1437
1438 // frame can be null if Cvpcb cannot be run. No need to show a warning
1439 // Kiway() generates the error messages
1440 if( !frame )
1441 return;
1442
1443 frame->OpenProjectFiles( std::vector<wxString>( 1, boardfn.GetFullPath() ) );
1444 }
1445
1446 if( !frame->IsVisible() )
1447 frame->Show( true );
1448
1449 // On Windows, Raise() does not bring the window on screen, when iconized
1450 if( frame->IsIconized() )
1451 frame->Iconize( false );
1452
1453 frame->Raise();
1454 }
1455 }
1456 else
1457 {
1458 // If we are running inside a project, it should be impossible for this case to happen
1459 wxASSERT( Kiface().IsSingle() );
1461 }
1462}
1463
1464
1466{
1467 wxFileName fn = Prj().AbsolutePath( Schematic().GetFileName() );
1468 fn.SetExt( FILEEXT::NetlistFileExtension );
1469
1470 if( !ReadyToNetlist( _( "Assigning footprints requires a fully annotated schematic." ) ) )
1471 return;
1472
1473 try
1474 {
1475 KIWAY_PLAYER* player = Kiway().Player( FRAME_CVPCB, false ); // test open already.
1476
1477 if( !player )
1478 {
1479 player = Kiway().Player( FRAME_CVPCB, true );
1480
1481 // player can be null if Cvpcb cannot be run. No need to show a warning
1482 // Kiway() generates the error messages
1483 if( !player )
1484 return;
1485
1486 player->Show( true );
1487 }
1488
1489 // Ensure the netlist (mainly info about symbols) is up to date
1492
1493 player->Raise();
1494 }
1495 catch( const IO_ERROR& )
1496 {
1497 DisplayError( this, _( "Could not open CvPcb" ) );
1498 }
1499}
1500
1501
1502void SCH_EDIT_FRAME::OnExit( wxCommandEvent& event )
1503{
1504 if( event.GetId() == wxID_EXIT )
1505 Kiway().OnKiCadExit();
1506
1507 if( event.GetId() == wxID_CLOSE || Kiface().IsSingle() )
1508 Close( false );
1509}
1510
1511
1513{
1515 SIM_LIB_MGR simLibMgr( &Prj(), &Schematic() );
1516 NULL_REPORTER devnull;
1517
1518 // Patch for bug early in V7.99 dev
1519 if( settings.m_OPO_VRange.EndsWith( 'A' ) )
1520 settings.m_OPO_VRange[ settings.m_OPO_VRange.Length() - 1 ] = 'V';
1521
1522 // Update items which may have ${OP} text variables
1523 //
1525 [&]( KIGFX::VIEW_ITEM* aItem ) -> int
1526 {
1527 int flags = 0;
1528
1529 auto invalidateTextVars =
1530 [&flags]( EDA_TEXT* text )
1531 {
1532 if( text->HasTextVars() )
1533 {
1534 text->ClearRenderCache();
1535 text->ClearBoundingBoxCache();
1537 }
1538 };
1539
1540 if( SCH_ITEM* item = dynamic_cast<SCH_ITEM*>( aItem ) )
1541 {
1542 item->RunOnChildren(
1543 [&invalidateTextVars]( SCH_ITEM* aChild )
1544 {
1545 if( EDA_TEXT* text = dynamic_cast<EDA_TEXT*>( aChild ) )
1546 invalidateTextVars( text );
1547 },
1548 RECURSE_MODE::NO_RECURSE );
1549 }
1550
1551 if( EDA_TEXT* text = dynamic_cast<EDA_TEXT*>( aItem ) )
1552 invalidateTextVars( text );
1553
1554 return flags;
1555 } );
1556
1557 // Update OP overlay items
1558 //
1559 for( SCH_ITEM* item : GetScreen()->Items() )
1560 {
1562 continue;
1563
1564 if( item->Type() == SCH_LINE_T )
1565 {
1566 SCH_LINE* line = static_cast<SCH_LINE*>( item );
1567
1568 if( !line->GetOperatingPoint().IsEmpty() )
1569 GetCanvas()->GetView()->Update( line );
1570
1571 line->SetOperatingPoint( wxEmptyString );
1572
1573 // update value from netlist, below
1574 }
1575 else if( item->Type() == SCH_SYMBOL_T )
1576 {
1577 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1578 wxString ref = symbol->GetRef( &GetCurrentSheet() );
1579 std::vector<SCH_PIN*> pins = symbol->GetPins( &GetCurrentSheet() );
1580
1581 // Power symbols and other symbols which have the reference starting with "#" are
1582 // not included in simulation
1583 if( ref.StartsWith( '#' ) || symbol->GetExcludedFromSim() )
1584 continue;
1585
1586 for( SCH_PIN* pin : pins )
1587 {
1588 if( !pin->GetOperatingPoint().IsEmpty() )
1589 GetCanvas()->GetView()->Update( pin );
1590
1591 pin->SetOperatingPoint( wxEmptyString );
1592 }
1593
1594 if( pins.size() == 2 )
1595 {
1596 wxString op = m_schematic->GetOperatingPoint( ref, settings.m_OPO_IPrecision,
1597 settings.m_OPO_IRange );
1598
1599 if( !op.IsEmpty() && op != wxS( "--" ) && op != wxS( "?" ) )
1600 {
1601 pins[0]->SetOperatingPoint( op );
1602 GetCanvas()->GetView()->Update( symbol );
1603 }
1604 }
1605 else
1606 {
1607 SIM_MODEL& model = simLibMgr.CreateModel( &GetCurrentSheet(), *symbol,
1608 devnull ).model;
1609
1610 SPICE_ITEM spiceItem;
1611 spiceItem.refName = ref;
1612 ref = model.SpiceGenerator().ItemName( spiceItem );
1613
1614 for( const auto& modelPin : model.GetPins() )
1615 {
1616 SCH_PIN* symbolPin = symbol->GetPin( modelPin.get().symbolPinNumber );
1617 wxString signalName = ref + wxS( ":" ) + modelPin.get().modelPinName;
1618 wxString op = m_schematic->GetOperatingPoint( signalName,
1619 settings.m_OPO_IPrecision,
1620 settings.m_OPO_IRange );
1621
1622 if( symbolPin && !op.IsEmpty() && op != wxS( "--" ) && op != wxS( "?" ) )
1623 {
1624 symbolPin->SetOperatingPoint( op );
1625 GetCanvas()->GetView()->Update( symbol );
1626 }
1627 }
1628 }
1629 }
1630 }
1631
1632 for( const auto& [ key, subgraphList ] : m_schematic->m_connectionGraph->GetNetMap() )
1633 {
1634 wxString op = m_schematic->GetOperatingPoint( key.Name, settings.m_OPO_VPrecision,
1635 settings.m_OPO_VRange );
1636
1637 if( !op.IsEmpty() && op != wxS( "--" ) && op != wxS( "?" ) )
1638 {
1639 for( CONNECTION_SUBGRAPH* subgraph : subgraphList )
1640 {
1641 SCH_LINE* longestWire = nullptr;
1642 double length = 0.0;
1643
1644 if( subgraph->GetSheet().GetExcludedFromSim() )
1645 continue;
1646
1647 for( SCH_ITEM* item : subgraph->GetItems() )
1648 {
1649 if( item->Type() == SCH_LINE_T )
1650 {
1651 SCH_LINE* line = static_cast<SCH_LINE*>( item );
1652
1653 if( line->IsWire() && line->GetLength() > length )
1654 {
1655 longestWire = line;
1656 length = line->GetLength();
1657 }
1658 }
1659 }
1660
1661 if( longestWire )
1662 {
1663 longestWire->SetOperatingPoint( op );
1664 GetCanvas()->GetView()->Update( longestWire );
1665 }
1666 }
1667 }
1668 }
1669}
1670
1671
1673{
1674 if( aItem->Type() == SCH_GLOBAL_LABEL_T || aItem->Type() == SCH_HIER_LABEL_T )
1675 {
1676 SCH_LABEL_BASE* label = static_cast<SCH_LABEL_BASE*>( aItem );
1677
1678 if( label->AutoRotateOnPlacement() )
1679 {
1680 SPIN_STYLE spin = aScreen->GetLabelOrientationForPoint( label->GetPosition(),
1681 label->GetSpinStyle(),
1682 &GetCurrentSheet() );
1683
1684 if( spin != label->GetSpinStyle() )
1685 {
1686 label->SetSpinStyle( spin );
1687
1688 for( SCH_ITEM* item : aScreen->Items().OfType( SCH_GLOBAL_LABEL_T ) )
1689 {
1690 SCH_LABEL_BASE* otherLabel = static_cast<SCH_LABEL_BASE*>( item );
1691
1692 if( otherLabel != label && otherLabel->GetText() == label->GetText() )
1693 otherLabel->AutoplaceFields( aScreen, AUTOPLACE_AUTO );
1694 }
1695 }
1696 }
1697 }
1698}
1699
1700
1702{
1703 SCH_SCREEN* screen = GetScreen();
1704
1705 wxCHECK( screen, /* void */ );
1706
1707 wxString title;
1708
1709 if( !screen->GetFileName().IsEmpty() )
1710 {
1711 wxFileName fn( Prj().AbsolutePath( screen->GetFileName() ) );
1712 bool readOnly = false;
1713 bool unsaved = false;
1714
1715 if( fn.IsOk() && screen->FileExists() )
1716 readOnly = screen->IsReadOnly();
1717 else
1718 unsaved = true;
1719
1720 if( IsContentModified() )
1721 title = wxT( "*" );
1722
1723 title += fn.GetName();
1724
1725 wxString sheetPath = GetCurrentSheet().PathHumanReadable( false, true );
1726
1727 if( sheetPath != title )
1728 title += wxString::Format( wxT( " [%s]" ), sheetPath );
1729
1730 if( readOnly )
1731 title += wxS( " " ) + _( "[Read Only]" );
1732
1733 if( unsaved )
1734 title += wxS( " " ) + _( "[Unsaved]" );
1735 }
1736 else
1737 {
1738 title = _( "[no schematic loaded]" );
1739 }
1740
1741 title += wxT( " \u2014 " ) + _( "Schematic Editor" );
1742
1743 SetTitle( title );
1744}
1745
1746
1748{
1750 GetScreen()->m_zoomInitialized = true;
1751}
1752
1753
1755{
1756 wxString highlightedConn = GetHighlightedConnection();
1757 bool hasHighlightedConn = !highlightedConn.IsEmpty();
1758 SCHEMATIC_SETTINGS& settings = Schematic().Settings();
1760 SCH_COMMIT localCommit( m_toolManager );
1761
1762 if( !aCommit )
1763 aCommit = &localCommit;
1764
1765 PROF_TIMER timer;
1766
1767 // Ensure schematic graph is accurate
1768 if( aCleanupFlags == LOCAL_CLEANUP )
1769 {
1770 SchematicCleanUp( aCommit, GetScreen() );
1771 }
1772 else if( aCleanupFlags == GLOBAL_CLEANUP )
1773 {
1774 for( const SCH_SHEET_PATH& sheet : list )
1775 SchematicCleanUp( aCommit, sheet.LastScreen() );
1776 }
1777
1778 timer.Stop();
1779 wxLogTrace( "CONN_PROFILE", "SchematicCleanUp() %0.4f ms", timer.msecs() );
1780
1781 if( settings.m_IntersheetRefsShow )
1783
1784 std::function<void( SCH_ITEM* )> changeHandler =
1785 [&]( SCH_ITEM* aChangedItem ) -> void
1786 {
1787 GetCanvas()->GetView()->Update( aChangedItem, KIGFX::REPAINT );
1788
1789 SCH_CONNECTION* connection = aChangedItem->Connection();
1790
1792 return;
1793
1794 if( !hasHighlightedConn )
1795 {
1796 // No highlighted connection, but connectivity has changed, so refresh
1797 // the list of all nets
1799 }
1800 else if( connection
1801 && ( connection->Name() == highlightedConn
1802 || connection->HasDriverChanged() ) )
1803 {
1805 }
1806 };
1807
1808 if( !ADVANCED_CFG::GetCfg().m_IncrementalConnectivity || aCleanupFlags == GLOBAL_CLEANUP
1809 || m_undoList.m_CommandsList.empty()|| Schematic().ConnectionGraph()->IsMinor() )
1810 {
1811 // Clear all resolved netclass caches in case labels have changed
1812 Prj().GetProjectFile().NetSettings()->ClearAllCaches();
1813
1814 // Update all rule areas so we can cascade implied connectivity changes
1815 std::unordered_set<SCH_SCREEN*> all_screens;
1816
1817 for( const SCH_SHEET_PATH& path : list )
1818 all_screens.insert( path.LastScreen() );
1819
1820 SCH_RULE_AREA::UpdateRuleAreasInScreens( all_screens, GetCanvas()->GetView() );
1821
1822 // Recalculate all connectivity
1823 Schematic().ConnectionGraph()->Recalculate( list, true, &changeHandler );
1824 }
1825 else
1826 {
1827 struct CHANGED_ITEM
1828 {
1829 SCH_ITEM* item;
1830 SCH_ITEM* linked_item;
1831 SCH_SCREEN* screen;
1832 };
1833
1834 PICKED_ITEMS_LIST* changed_list = m_undoList.m_CommandsList.back();
1835
1836 // Final change sets
1837 std::set<SCH_ITEM*> changed_items;
1838 std::set<VECTOR2I> pts;
1839 std::set<std::pair<SCH_SHEET_PATH, SCH_ITEM*>> item_paths;
1840
1841 // Working change sets
1842 std::unordered_set<SCH_SCREEN*> changed_screens;
1843 std::set<std::pair<SCH_RULE_AREA*, SCH_SCREEN*>> changed_rule_areas;
1844 std::vector<CHANGED_ITEM> changed_connectable_items;
1845
1846 // Lambda to add an item to the connectivity update sets
1847 auto addItemToChangeSet = [&changed_items, &pts, &item_paths]( CHANGED_ITEM itemData )
1848 {
1849 std::vector<SCH_SHEET_PATH>& paths = itemData.screen->GetClientSheetPaths();
1850
1851 std::vector<VECTOR2I> tmp_pts = itemData.item->GetConnectionPoints();
1852 pts.insert( tmp_pts.begin(), tmp_pts.end() );
1853 changed_items.insert( itemData.item );
1854
1855 for( SCH_SHEET_PATH& path : paths )
1856 item_paths.insert( std::make_pair( path, itemData.item ) );
1857
1858 if( !itemData.linked_item || !itemData.linked_item->IsConnectable() )
1859 return;
1860
1861 tmp_pts = itemData.linked_item->GetConnectionPoints();
1862 pts.insert( tmp_pts.begin(), tmp_pts.end() );
1863 changed_items.insert( itemData.linked_item );
1864
1865 // We have to directly add the pins here because the link may not exist on the schematic
1866 // anymore and so won't be picked up by GetScreen()->Items().Overlapping() below.
1867 if( SCH_SYMBOL* symbol = dynamic_cast<SCH_SYMBOL*>( itemData.linked_item ) )
1868 {
1869 std::vector<SCH_PIN*> pins = symbol->GetPins();
1870 changed_items.insert( pins.begin(), pins.end() );
1871 }
1872
1873 for( SCH_SHEET_PATH& path : paths )
1874 item_paths.insert( std::make_pair( path, itemData.linked_item ) );
1875 };
1876
1877 // Get all changed connectable items and determine all changed screens
1878 for( unsigned ii = 0; ii < changed_list->GetCount(); ++ii )
1879 {
1880 switch( changed_list->GetPickedItemStatus( ii ) )
1881 {
1882 // Only care about changed, new, and deleted items, the other
1883 // cases are not connectivity-related
1884 case UNDO_REDO::CHANGED:
1885 case UNDO_REDO::NEWITEM:
1886 case UNDO_REDO::DELETED:
1887 break;
1888
1889 default:
1890 continue;
1891 }
1892
1893 SCH_ITEM* item = dynamic_cast<SCH_ITEM*>( changed_list->GetPickedItem( ii ) );
1894
1895 if( item )
1896 {
1897 SCH_SCREEN* screen =
1898 static_cast<SCH_SCREEN*>( changed_list->GetScreenForItem( ii ) );
1899 changed_screens.insert( screen );
1900
1901 if( item->Type() == SCH_RULE_AREA_T )
1902 {
1903 SCH_RULE_AREA* ruleArea = static_cast<SCH_RULE_AREA*>( item );
1904
1905 // Clear item and directive associations for this rule area
1906 ruleArea->ResetDirectivesAndItems( GetCanvas()->GetView() );
1907
1908 changed_rule_areas.insert( { ruleArea, screen } );
1909 }
1910 else if( item->IsConnectable() )
1911 {
1912 SCH_ITEM* linked_item =
1913 dynamic_cast<SCH_ITEM*>( changed_list->GetPickedItemLink( ii ) );
1914 changed_connectable_items.push_back( { item, linked_item, screen } );
1915 }
1916 }
1917 }
1918
1919 // Update rule areas in changed screens to propagate any directive connectivity changes
1920 std::vector<std::pair<SCH_RULE_AREA*, SCH_SCREEN*>> forceUpdateRuleAreas =
1921 SCH_RULE_AREA::UpdateRuleAreasInScreens( changed_screens, GetCanvas()->GetView() );
1922
1923 std::for_each( forceUpdateRuleAreas.begin(), forceUpdateRuleAreas.end(),
1924 [&]( std::pair<SCH_RULE_AREA*, SCH_SCREEN*>& updatedRuleArea )
1925 {
1926 changed_rule_areas.insert( updatedRuleArea );
1927 } );
1928
1929 // If a SCH_RULE_AREA was changed, we need to add all past and present contained items to
1930 // update their connectivity
1931 for( const std::pair<SCH_RULE_AREA*, SCH_SCREEN*>& changedRuleArea : changed_rule_areas )
1932 {
1933 for( SCH_ITEM* containedItem :
1934 changedRuleArea.first->GetPastAndPresentContainedItems() )
1935 {
1936 addItemToChangeSet( { containedItem, nullptr, changedRuleArea.second } );
1937 }
1938 }
1939
1940 // Add all changed items, and associated items, to the change set
1941 for( CHANGED_ITEM& changed_item_data : changed_connectable_items )
1942 {
1943 addItemToChangeSet( changed_item_data );
1944
1945 // If a SCH_DIRECTIVE_LABEL was changed which is attached to a SCH_RULE_AREA, we need
1946 // to add the contained items to the change set to force update of their connectivity
1947 if( changed_item_data.item->Type() == SCH_DIRECTIVE_LABEL_T )
1948 {
1949 const std::vector<VECTOR2I> labelConnectionPoints =
1950 changed_item_data.item->GetConnectionPoints();
1951
1952 EE_RTREE::EE_TYPE candidateRuleAreas =
1953 changed_item_data.screen->Items().Overlapping(
1954 SCH_RULE_AREA_T, changed_item_data.item->GetBoundingBox() );
1955
1956 for( SCH_ITEM* candidateRuleArea : candidateRuleAreas )
1957 {
1958 SCH_RULE_AREA* ruleArea = static_cast<SCH_RULE_AREA*>( candidateRuleArea );
1959 std::vector<SHAPE*> borderShapes = ruleArea->MakeEffectiveShapes( true );
1960
1961 if( ruleArea->GetPolyShape().CollideEdge( labelConnectionPoints[0], nullptr,
1962 5 ) )
1963 {
1964 for( SCH_ITEM* containedItem : ruleArea->GetPastAndPresentContainedItems() )
1965 addItemToChangeSet(
1966 { containedItem, nullptr, changed_item_data.screen } );
1967 }
1968 }
1969 }
1970 }
1971
1972 for( const VECTOR2I& pt: pts )
1973 {
1974 for( SCH_ITEM* item : GetScreen()->Items().Overlapping( pt ) )
1975 {
1976 // Leave this check in place. Overlapping items are not necessarily connectable.
1977 if( !item->IsConnectable() )
1978 continue;
1979
1980 if( item->Type() == SCH_LINE_T )
1981 {
1982 if( item->HitTest( pt ) )
1983 changed_items.insert( item );
1984 }
1985 else if( item->Type() == SCH_SYMBOL_T && item->IsConnected( pt ) )
1986 {
1987 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1988 std::vector<SCH_PIN*> pins = symbol->GetPins();
1989
1990 changed_items.insert( pins.begin(), pins.end() );
1991 }
1992 else if( item->Type() == SCH_SHEET_T )
1993 {
1994 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1995
1996 wxCHECK2( sheet, continue );
1997
1998 std::vector<SCH_SHEET_PIN*> sheetPins = sheet->GetPins();
1999 changed_items.insert( sheetPins.begin(), sheetPins.end() );
2000 }
2001 else
2002 {
2003 if( item->IsConnected( pt ) )
2004 changed_items.insert( item );
2005 }
2006 }
2007 }
2008
2009 std::set<std::pair<SCH_SHEET_PATH, SCH_ITEM*>> all_items =
2010 Schematic().ConnectionGraph()->ExtractAffectedItems( changed_items );
2011
2012 all_items.insert( item_paths.begin(), item_paths.end() );
2013
2014 CONNECTION_GRAPH new_graph( &Schematic() );
2015
2016 new_graph.SetLastCodes( Schematic().ConnectionGraph() );
2017
2018 std::shared_ptr<NET_SETTINGS> netSettings = Prj().GetProjectFile().NetSettings();
2019
2020 std::set<wxString> affectedNets;
2021
2022 for( auto&[ path, item ] : all_items )
2023 {
2024 wxCHECK2( item, continue );
2025 item->SetConnectivityDirty();
2026 SCH_CONNECTION* conn = item->Connection();
2027
2028 if( conn )
2029 {
2030 affectedNets.insert( conn->Name() );
2031 }
2032 }
2033
2034 // Reset resolved netclass cache for this connection
2035 for( const wxString& netName : affectedNets )
2036 netSettings->ClearCacheForNet( netName );
2037
2038 new_graph.Recalculate( list, false, &changeHandler );
2039 Schematic().ConnectionGraph()->Merge( new_graph );
2040 }
2041
2043 [&]( KIGFX::VIEW_ITEM* aItem ) -> int
2044 {
2045 int flags = 0;
2046 SCH_ITEM* item = dynamic_cast<SCH_ITEM*>( aItem );
2047 SCH_CONNECTION* connection = item ? item->Connection() : nullptr;
2048
2049 auto invalidateTextVars =
2050 [&flags]( EDA_TEXT* text )
2051 {
2052 if( text->HasTextVars() )
2053 {
2054 text->ClearRenderCache();
2055 text->ClearBoundingBoxCache();
2057 }
2058 };
2059
2060 if( connection && connection->HasDriverChanged() )
2061 {
2062 connection->ClearDriverChanged();
2063 flags |= KIGFX::REPAINT;
2064 }
2065
2066 if( item )
2067 {
2068 item->RunOnChildren(
2069 [&invalidateTextVars]( SCH_ITEM* aChild )
2070 {
2071 if( EDA_TEXT* text = dynamic_cast<EDA_TEXT*>( aChild ) )
2072 invalidateTextVars( text );
2073 },
2074 RECURSE_MODE::NO_RECURSE );
2075
2076 if( flags & KIGFX::GEOMETRY )
2077 GetScreen()->Update( item, false ); // Refresh RTree
2078 }
2079
2080 if( EDA_TEXT* text = dynamic_cast<EDA_TEXT*>( aItem ) )
2081 invalidateTextVars( text );
2082
2083 return flags;
2084 } );
2085
2087 || !Schematic().ConnectionGraph()->FindFirstSubgraphByName( highlightedConn ) )
2088 {
2092 }
2093
2094 if( !localCommit.Empty() )
2095 localCommit.Push( _( "Schematic Cleanup" ) );
2096}
2097
2098
2100{
2102 {
2103 for( SCH_FIELD& field : label->GetFields() )
2104 field.ClearBoundingBoxCache();
2105
2106 label->ClearBoundingBoxCache();
2107 GetCanvas()->GetView()->Update( label );
2108 } );
2109}
2110
2111
2113{
2115
2117}
2118
2119
2120std::unique_ptr<GRID_HELPER> SCH_EDIT_FRAME::MakeGridHelper()
2121{
2122 return std::make_unique<EE_GRID_HELPER>( m_toolManager );
2123}
2124
2125
2127{
2129
2130 SCHEMATIC_SETTINGS& settings = Schematic().Settings();
2131
2133
2135
2137 EESCHEMA_SETTINGS* cfg = mgr.GetAppSettings<EESCHEMA_SETTINGS>( "eeschema" );
2140
2141 KIGFX::VIEW* view = GetCanvas()->GetView();
2147
2149
2150 settings.m_TemplateFieldNames.DeleteAllFieldNameTemplates( true /* global */ );
2151
2152 if( !cfg->m_Drawing.field_names.IsEmpty() )
2154
2156
2157 for( SCH_ITEM* item : screen->Items() )
2158 item->ClearCaches();
2159
2160 for( const auto& [ libItemName, libSymbol ] : screen->GetLibSymbols() )
2161 libSymbol->ClearCaches();
2162
2164
2166 Layout();
2167 SendSizeEvent();
2168}
2169
2170
2172{
2173 // Store the current zoom level into the current screen before calling
2174 // DisplayCurrentSheet() that set the zoom to GetScreen()->m_LastZoomLevel
2176
2177 // Rebuild the sheet view (draw area and any other items):
2179}
2180
2181
2183{
2184 // call my base class
2186
2187 // tooltips in toolbars
2189
2190 // For some obscure reason, the AUI manager hides the first modified pane.
2191 // So force show panes
2192 wxAuiPaneInfo& design_blocks_pane_info = m_auimgr.GetPane( m_designBlocksPane );
2193 bool panel_shown = design_blocks_pane_info.IsShown();
2194 design_blocks_pane_info.Caption( _( "Design Blocks" ) );
2195 design_blocks_pane_info.Show( panel_shown );
2196
2197 m_auimgr.GetPane( m_hierarchy ).Caption( _( "Schematic Hierarchy" ) );
2198 m_auimgr.GetPane( m_selectionFilterPanel ).Caption( _( "Selection Filter" ) );
2199 m_auimgr.GetPane( m_propertiesPanel ).Caption( _( "Properties" ) );
2200 m_auimgr.GetPane( m_designBlocksPane ).Caption( _( "Design Blocks" ) );
2201 m_auimgr.Update();
2203
2204 // status bar
2206
2207 updateTitle();
2208
2209 // This ugly hack is to fix an option(left) toolbar update bug that seems to only affect
2210 // windows. See https://bugs.launchpad.net/kicad/+bug/1816492. For some reason, calling
2211 // wxWindow::Refresh() does not resolve the issue. Only a resize event seems to force the
2212 // toolbar to update correctly.
2213#if defined( __WXMSW__ )
2214 PostSizeEvent();
2215#endif
2216}
2217
2218
2220{
2221 if( !GetHighlightedConnection().IsEmpty() )
2222 {
2223 SetStatusText( wxString::Format( _( "Highlighted net: %s" ),
2225 }
2226 else
2227 {
2228 SetStatusText( wxT( "" ) );
2229 }
2230}
2231
2232
2234{
2235 if( m_toolManager )
2237
2238 SCH_BASE_FRAME::SetScreen( aScreen );
2239 GetCanvas()->DisplaySheet( static_cast<SCH_SCREEN*>( aScreen ) );
2240
2241 if( m_toolManager )
2243}
2244
2245
2246const BOX2I SCH_EDIT_FRAME::GetDocumentExtents( bool aIncludeAllVisible ) const
2247{
2248 BOX2I bBoxDoc;
2249
2250 if( aIncludeAllVisible )
2251 {
2252 // Get the whole page size and return that
2255 bBoxDoc = BOX2I( VECTOR2I( 0, 0 ), VECTOR2I( sizeX, sizeY ) );
2256 }
2257 else
2258 {
2259 // Get current drawing-sheet in a form we can compare to an EDA_ITEM
2261 EDA_ITEM* dsAsItem = static_cast<EDA_ITEM*>( ds );
2262
2263 // Calc the bounding box of all items on screen except the page border
2264 for( EDA_ITEM* item : GetScreen()->Items() )
2265 {
2266 if( item != dsAsItem ) // Ignore the drawing-sheet itself
2267 bBoxDoc.Merge( item->GetBoundingBox() );
2268 }
2269 }
2270
2271 return bBoxDoc;
2272}
2273
2274
2276{
2277 return Schematic().Hierarchy().IsModified();
2278}
2279
2280
2282{
2283 EESCHEMA_SETTINGS* cfg = eeconfig();
2284 return cfg && cfg->m_Appearance.show_hidden_pins;
2285}
2286
2287
2289{
2290 // nullptr will clear the current focus
2291 if( aItem != nullptr && !aItem->IsSCH_ITEM() )
2292 return;
2293
2294 static KIID lastBrightenedItemID( niluuid );
2295
2297 SCH_ITEM* lastItem = Schematic().GetItem( lastBrightenedItemID, &dummy );
2298
2299 if( lastItem && lastItem != aItem )
2300 {
2301 lastItem->ClearBrightened();
2302
2303 UpdateItem( lastItem );
2304 lastBrightenedItemID = niluuid;
2305 }
2306
2307 if( aItem )
2308 {
2309 if( !aItem->IsBrightened() )
2310 {
2311 aItem->SetBrightened();
2312
2313 UpdateItem( aItem );
2314 lastBrightenedItemID = aItem->m_Uuid;
2315 }
2316
2318 }
2319}
2320
2321
2323{
2324 return Schematic().GetFileName();
2325}
2326
2327
2329{
2330 return m_toolManager->GetTool<SCH_SELECTION_TOOL>()->GetSelection();
2331}
2332
2333
2334void SCH_EDIT_FRAME::onSize( wxSizeEvent& aEvent )
2335{
2336 if( IsShown() )
2337 {
2338 // We only need this until the frame is done resizing and the final client size is
2339 // established.
2340 Unbind( wxEVT_SIZE, &SCH_EDIT_FRAME::onSize, this );
2342 }
2343
2344 // Skip() is called in the base class.
2345 EDA_DRAW_FRAME::OnSize( aEvent );
2346}
2347
2348
2350 const KIID& aSchematicSymbolUUID )
2351{
2352 SCH_SHEET_PATH principalPath;
2353 SCH_SHEET_LIST sheets = Schematic().Hierarchy();
2354 SCH_ITEM* item = sheets.GetItem( aSchematicSymbolUUID, &principalPath );
2355 SCH_SYMBOL* principalSymbol = dynamic_cast<SCH_SYMBOL*>( item );
2356 SCH_COMMIT commit( m_toolManager );
2357
2358 if( !principalSymbol )
2359 return;
2360
2361 wxString principalRef;
2362
2363 if( principalSymbol->IsAnnotated( &principalPath ) )
2364 principalRef = principalSymbol->GetRef( &principalPath, false );
2365
2366 std::vector< std::pair<SCH_SYMBOL*, SCH_SHEET_PATH> > allUnits;
2367
2368 for( const SCH_SHEET_PATH& path : sheets )
2369 {
2370 for( SCH_ITEM* candidate : path.LastScreen()->Items().OfType( SCH_SYMBOL_T ) )
2371 {
2372 SCH_SYMBOL* candidateSymbol = static_cast<SCH_SYMBOL*>( candidate );
2373
2374 if( candidateSymbol == principalSymbol
2375 || ( candidateSymbol->IsAnnotated( &path )
2376 && candidateSymbol->GetRef( &path, false ) == principalRef ) )
2377 {
2378 allUnits.emplace_back( candidateSymbol, path );
2379 }
2380 }
2381 }
2382
2383 for( auto& [ unit, path ] : allUnits )
2384 {
2385 // This needs to be done before the LIB_SYMBOL is changed to prevent stale
2386 // library symbols in the schematic file.
2387 path.LastScreen()->Remove( unit );
2388
2389 if( !unit->IsNew() )
2390 commit.Modify( unit, path.LastScreen() );
2391
2392 unit->SetLibSymbol( aSymbol.Flatten().release() );
2393 unit->UpdateFields( &GetCurrentSheet(),
2394 true, /* update style */
2395 true, /* update ref */
2396 true, /* update other fields */
2397 false, /* reset ref */
2398 false /* reset other fields */ );
2399
2400 path.LastScreen()->Append( unit );
2401 GetCanvas()->GetView()->Update( unit );
2402 }
2403
2404 if( !commit.Empty() )
2405 commit.Push( _( "Save Symbol to Schematic" ) );
2406}
2407
2408
2409void SCH_EDIT_FRAME::UpdateItem( EDA_ITEM* aItem, bool isAddOrDelete, bool aUpdateRtree )
2410{
2411 SCH_BASE_FRAME::UpdateItem( aItem, isAddOrDelete, aUpdateRtree );
2412
2413 if( SCH_ITEM* sch_item = dynamic_cast<SCH_ITEM*>( aItem ) )
2414 sch_item->ClearCaches();
2415}
2416
2417
2419{
2420 wxCHECK( m_toolManager, /* void */ );
2421
2425
2426 wxCHECK( screen, /* void */ );
2427
2429
2430 SCH_BASE_FRAME::SetScreen( screen );
2431
2432 SetSheetNumberAndCount(); // will also update CurrentScreen()'s sheet number info
2433
2435
2436 // update the references, units, and intersheet-refs
2438
2439 // dangling state can also have changed if different units with different pin locations are
2440 // used
2443
2445
2446 wxCHECK( selectionTool, /* void */ );
2447
2448 auto visit =
2449 [&]( EDA_ITEM* item )
2450 {
2452 && !m_findReplaceData->findString.IsEmpty()
2453 && item->Matches( *m_findReplaceData, &GetCurrentSheet() ) )
2454 {
2455 item->SetForceVisible( true );
2456 selectionTool->BrightenItem( item );
2457 }
2458 else if( item->IsBrightened() )
2459 {
2460 item->SetForceVisible( false );
2461 selectionTool->UnbrightenItem( item );
2462 }
2463 };
2464
2465 for( SCH_ITEM* item : screen->Items() )
2466 {
2467 visit( item );
2468
2469 item->RunOnChildren(
2470 [&]( SCH_ITEM* aChild )
2471 {
2472 visit( aChild );
2473 },
2474 RECURSE_MODE::NO_RECURSE );
2475 }
2476
2477 if( !screen->m_zoomInitialized )
2478 {
2480 }
2481 else
2482 {
2483 // Set zoom to last used in this screen
2484 GetCanvas()->GetView()->SetScale( GetScreen()->m_LastZoomLevel );
2485 GetCanvas()->GetView()->SetCenter( GetScreen()->m_ScrollCenter );
2486 }
2487
2488 updateTitle();
2489
2490 HardRedraw(); // Ensure all items are redrawn (especially the drawing-sheet items)
2491
2492 // Allow tools to re-add their VIEW_ITEMs after the last call to Clear in HardRedraw
2494
2496
2497 wxCHECK( editTool, /* void */ );
2498
2500 editTool->UpdateNetHighlighting( dummy );
2501
2503
2505}
2506
2507
2509{
2510 if( !m_diffSymbolDialog )
2512 _( "Compare Symbol with Library" ) );
2513
2514 return m_diffSymbolDialog;
2515}
2516
2517
2518void SCH_EDIT_FRAME::onCloseSymbolDiffDialog( wxCommandEvent& aEvent )
2519{
2520 if( m_diffSymbolDialog && aEvent.GetString() == DIFF_SYMBOLS_DIALOG_NAME )
2521 {
2522 m_diffSymbolDialog->Destroy();
2523 m_diffSymbolDialog = nullptr;
2524 }
2525}
2526
2527
2529{
2530 if( !m_ercDialog )
2531 m_ercDialog = new DIALOG_ERC( this );
2532
2533 return m_ercDialog;
2534}
2535
2536
2537void SCH_EDIT_FRAME::onCloseErcDialog( wxCommandEvent& aEvent )
2538{
2539 if( m_ercDialog )
2540 {
2541 m_ercDialog->Destroy();
2542 m_ercDialog = nullptr;
2543 }
2544}
2545
2546
2548{
2551
2553}
2554
2555
2557{
2559 {
2560 m_symbolFieldsTableDialog->Destroy();
2561 m_symbolFieldsTableDialog = nullptr;
2562 }
2563}
2564
2565
2566void SCH_EDIT_FRAME::AddSchematicChangeListener( wxEvtHandler* aListener )
2567{
2568 auto it = std::find( m_schematicChangeListeners.begin(), m_schematicChangeListeners.end(),
2569 aListener );
2570
2571 // Don't add duplicate listeners.
2572 if( it == m_schematicChangeListeners.end() )
2573 m_schematicChangeListeners.push_back( aListener );
2574}
2575
2576
2578{
2579 auto it = std::find( m_schematicChangeListeners.begin(), m_schematicChangeListeners.end(),
2580 aListener );
2581
2582 // Don't add duplicate listeners.
2583 if( it != m_schematicChangeListeners.end() )
2584 m_schematicChangeListeners.erase( it );
2585}
2586
2587
2589{
2590 m_netNavigator = new wxTreeCtrl( this, wxID_ANY, wxPoint( 0, 0 ),
2591 FromDIP( wxSize( 160, 250 ) ),
2592 wxTR_DEFAULT_STYLE | wxNO_BORDER );
2593
2594 return m_netNavigator;
2595}
2596
2597
2598void SCH_EDIT_FRAME::SetHighlightedConnection( const wxString& aConnection,
2599 const NET_NAVIGATOR_ITEM_DATA* aSelection )
2600{
2601 bool refreshNetNavigator = aConnection != m_highlightedConn;
2602
2603 m_highlightedConn = aConnection;
2604
2605 if( refreshNetNavigator )
2606 RefreshNetNavigator( aSelection );
2607}
2608
2609
2611{
2612 if( m_netNavigator )
2613 {
2614 NET_NAVIGATOR_ITEM_DATA itemData;
2615 wxTreeItemId selection = m_netNavigator->GetSelection();
2616 bool refreshSelection = selection.IsOk() && ( selection != m_netNavigator->GetRootItem() );
2617
2618 if( refreshSelection )
2619 {
2621 dynamic_cast<NET_NAVIGATOR_ITEM_DATA*>( m_netNavigator->GetItemData( selection ) );
2622
2623 wxCHECK( tmp, /* void */ );
2624 itemData = *tmp;
2625 }
2626
2627 m_netNavigator->DeleteAllItems();
2628 RefreshNetNavigator( refreshSelection ? &itemData : nullptr );
2629 }
2630
2632}
2633
2634
2636{
2637 wxAuiPaneInfo& hierarchyPane = m_auimgr.GetPane( SchematicHierarchyPaneName() );
2638 wxAuiPaneInfo& netNavigatorPane = m_auimgr.GetPane( NetNavigatorPaneName() );
2639 wxAuiPaneInfo& propertiesPane = m_auimgr.GetPane( PropertiesPaneName() );
2640 wxAuiPaneInfo& selectionFilterPane = m_auimgr.GetPane( wxS( "SelectionFilter" ) );
2641
2642 // Don't give the selection filter its own visibility controls; instead show it if
2643 // anything else is visible
2644 bool showFilter = ( hierarchyPane.IsShown() && hierarchyPane.IsDocked() )
2645 || ( netNavigatorPane.IsShown() && netNavigatorPane.IsDocked() )
2646 || ( propertiesPane.IsShown() && propertiesPane.IsDocked() );
2647
2648 selectionFilterPane.Show( showFilter );
2649}
2650
2651#ifdef KICAD_IPC_API
2652void SCH_EDIT_FRAME::onPluginAvailabilityChanged( wxCommandEvent& aEvt )
2653{
2654 wxLogTrace( traceApi, "SCH frame: EDA_EVT_PLUGIN_AVAILABILITY_CHANGED" );
2656 aEvt.Skip();
2657}
2658#endif
2659
2660
2662{
2663 EESCHEMA_SETTINGS* cfg = eeconfig();
2664
2665 // Ensure m_show_search is up to date (the pane can be closed outside the menu)
2666 m_show_search = m_auimgr.GetPane( SearchPaneName() ).IsShown();
2667
2669
2670 wxAuiPaneInfo& searchPaneInfo = m_auimgr.GetPane( SearchPaneName() );
2671 searchPaneInfo.Show( m_show_search );
2672
2673 if( m_show_search )
2674 {
2675 searchPaneInfo.Direction( cfg->m_AuiPanels.search_panel_dock_direction );
2676
2677 if( cfg->m_AuiPanels.search_panel_dock_direction == wxAUI_DOCK_TOP
2678 || cfg->m_AuiPanels.search_panel_dock_direction == wxAUI_DOCK_BOTTOM )
2679 {
2680 SetAuiPaneSize( m_auimgr, searchPaneInfo, -1, cfg->m_AuiPanels.search_panel_height );
2681 }
2682 else if( cfg->m_AuiPanels.search_panel_dock_direction == wxAUI_DOCK_LEFT
2683 || cfg->m_AuiPanels.search_panel_dock_direction == wxAUI_DOCK_RIGHT )
2684 {
2685 SetAuiPaneSize( m_auimgr, searchPaneInfo, cfg->m_AuiPanels.search_panel_width, -1 );
2686 }
2687
2690 }
2691 else
2692 {
2693 cfg->m_AuiPanels.search_panel_height = m_searchPane->GetSize().y;
2694 cfg->m_AuiPanels.search_panel_width = m_searchPane->GetSize().x;
2695 cfg->m_AuiPanels.search_panel_dock_direction = searchPaneInfo.dock_direction;
2696 m_auimgr.Update();
2697 }
2698}
2699
2700
2702{
2703 if( !m_propertiesPanel )
2704 return;
2705
2706 bool show = !m_propertiesPanel->IsShownOnScreen();
2707
2708 wxAuiPaneInfo& propertiesPaneInfo = m_auimgr.GetPane( PropertiesPaneName() );
2709 propertiesPaneInfo.Show( show );
2710
2712
2713 EESCHEMA_SETTINGS* settings = eeconfig();
2714
2715 if( show )
2716 {
2717 SetAuiPaneSize( m_auimgr, propertiesPaneInfo,
2718 settings->m_AuiPanels.properties_panel_width, -1 );
2719 }
2720 else
2721 {
2722 settings->m_AuiPanels.properties_panel_width = m_propertiesPanel->GetSize().x;
2723 m_auimgr.Update();
2724 }
2725}
2726
2727
2729{
2730 EESCHEMA_SETTINGS* cfg = eeconfig();
2731
2732 wxCHECK( cfg, /* void */ );
2733
2734 wxAuiPaneInfo& hierarchy_pane = m_auimgr.GetPane( SchematicHierarchyPaneName() );
2735
2736 hierarchy_pane.Show( !hierarchy_pane.IsShown() );
2737
2739
2740 if( hierarchy_pane.IsShown() )
2741 {
2742 if( hierarchy_pane.IsFloating() )
2743 {
2744 hierarchy_pane.FloatingSize( cfg->m_AuiPanels.hierarchy_panel_float_width,
2746 m_auimgr.Update();
2747 }
2748 else if( cfg->m_AuiPanels.hierarchy_panel_docked_width > 0 )
2749 {
2750 // SetAuiPaneSize also updates m_auimgr
2751 SetAuiPaneSize( m_auimgr, hierarchy_pane,
2753 }
2754 }
2755 else
2756 {
2757 if( hierarchy_pane.IsFloating() )
2758 {
2759 cfg->m_AuiPanels.hierarchy_panel_float_width = hierarchy_pane.floating_size.x;
2760 cfg->m_AuiPanels.hierarchy_panel_float_height = hierarchy_pane.floating_size.y;
2761 }
2762 else
2763 {
2765 }
2766
2767 m_auimgr.Update();
2768 }
2769}
2770
2771
2773{
2774 EESCHEMA_SETTINGS* cfg = eeconfig();
2775
2776 wxCHECK( cfg, /* void */ );
2777
2778 wxAuiPaneInfo& db_library_pane = m_auimgr.GetPane( DesignBlocksPaneName() );
2779
2780 db_library_pane.Show( !db_library_pane.IsShown() );
2781
2782 if( db_library_pane.IsShown() )
2783 {
2784 if( db_library_pane.IsFloating() )
2785 {
2786 db_library_pane.FloatingSize( cfg->m_AuiPanels.design_blocks_panel_float_width,
2788 m_auimgr.Update();
2789 }
2791 {
2792 // SetAuiPaneSize also updates m_auimgr
2793 SetAuiPaneSize( m_auimgr, db_library_pane,
2795 }
2796 }
2797 else
2798 {
2799 if( db_library_pane.IsFloating() )
2800 {
2801 cfg->m_AuiPanels.design_blocks_panel_float_width = db_library_pane.floating_size.x;
2802 cfg->m_AuiPanels.design_blocks_panel_float_height = db_library_pane.floating_size.y;
2803 }
2804 else
2805 {
2807 }
2808
2809 m_auimgr.Update();
2810 }
2811}
const KICOMMON_API wxEventTypeTag< wxCommandEvent > EDA_EVT_PLUGIN_AVAILABILITY_CHANGED
Notifies other parts of KiCad when plugin availability changes.
constexpr EDA_IU_SCALE schIUScale
Definition: base_units.h:110
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
wxBitmap KiBitmap(BITMAPS aBitmap, int aHeightTag)
Construct a wxBitmap from an image identifier Returns the image from the active theme if the image ha...
Definition: bitmap.cpp:104
@ icon_eeschema
@ icon_eeschema_16
@ icon_eeschema_32
BOX2< VECTOR2I > BOX2I
Definition: box2.h:922
static TOOL_ACTION toggleGrid
Definition: actions.h:198
static TOOL_ACTION paste
Definition: actions.h:80
static TOOL_ACTION cancelInteractive
Definition: actions.h:72
static TOOL_ACTION millimetersUnits
Definition: actions.h:206
static TOOL_ACTION unselectAll
Definition: actions.h:83
static TOOL_ACTION copy
Definition: actions.h:78
static TOOL_ACTION updateFind
Definition: actions.h:123
static TOOL_ACTION pasteSpecial
Definition: actions.h:81
static TOOL_ACTION milsUnits
Definition: actions.h:205
static TOOL_ACTION toggleBoundingBoxes
Definition: actions.h:154
static TOOL_ACTION showSearch
Definition: actions.h:115
static TOOL_ACTION undo
Definition: actions.h:75
static TOOL_ACTION selectionActivate
Activation of the selection tool.
Definition: actions.h:214
static TOOL_ACTION duplicate
Definition: actions.h:84
static TOOL_ACTION inchesUnits
Definition: actions.h:204
static TOOL_ACTION toggleCursorStyle
Definition: actions.h:151
static TOOL_ACTION doDelete
Definition: actions.h:85
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 selectionClear
Clear the current selection.
Definition: actions.h:220
static TOOL_ACTION showProperties
Definition: actions.h:260
static TOOL_ACTION cut
Definition: actions.h:77
static TOOL_ACTION copyAsText
Definition: actions.h:79
static TOOL_ACTION toggleGridOverrides
Definition: actions.h:199
static TOOL_ACTION selectAll
Definition: actions.h:82
Manage TOOL_ACTION objects.
void SetConditions(const TOOL_ACTION &aAction, const ACTION_CONDITIONS &aConditions)
Set the conditions the UI elements for activating a specific tool action should use for determining t...
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
WINDOW_SETTINGS m_Window
Definition: app_settings.h:213
Handles how to draw a screen (a board, a schematic ...)
Definition: base_screen.h:41
void SetPageNumber(const wxString &aPageNumber)
Definition: base_screen.h:79
void SetContentModified(bool aModified=true)
Definition: base_screen.h:59
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
Definition: box2.h:658
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Modify a given item in the model.
Definition: commit.h:108
bool Empty() const
Definition: commit.h:150
Handle actions that are shared between different applications.
Handles action that are shared between different applications.
Definition: common_tools.h:38
Calculate the connectivity of a schematic and generates netlists.
const NET_MAP & GetNetMap() const
CONNECTION_SUBGRAPH * FindFirstSubgraphByName(const wxString &aNetName)
Retrieve a subgraph for the given net name, if one exists.
std::set< std::pair< SCH_SHEET_PATH, SCH_ITEM * > > ExtractAffectedItems(const std::set< SCH_ITEM * > &aItems)
For a set of items, this will remove the connected items and their associated data including subgraph...
void SetLastCodes(const CONNECTION_GRAPH *aOther)
void Merge(CONNECTION_GRAPH &aGraph)
Combine the input graph contents into the current graph.
void Recalculate(const SCH_SHEET_LIST &aSheetList, bool aUnconditional=false, std::function< void(SCH_ITEM *)> *aChangedItemHandler=nullptr)
Update the connection graph for the given list of sheets.
A subgraph is a set of items that are electrically connected on a single sheet.
wxArrayString GetFindEntries() const
wxArrayString GetReplaceEntries() const
void SetReplaceEntries(const wxArrayString &aEntries)
void SetFindEntries(const wxArrayString &aEntries, const wxString &aFindString)
bool Show(bool show) override
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
UNDO_REDO_CONTAINER m_undoList
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
virtual void setupUIConditions()
Setup the UI conditions for the various actions and their controls in this frame.
virtual void ClearUndoRedoList()
Clear the undo and redo list using ClearUndoORRedoList()
SETTINGS_MANAGER * GetSettingsManager() const
virtual void OnModify()
Must be called after a model change in order to set the "modify" flag and do other frame-specific pro...
WX_INFOBAR * m_infoBar
void UpdateFileHistory(const wxString &FullFileName, FILE_HISTORY *aFileHistory=nullptr)
Update the list of recently opened files.
wxAuiManager m_auimgr
virtual void RecreateToolbars()
void ClearFileHistory(FILE_HISTORY *aFileHistory=nullptr)
Remove all files from the file history.
virtual void OnSize(wxSizeEvent &aEvent)
virtual void OnDropFiles(wxDropFilesEvent &aEvent)
Handle event fired when a file is dropped to the window.
wxString GetFileFromHistory(int cmdId, const wxString &type, FILE_HISTORY *aFileHistory=nullptr)
Fetch the file name from the file history list.
virtual int GetUndoCommandCount() const
bool m_isClosing
Set by the close window event handler after frames are asked if they can close.
wxString m_mruPath
wxArrayString m_replaceStringHistoryList
EDA_DRAW_PANEL_GAL::GAL_TYPE m_canvasType
The current canvas type.
virtual void OnSize(wxSizeEvent &event) override
Recalculate the size of toolbars and display panel when the frame size changes.
GAL_DISPLAY_OPTIONS_IMPL & GetGalDisplayOptions()
Return a reference to the gal rendering options used by GAL for rendering.
static const wxString PropertiesPaneName()
void FocusOnLocation(const VECTOR2I &aPos)
Useful to focus on a particular location, in find functions.
virtual void SetScreen(BASE_SCREEN *aScreen)
virtual void UpdateMsgPanel()
Redraw the message panel.
virtual void ClearFocus()
SEARCH_PANE * m_searchPane
wxArrayString m_findStringHistoryList
static const wxString DesignBlocksPaneName()
std::unique_ptr< EDA_SEARCH_DATA > m_findReplaceData
PROPERTIES_PANEL * m_propertiesPanel
GAL_TYPE GetBackend() const
Return the type of backend currently used by GAL canvas.
void ForceRefresh()
Force a redraw.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
void SetEventDispatcher(TOOL_DISPATCHER *aEventDispatcher)
Set a dispatcher that processes events and forwards them to tools.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:96
virtual const VECTOR2I GetFocusPosition() const
Similar to GetPosition() but allows items to return their visual center rather than their anchor.
Definition: eda_item.h:259
const KIID m_Uuid
Definition: eda_item.h:498
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:108
void ClearBrightened()
Definition: eda_item.h:131
void SetBrightened()
Definition: eda_item.h:128
bool IsBrightened() const
Definition: eda_item.h:122
Specialization of the wxAuiPaneInfo class for KiCad panels.
SHAPE_POLY_SET & GetPolyShape()
Definition: eda_shape.h:337
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition: eda_text.h:80
virtual const wxString & GetText() const
Return the string associated with the text object.
Definition: eda_text.h:98
virtual void ClearBoundingBoxCache()
Definition: eda_text.cpp:657
SELECTION_CONDITION NoActiveTool()
Create a functor testing if there are no tools active in the frame.
SELECTION_CONDITION BoundingBoxes()
SELECTION_CONDITION RedoAvailable()
Create a functor that tests if there are any items in the redo queue.
SELECTION_CONDITION CurrentTool(const TOOL_ACTION &aTool)
Create a functor testing if the specified tool is the current active tool in the frame.
SELECTION_CONDITION Units(EDA_UNITS aUnit)
Create a functor that tests if the frame has the specified units.
SELECTION_CONDITION GridVisible()
Create a functor testing if the grid is visible in a frame.
SELECTION_CONDITION GridOverrides()
Create a functor testing if the grid overrides wires is enabled in a frame.
SELECTION_CONDITION FullscreenCursor()
Create a functor testing if the cursor is full screen in a frame.
PANEL_ANNOTATE m_AnnotatePanel
bool empty() const
Definition: sch_rtree.h:179
EE_TYPE Overlapping(const BOX2I &aRect) const
Definition: sch_rtree.h:246
EE_TYPE OfType(KICAD_T aType) const
Definition: sch_rtree.h:241
SEVERITY GetSeverity(int aErrorCode) const
void ReadWindowSettings(WINDOW_SETTINGS &aCfg)
Read GAL config options from application-level config.
void UpdateHierarchyTree(bool aClear=false)
Update the hierarchical tree of the schematic.
void UpdateLabelsHierarchyTree()
Update the labels of the hierarchical tree of the schematic.
void UpdateHierarchySelection()
Updates the tree's selection to match current page.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
APP_SETTINGS_BASE * KifaceSettings() const
Definition: kiface_base.h:95
void SetDefaultFont(const wxString &aFont)
Contains methods for drawing schematic-specific items.
Definition: sch_painter.h:68
DS_PROXY_VIEW_ITEM * GetDrawingSheet() const
Definition: sch_view.h:120
void SetScale(double aScale, VECTOR2D aAnchor={ 0, 0 }) override
Set the scaling factor, zooming around a given anchor point.
Definition: sch_view.cpp:75
An abstract base class for deriving all objects that can be added to a VIEW.
Definition: view_item.h:86
bool IsSCH_ITEM() const
Definition: view_item.h:101
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:67
double GetScale() const
Definition: view.h:272
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
Definition: view.cpp:1673
void SetLayerVisible(int aLayer, bool aVisible=true)
Control the visibility of a particular layer.
Definition: view.h:396
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition: view.h:216
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
Definition: view.cpp:586
void UpdateAllItemsConditionally(int aUpdateFlags, std::function< bool(VIEW_ITEM *)> aCondition)
Update items in the view according to the given flags and condition.
Definition: view.cpp:1559
Definition: kiid.h:49
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
Definition: kiway_player.h:65
bool Destroy() override
Our version of Destroy() which is virtual from wxWidgets.
virtual bool OpenProjectFiles(const std::vector< wxString > &aFileList, int aCtl=0)
Open a project or set of files given by aFileList.
Definition: kiway_player.h:113
void OnSockRequestServer(wxSocketEvent &evt)
Definition: eda_dde.cpp:99
void OnSockRequest(wxSocketEvent &evt)
Definition: eda_dde.cpp:69
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition: kiway.h:285
void OnKiCadExit()
Definition: kiway.cpp:727
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
Definition: kiway.cpp:406
virtual bool PlayerClose(FRAME_T aFrameType, bool doForce)
Call the KIWAY_PLAYER::Close( bool force ) function on the window and if not vetoed,...
Definition: kiway.cpp:470
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr)
Send aPayload to aDestination from aSource.
Definition: kiway.cpp:527
Define a library symbol object.
Definition: lib_symbol.h:85
std::unique_ptr< LIB_SYMBOL > Flatten() const
Return a flattened symbol inheritance to the caller.
Definition: lib_symbol.cpp:342
Tree view item data for the net navigator.
A singleton reporter that reports to nowhere.
Definition: reporter.h:217
int GetHeightIU(double aIUScale) const
Gets the page height in IU.
Definition: page_info.h:162
int GetWidthIU(double aIUScale) const
Gets the page width in IU.
Definition: page_info.h:153
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
A holder to handle information on schematic or board items.
UNDO_REDO GetPickedItemStatus(unsigned int aIdx) const
EDA_ITEM * GetPickedItemLink(unsigned int aIdx) const
unsigned GetCount() const
BASE_SCREEN * GetScreenForItem(unsigned int aIdx) const
EDA_ITEM * GetPickedItem(unsigned int aIdx) const
A small class to help profiling.
Definition: profile.h:49
void Stop()
Save the time when this function was called, and set the counter stane to stop.
Definition: profile.h:88
double msecs(bool aSinceLast=false)
Definition: profile.h:149
std::shared_ptr< NET_SETTINGS > & NetSettings()
Definition: project_file.h:104
virtual const wxString GetProjectFullName() const
Return the full path and name of the project.
Definition: project.cpp:140
virtual const wxString GetProjectPath() const
Return the full path of the project.
Definition: project.cpp:146
virtual PROJECT_FILE & GetProjectFile() const
Definition: project.h:203
virtual const wxString AbsolutePath(const wxString &aFileName) const
Fix up aFileName if it is relative to the project's directory to be an absolute path and filename.
Definition: project.cpp:370
Action handler for the Properties panel.
These are loaded from Eeschema settings but then overwritten by the project settings.
Holds all the data relating to one schematic.
Definition: schematic.h:69
void SetCurrentSheet(const SCH_SHEET_PATH &aPath)
Definition: schematic.h:153
void Reset()
Initialize this schematic to a blank one, unloading anything existing.
Definition: schematic.cpp:132
CONNECTION_GRAPH * m_connectionGraph
Hold and calculate connectivity information of this schematic.
Definition: schematic.h:385
void OnSchSheetChanged()
Notify the schematic and its listeners that the current sheet has been changed.
Definition: schematic.cpp:797
wxString GetFileName() const
Helper to retrieve the filename from the root sheet screen.
Definition: schematic.cpp:300
wxString GetOperatingPoint(const wxString &aNetName, int aPrecision, const wxString &aRange)
Definition: schematic.cpp:731
SCHEMATIC_SETTINGS & Settings() const
Definition: schematic.cpp:306
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
Definition: schematic.cpp:208
SCH_ITEM * GetItem(const KIID &aID, SCH_SHEET_PATH *aPathOut=nullptr) const
Definition: schematic.h:112
void SetRoot(SCH_SHEET *aRootSheet)
Initialize the schematic with a new root sheet.
Definition: schematic.cpp:188
void SetProject(PROJECT *aPrj)
Definition: schematic.cpp:158
CONNECTION_GRAPH * ConnectionGraph() const
Definition: schematic.h:158
SCH_SCREEN * RootScreen() const
Helper to retrieve the screen of the root sheet.
Definition: schematic.cpp:202
void RecomputeIntersheetRefs(const std::function< void(SCH_GLOBALLABEL *)> &aItemCallback)
Update the schematic's page reference map for all global labels, and refresh the labels so that they ...
Definition: schematic.cpp:685
bool IsValid() const
A simple test if the schematic is loaded, not a complete one.
Definition: schematic.h:133
void RemoveAllListeners()
Remove all listeners.
Definition: schematic.cpp:822
SCH_SHEET & Root() const
Definition: schematic.h:117
void SetSheetNumberAndCount()
Set the m_ScreenNumber and m_NumberOfScreens members for screens.
Definition: schematic.cpp:656
SCH_SHEET_PATH & CurrentSheet() const
Definition: schematic.h:148
ERC_SETTINGS & ErcSettings() const
Definition: schematic.cpp:313
void RefreshHierarchy()
Definition: schematic.cpp:216
Gather all the actions that are shared by tools.
Definition: sch_actions.h:40
static TOOL_ACTION rotateCCW
Definition: sch_actions.h:119
static TOOL_ACTION placeClassLabel
Definition: sch_actions.h:77
static TOOL_ACTION placeSheetPin
Definition: sch_actions.h:83
static TOOL_ACTION saveSheetAsDesignBlock
Definition: sch_actions.h:190
static TOOL_ACTION mirrorV
Definition: sch_actions.h:120
static TOOL_ACTION drawSheetFromFile
Definition: sch_actions.h:81
static TOOL_ACTION toggleOPCurrents
Definition: sch_actions.h:242
static TOOL_ACTION saveSelectionAsDesignBlock
Definition: sch_actions.h:191
static TOOL_ACTION placeGlobalLabel
Definition: sch_actions.h:78
static TOOL_ACTION drawTextBox
Definition: sch_actions.h:91
static TOOL_ACTION toggleAnnotateAuto
Definition: sch_actions.h:269
static TOOL_ACTION drawArc
Definition: sch_actions.h:95
static TOOL_ACTION drawSheet
Definition: sch_actions.h:80
static TOOL_ACTION toggleERCWarnings
Definition: sch_actions.h:237
static TOOL_ACTION toggleDirectiveLabels
Definition: sch_actions.h:236
static TOOL_ACTION highlightNetTool
Definition: sch_actions.h:296
static TOOL_ACTION leaveSheet
Definition: sch_actions.h:218
static TOOL_ACTION toggleHiddenFields
Definition: sch_actions.h:233
static TOOL_ACTION drawRectangle
Definition: sch_actions.h:93
static TOOL_ACTION drawLines
Definition: sch_actions.h:97
static TOOL_ACTION placeHierLabel
Definition: sch_actions.h:79
static TOOL_ACTION placeLabel
Definition: sch_actions.h:76
static TOOL_ACTION drawCircle
Definition: sch_actions.h:94
static TOOL_ACTION placeBusWireEntry
Definition: sch_actions.h:75
static TOOL_ACTION drawBezier
Definition: sch_actions.h:96
static TOOL_ACTION drawWire
Definition: sch_actions.h:70
static TOOL_ACTION remapSymbols
Definition: sch_actions.h:164
static TOOL_ACTION lineMode45
Definition: sch_actions.h:265
static TOOL_ACTION rotateCW
Definition: sch_actions.h:118
static TOOL_ACTION showHierarchy
Definition: sch_actions.h:224
static TOOL_ACTION showNetNavigator
Definition: sch_actions.h:297
static TOOL_ACTION placeJunction
Definition: sch_actions.h:74
static TOOL_ACTION markSimExclusions
Definition: sch_actions.h:240
static TOOL_ACTION drawRuleArea
Definition: sch_actions.h:101
static TOOL_ACTION placeSymbol
Definition: sch_actions.h:66
static TOOL_ACTION placeImage
Definition: sch_actions.h:98
static TOOL_ACTION toggleERCErrors
Definition: sch_actions.h:238
static TOOL_ACTION drawSheetFromDesignBlock
Definition: sch_actions.h:82
static TOOL_ACTION mirrorH
Definition: sch_actions.h:121
static TOOL_ACTION placeDesignBlock
Definition: sch_actions.h:69
static TOOL_ACTION toggleOPVoltages
Definition: sch_actions.h:241
static TOOL_ACTION drawBus
Definition: sch_actions.h:71
static TOOL_ACTION drawTable
Definition: sch_actions.h:92
static TOOL_ACTION lineMode90
Definition: sch_actions.h:264
static TOOL_ACTION ddAppendFile
Definition: sch_actions.h:300
static TOOL_ACTION placeSchematicText
Definition: sch_actions.h:90
static TOOL_ACTION lineModeFree
Definition: sch_actions.h:263
static TOOL_ACTION showDesignBlockPanel
Definition: sch_actions.h:189
static TOOL_ACTION togglePinAltIcons
Definition: sch_actions.h:243
static TOOL_ACTION toggleERCExclusions
Definition: sch_actions.h:239
static TOOL_ACTION updateNetHighlighting
Definition: sch_actions.h:295
static TOOL_ACTION placeNoConnect
Definition: sch_actions.h:73
static TOOL_ACTION toggleHiddenPins
Definition: sch_actions.h:232
static TOOL_ACTION syncSheetPins
Definition: sch_actions.h:87
static TOOL_ACTION placePower
Definition: sch_actions.h:68
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
SCH_RENDER_SETTINGS * GetRenderSettings()
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
EESCHEMA_SETTINGS * eeconfig() const
PANEL_SCH_SELECTION_FILTER * m_selectionFilterPanel
virtual void UpdateItem(EDA_ITEM *aItem, bool isAddOrDelete=false, bool aUpdateRtree=false)
Mark an item for refresh.
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
Definition: sch_commit.cpp:435
Each graphical item can have a SCH_CONNECTION describing its logical connection (to a bus or net).
bool HasDriverChanged() const
wxString Name(bool aIgnoreSheet=false) const
Handle design block actions in the schematic editor.
Tool responsible for drawing/placing items (symbols, wires, buses, labels, etc.).
KIGFX::SCH_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
void DisplaySheet(SCH_SCREEN *aScreen)
Group generic conditions for PCB editor states.
SELECTION_CONDITION LineMode(LINE_MODE aMode)
Create a functor that tests if the frame is in the specified line drawing mode.
Handle actions specific to the schematic editor.
int UpdateNetHighlighting(const TOOL_EVENT &aEvent)
Launch a tool to highlight nets.
Schematic editor (Eeschema) main window.
void ToggleProperties() override
bool IsContentModified() const override
Get if the current schematic has been modified but not saved.
void RefreshOperatingPointDisplay()
Refresh the display of any operating points.
SELECTION & GetCurrentSelection() override
Get the current selection from the canvas area.
EDA_ITEM * GetItem(const KIID &aId) const override
Fetch an item by KIID.
const wxString & getAutoSaveFileName() const
wxTreeCtrl * m_netNavigator
std::vector< std::unique_ptr< SCH_ITEM > > m_items_to_repeat
For the repeat-last-item cmd.
void onResizeNetNavigator(wxSizeEvent &aEvent)
void updateSelectionFilterVisbility() override
Selection filter panel doesn't have a dedicated visibility control, so show it if any other AUI panel...
bool m_highlightedConnChanged
void onNetNavigatorSelChanging(wxTreeEvent &aEvent)
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag and update other data struc...
void ShowAllIntersheetRefs(bool aShow)
void SaveProjectLocalSettings() override
Save changes to the project settings to the project (.pro) file.
bool OpenProjectFiles(const std::vector< wxString > &aFileSet, int aCtl=0) override
Open a project or set of files given by aFileList.
void doCloseWindow() override
DIALOG_BOOK_REPORTER * m_diffSymbolDialog
void ToggleLibraryTree() override
void SetHighlightedConnection(const wxString &aConnection, const NET_NAVIGATOR_ITEM_DATA *aSelection=nullptr)
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
bool ReadyToNetlist(const wxString &aAnnotateMessage)
Check if we are ready to write a netlist file for the current schematic.
void onCloseErcDialog(wxCommandEvent &aEvent)
void ShowFindReplaceDialog(bool aReplace)
Run the Find or Find & Replace dialog.
void UpdateHierarchySelection()
Update the hierarchy navigation tree selection (cross-probe from schematic to hierarchy pane).
void SetScreen(BASE_SCREEN *aScreen) override
void OnFindDialogClose()
Notification that the Find dialog has closed.
void SaveSymbolToSchematic(const LIB_SYMBOL &aSymbol, const KIID &aSchematicSymbolUUID)
Update a schematic symbol from a LIB_SYMBOL.
void SchematicCleanUp(SCH_COMMIT *aCommit, SCH_SCREEN *aScreen=nullptr)
Perform routine schematic cleaning including breaking wire and buses and deleting identical objects s...
void onSize(wxSizeEvent &aEvent)
void CommonSettingsChanged(int aFlags) override
Called after the preferences dialog is run.
void ShowChangedLanguage() override
std::vector< wxEvtHandler * > m_schematicChangeListeners
void HardRedraw() override
Rebuild the GAL and redraw the screen.
void OnClearFileHistory(wxCommandEvent &aEvent)
bool GetShowAllPins() const override
Allow edit frame to show/hide hidden pins.
SCHEMATIC * m_schematic
The currently loaded schematic.
void onCloseSymbolFieldsTableDialog(wxCommandEvent &aEvent)
void ClearFindReplaceStatus()
SCH_SHEET_PATH & GetCurrentSheet() const
void OnLoadFile(wxCommandEvent &event)
SCHEMATIC & Schematic() const
void updateTitle()
Set the main window title bar text.
void ToggleSearch()
Toggle the show/hide state of Search pane.
void RefreshNetNavigator(const NET_NAVIGATOR_ITEM_DATA *aSelection=nullptr)
wxString GetFullScreenDesc() const override
static const wxString SearchPaneName()
DIALOG_BOOK_REPORTER * GetSymbolDiffDialog()
bool canCloseWindow(wxCloseEvent &aCloseEvent) override
void RecomputeIntersheetRefs()
Update the schematic's page reference map for all global labels, and refresh the labels so that they ...
DIALOG_ERC * GetErcDialog()
void sendNetlistToCvpcb()
Send the KiCad netlist over to CVPCB.
SCH_DESIGN_BLOCK_PANE * m_designBlocksPane
void UpdateHierarchyNavigator(bool aRefreshNetNavigator=true, bool aClear=false)
Update the hierarchy navigation tree and history.
void ToggleSchematicHierarchy()
Toggle the show/hide state of the left side schematic navigation panel.
void SetSheetNumberAndCount()
Set the m_ScreenNumber and m_NumberOfScreens members for screens.
void OnPageSettingsChange() override
Called when modifying the page settings.
void ClearRepeatItemsList()
Clear the list of items which are to be repeated with the insert key.
const BOX2I GetDocumentExtents(bool aIncludeAllVisible=true) const override
Return bounding box of document with option to not include some items.
void RecalculateConnections(SCH_COMMIT *aCommit, SCH_CLEANUP_FLAGS aCleanupFlags)
Generate the connection data for the entire schematic hierarchy.
void CaptureHierarchyPaneSize()
void initScreenZoom()
Initialize the zoom value of the current screen and mark the screen as zoom-initialized.
void UpdateLabelsHierarchyNavigator()
Update the hierarchy navigation tree labels.
void OnImportProject(wxCommandEvent &event)
static const wxString SchematicHierarchyPaneName()
void setupUIConditions() override
Setup the UI conditions for the various actions and their controls in this frame.
void unitsChangeRefresh() override
Called when when the units setting has changed to allow for any derived classes to handle refreshing ...
void RemoveSchematicChangeListener(wxEvtHandler *aListener)
Remove aListener to from the schematic changed listener list.
void ShowFindReplaceStatus(const wxString &aMsg, int aStatusTime)
void SetCurrentSheet(const SCH_SHEET_PATH &aSheet)
int GetSchematicJunctionSize()
void DisplayCurrentSheet()
Draw the current sheet on the display.
~SCH_EDIT_FRAME() override
const wxString & GetHighlightedConnection() const
DIALOG_ERC * m_ercDialog
void UpdateItem(EDA_ITEM *aItem, bool isAddOrDelete=false, bool aUpdateRtree=false) override
Mark an item for refresh.
void UpdateNetHighlightStatus()
wxString GetScreenDesc() const override
Return a human-readable description of the current screen.
DIALOG_SCH_FIND * m_findReplaceDialog
void AddCopyForRepeatItem(const SCH_ITEM *aItem)
DIALOG_SYMBOL_FIELDS_TABLE * GetSymbolFieldsTableDialog()
void OnResizeHierarchyNavigator(wxSizeEvent &aEvent)
wxString GetCurrentFileName() const override
Get the full filename + path of the currently opened file in the frame.
wxString m_highlightedConn
The highlighted net or bus or empty string.
static const wxString NetNavigatorPaneName()
void onCloseSymbolDiffDialog(wxCommandEvent &aEvent)
wxTreeCtrl * createHighlightedNetNavigator()
void OnExit(wxCommandEvent &event)
void AutoRotateItem(SCH_SCREEN *aScreen, SCH_ITEM *aItem)
Automatically set the rotation of an item (if the item supports it).
void AddSchematicChangeListener(wxEvtHandler *aListener)
Add aListener to post #EDA_EVT_SCHEMATIC_CHANGED command events to.
HIERARCHY_PANE * m_hierarchy
DIALOG_SYMBOL_FIELDS_TABLE * m_symbolFieldsTableDialog
std::unique_ptr< GRID_HELPER > MakeGridHelper() override
SEVERITY GetSeverity(int aErrorCode) const override
void FocusOnItem(EDA_ITEM *aItem) override
Focus on a particular canvas item.
void onNetNavigatorSelection(wxTreeEvent &aEvent)
void SaveCopyForRepeatItem(const SCH_ITEM *aItem)
Clone aItem and owns that clone in this container.
Toolbar configuration for the schematic editor frame.
Handle actions specific to the schematic editor.
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
virtual bool IsConnectable() const
Definition: sch_item.h:462
virtual void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode)
Definition: sch_item.h:566
SCH_CONNECTION * Connection(const SCH_SHEET_PATH *aSheet=nullptr) const
Retrieve the connection associated with this object in the given sheet.
Definition: sch_item.cpp:219
SCH_ITEM * Duplicate(bool doClone=false) const
Routine to create a new copy of given item.
Definition: sch_item.cpp:131
bool AutoRotateOnPlacement() const
autoRotateOnPlacement
Definition: sch_label.cpp:1414
SPIN_STYLE GetSpinStyle() const
Definition: sch_label.cpp:337
void AutoplaceFields(SCH_SCREEN *aScreen, AUTOPLACE_ALGO aAlgo) override
Definition: sch_label.cpp:566
std::vector< SCH_FIELD > & GetFields()
Definition: sch_label.h:205
virtual void SetSpinStyle(SPIN_STYLE aSpinStyle)
Definition: sch_label.cpp:302
Tool responsible for drawing/placing items (symbols, wires, buses, labels, etc.)
static bool IsDrawingLineWireOrBus(const SELECTION &aSelection)
Segment description base class to describe items which have 2 end points (track, wire,...
Definition: sch_line.h:41
void SetOperatingPoint(const wxString &aText)
Definition: sch_line.h:313
bool IsWire() const
Return true if the line is a wire.
Definition: sch_line.cpp:933
double GetLength() const
Definition: sch_line.cpp:237
const wxString & GetOperatingPoint() const
Definition: sch_line.h:312
Handle actions specific to the schematic editor.
void SetOperatingPoint(const wxString &aText)
Definition: sch_pin.h:301
Tool that displays edit points allowing to modify items by dragging the points.
virtual std::vector< SHAPE * > MakeEffectiveShapes(bool aEdgeOnly=false) const override
Make a set of SHAPE objects representing the EDA_SHAPE.
void ResetDirectivesAndItems(KIGFX::SCH_VIEW *view)
Clear and resets items and directives attached to this rule area.
std::unordered_set< SCH_ITEM * > GetPastAndPresentContainedItems() const
Fetch all items which were, or are, within the rule area.
static std::vector< std::pair< SCH_RULE_AREA *, SCH_SCREEN * > > UpdateRuleAreasInScreens(std::unordered_set< SCH_SCREEN * > &screens, KIGFX::SCH_VIEW *view)
Update all rule area connectvity / caches in the given sheet paths.
Container class that holds multiple SCH_SCREEN objects in a hierarchy.
Definition: sch_screen.h:734
SCH_SCREEN * GetNext()
SCH_SCREEN * GetFirst()
bool HasNoFullyDefinedLibIds()
Test all of the schematic symbols to see if all LIB_ID objects library nickname is not set.
const PAGE_INFO & GetPageSettings() const
Definition: sch_screen.h:134
void Clear(bool aFree=true)
Delete all draw items and clears the project settings.
Definition: sch_screen.cpp:280
void TestDanglingEnds(const SCH_SHEET_PATH *aPath=nullptr, std::function< void(SCH_ITEM *)> *aChangedHandler=nullptr) const
Test all of the connectable objects in the schematic for unused connection points.
const std::map< wxString, LIB_SYMBOL * > & GetLibSymbols() const
Fetch a list of unique LIB_SYMBOL object pointers required to properly render each SCH_SYMBOL in this...
Definition: sch_screen.h:479
double m_LastZoomLevel
last value for the zoom level, useful in Eeschema when changing the current displayed sheet to reuse ...
Definition: sch_screen.h:658
EE_RTREE & Items()
Get the full RTree, usually for iterating.
Definition: sch_screen.h:112
const wxString & GetFileName() const
Definition: sch_screen.h:147
const KIID & GetUuid() const
Definition: sch_screen.h:530
bool IsReadOnly() const
Definition: sch_screen.h:150
void SetFileName(const wxString &aFileName)
Set the file name for this screen to aFileName.
Definition: sch_screen.cpp:120
void Update(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Update aItem's bounding box in the tree.
Definition: sch_screen.cpp:318
bool m_zoomInitialized
Definition: sch_screen.h:683
bool FileExists() const
Definition: sch_screen.h:153
SPIN_STYLE GetLabelOrientationForPoint(const VECTOR2I &aPosition, SPIN_STYLE aDefaultOrientation, const SCH_SHEET_PATH *aSheet) const
Definition: sch_screen.cpp:517
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
SCH_ITEM * GetItem(const KIID &aID, SCH_SHEET_PATH *aPathOut=nullptr) const
Fetch a SCH_ITEM by ID.
bool IsModified() const
Check the entire hierarchy for any modifications.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
wxString PathHumanReadable(bool aUseShortRootName=true, bool aStripTrailingSeparator=false) const
Return the sheet path in a human readable form made from the sheet names.
void UpdateAllScreenReferences() const
Update all the symbol references for this sheet path.
SCH_SCREEN * LastScreen()
bool GetExcludedFromSim() const
void SetPageNumber(const wxString &aPageNumber)
Set the sheet instance user definable page number.
SCH_SHEET * Last() const
Return a pointer to the last SCH_SHEET of the list.
void push_back(SCH_SHEET *aSheet)
Forwarded method from std::vector.
void clear()
Forwarded method from std::vector.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:47
wxString GetName() const
Definition: sch_sheet.h:113
void SetScreen(SCH_SCREEN *aScreen)
Set the SCH_SCREEN associated with this sheet to aScreen.
Definition: sch_sheet.cpp:137
std::vector< SCH_SHEET_PIN * > & GetPins()
Definition: sch_sheet.h:187
Schematic symbol object.
Definition: sch_symbol.h:75
bool IsAnnotated(const SCH_SHEET_PATH *aSheet) const
Check if the symbol has a valid annotation (reference) for the given sheet path.
Definition: sch_symbol.cpp:689
std::vector< SCH_PIN * > GetPins(const SCH_SHEET_PATH *aSheet) const
Retrieve a list of the SCH_PINs for the given sheet path.
SCH_PIN * GetPin(const wxString &number) const
Find a symbol pin by number.
const wxString GetRef(const SCH_SHEET_PATH *aSheet, bool aIncludeUnit=false) const override
Definition: sch_symbol.cpp:611
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this symbol.
Definition: sch_symbol.cpp:813
VECTOR2I GetPosition() const override
Definition: sch_text.h:139
void RefreshSearch()
void FocusSearch()
static bool NotEmpty(const SELECTION &aSelection)
Test if there are any items selected.
static bool Idle(const SELECTION &aSelection)
Test if there no items selected or being edited.
static bool ShowAlways(const SELECTION &aSelection)
The default condition function (always returns true).
void BrightenItem(EDA_ITEM *aItem)
void UnbrightenItem(EDA_ITEM *aItem)
EDA_ITEM * Front() const
Definition: selection.h:172
int Size() const
Returns the number of selected parts.
Definition: selection.h:116
T * GetToolbarSettings(const wxString &aFilename)
Return a handle to the given toolbar settings.
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
bool UnloadProject(PROJECT *aProject, bool aSave=true)
Save, unload and unregister the given PROJECT.
bool CollideEdge(const VECTOR2I &aPoint, VERTEX_INDEX *aClosestVertex=nullptr, int aClearance=0) const
Check whether aPoint collides with any edge of any of the contours of the polygon.
SIM_MODEL & CreateModel(SIM_MODEL::TYPE aType, const std::vector< SCH_PIN * > &aPins, REPORTER &aReporter)
const SPICE_GENERATOR & SpiceGenerator() const
Definition: sim_model.h:428
std::vector< std::reference_wrapper< const SIM_MODEL_PIN > > GetPins() const
Definition: sim_model.cpp:685
virtual std::string ItemName(const SPICE_ITEM &aItem) const
Symbol library viewer main window.
The symbol library editor main window.
Symbol library viewer main window.
bool GetExcludedFromSim() const override
Definition: symbol.h:175
void AddTemplateFieldNames(const wxString &aSerializedFieldNames)
Add a serialized list of template field names.
void DeleteAllFieldNameTemplates(bool aGlobal)
Delete the entire contents.
TOOL_MANAGER * m_toolManager
Definition: tools_holder.h:171
TOOL_DISPATCHER * m_toolDispatcher
Definition: tools_holder.h:173
TOOL_MANAGER * GetToolManager() const
Return the MVC controller.
Definition: tools_holder.h:55
ACTIONS * m_actions
Definition: tools_holder.h:172
@ REDRAW
Full drawing refresh.
Definition: tool_base.h:83
@ MODEL_RELOAD
Model changes (the sheet for a schematic)
Definition: tool_base.h:80
Generic, UI-independent tool event.
Definition: tool_event.h:168
Master controller class:
Definition: tool_manager.h:62
bool RunAction(const std::string &aActionName, T aParam)
Run the specified action immediately, pausing the current action to run the new one.
Definition: tool_manager.h:150
ACTION_MANAGER * GetActionManager() const
Definition: tool_manager.h:306
bool PostAction(const std::string &aActionName, T aParam)
Run the specified action after the current action (coroutine) ends.
Definition: tool_manager.h:235
void ResetTools(TOOL_BASE::RESET_REASON aReason)
Reset all tools (i.e.
void RegisterTool(TOOL_BASE *aTool)
Add a tool to the manager set and sets it up.
void SetEnvironment(EDA_ITEM *aModel, KIGFX::VIEW *aView, KIGFX::VIEW_CONTROLS *aViewControls, APP_SETTINGS_BASE *aSettings, TOOLS_HOLDER *aFrame)
Set the work environment (model, view, view controls and the parent window).
void InitTools()
Initialize all registered tools.
void ShutdownAllTools()
Shutdown all tools with a currently registered event loop in this tool manager by waking them up with...
std::vector< PICKED_ITEMS_LIST * > m_CommandsList
void RemoveAllButtons()
Remove all the buttons that have been added by the user.
Definition: wx_infobar.cpp:353
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.
Definition: wx_infobar.cpp:140
void Dismiss() override
Dismisses the infobar and updates the containing layout and AUI manager (if one is provided).
Definition: wx_infobar.cpp:190
void AddCloseButton(const wxString &aTooltip=_("Hide this message."))
Add the default close button to the infobar on the right side.
Definition: wx_infobar.cpp:343
wxString EnsureFileExtension(const wxString &aFilename, const wxString &aExtension)
It's annoying to throw up nag dialogs when the extension isn't right.
Definition: common.cpp:425
bool HandleUnsavedChanges(wxWindow *aParent, const wxString &aMessage, const std::function< bool()> &aSaveFunction)
Display a dialog with Save, Cancel and Discard Changes buttons.
Definition: confirm.cpp:130
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
Definition: confirm.cpp:170
This file is part of the common library.
#define CHECK(x)
#define ENABLE(x)
#define _HKI(x)
#define _(s)
#define KICAD_DEFAULT_DRAWFRAME_STYLE
#define SCH_EDIT_FRAME_NAME
@ ID_IMPORT_NON_KICAD_SCH
Definition: eeschema_id.h:57
const wxAuiPaneInfo & defaultSchSelectionFilterPaneInfo(wxWindow *aWindow)
const wxAuiPaneInfo & defaultPropertiesPaneInfo(wxWindow *aWindow)
const wxAuiPaneInfo & defaultNetNavigatorPaneInfo()
const wxAuiPaneInfo & defaultDesignBlocksPaneInfo(wxWindow *aWindow)
EVT_MENU_RANGE(ID_GERBVIEW_DRILL_FILE1, ID_GERBVIEW_DRILL_FILEMAX, GERBVIEW_FRAME::OnDrlFileHistory) EVT_MENU_RANGE(ID_GERBVIEW_ZIP_FILE1
KiCad executable names.
const wxString PCBNEW_EXE
@ FRAME_PCB_EDITOR
Definition: frame_type.h:42
@ FRAME_SCH_SYMBOL_EDITOR
Definition: frame_type.h:35
@ FRAME_SCH_VIEWER
Definition: frame_type.h:36
@ FRAME_SCH
Definition: frame_type.h:34
@ FRAME_SIMULATOR
Definition: frame_type.h:38
@ FRAME_CVPCB
Definition: frame_type.h:52
@ FRAME_SYMBOL_CHOOSER
Definition: frame_type.h:37
int ExecuteFile(const wxString &aEditorName, const wxString &aFileName, wxProcess *aCallback, bool aFileForKicad)
Call the executable file aEditorName with the parameter aFileName.
Definition: gestfich.cpp:143
static const std::string NetlistFileExtension
static const std::string LegacyPcbFileExtension
static const std::string KiCadSchematicFileExtension
static const std::string AutoSaveFilePrefix
static wxString LegacySchematicFileWildcard()
static wxString AllSchematicFilesWildcard()
static wxString KiCadSchematicFileWildcard()
const wxChar *const traceApi
Flag to enable debug output related to the IPC API and its plugin system.
Definition: api_utils.cpp:26
@ ID_FILE_LIST_CLEAR
Definition: id.h:84
@ ID_EDA_SOCKET_EVENT
Definition: id.h:155
@ ID_EDA_SOCKET_EVENT_SERV
Definition: id.h:154
@ ID_FILEMAX
Definition: id.h:82
@ ID_FILE1
Definition: id.h:81
PROJECT & Prj()
Definition: kicad.cpp:597
KIID niluuid(0)
#define KICTL_CREATE
caller thinks requested project files may not exist.
Definition: kiway_player.h:76
@ LAYER_ERC_WARN
Definition: layer_ids.h:468
@ LAYER_ERC_EXCLUSION
Definition: layer_ids.h:470
@ LAYER_ERC_ERR
Definition: layer_ids.h:469
@ LAYER_OP_CURRENTS
Definition: layer_ids.h:490
@ LAYER_INTERSHEET_REFS
Definition: layer_ids.h:452
@ LAYER_OP_VOLTAGES
Definition: layer_ids.h:489
@ MAIL_PCB_UPDATE
Definition: mail_type.h:46
@ REPAINT
Item needs to be redrawn.
Definition: view_item.h:58
@ GEOMETRY
Position or shape has changed.
Definition: view_item.h:55
void SetShutdownBlockReason(wxWindow *aWindow, const wxString &aReason)
Sets the block reason why the window/application is preventing OS shutdown.
Definition: unix/app.cpp:90
bool SupportsShutdownBlockReason()
Whether or not the window supports setting a shutdown block reason.
Definition: unix/app.cpp:79
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
SEVERITY
#define DIFF_SYMBOLS_DIALOG_NAME
wxDEFINE_EVENT(EDA_EVT_SCHEMATIC_CHANGING, wxCommandEvent)
#define CURRENT_TOOL(action)
SCH_CLEANUP_FLAGS
@ LOCAL_CLEANUP
@ GLOBAL_CLEANUP
@ AUTOPLACE_AUTO
Definition: sch_item.h:70
KIWAY Kiway(KFCTL_STANDALONE)
std::vector< FAB_LAYER_COLOR > dummy
wxString UnescapeString(const wxString &aSource)
const double IU_PER_MILS
Definition: base_units.h:77
The EE_TYPE struct provides a type-specific auto-range iterator to the RTree.
Definition: sch_rtree.h:195
std::string refName
Definition for symbol library class.
@ SCH_LINE_T
Definition: typeinfo.h:163
@ SCH_SYMBOL_T
Definition: typeinfo.h:172
@ SCH_FIELD_T
Definition: typeinfo.h:150
@ SCH_DIRECTIVE_LABEL_T
Definition: typeinfo.h:171
@ SCH_LABEL_T
Definition: typeinfo.h:167
@ SCH_SHEET_T
Definition: typeinfo.h:175
@ SCH_RULE_AREA_T
Definition: typeinfo.h:170
@ SCH_HIER_LABEL_T
Definition: typeinfo.h:169
@ SCH_SHEET_PIN_T
Definition: typeinfo.h:174
@ SCH_TEXT_T
Definition: typeinfo.h:151
@ SCH_GLOBAL_LABEL_T
Definition: typeinfo.h:168
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695
Definition of file extensions used in Kicad.
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.