KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_base_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) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
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, see <https://www.gnu.org/licenses/>.
19 */
20
21#include <algorithm>
22#include <advanced_config.h>
23#include <base_units.h>
25#include <kiplatform/io.h>
28#include <kiway.h>
30#include <pgm_base.h>
31#include <eda_list_dialog.h>
34#include <eeschema_settings.h>
38#include <sch_draw_panel.h>
40#include <sch_group.h>
41#include <sch_view.h>
42#include <sch_painter.h>
43#include <sch_shape.h>
46#include <widgets/wx_infobar.h>
47#include <string_utils.h>
48#include <confirm.h>
50#include <project_sch.h>
53#include <sch_base_frame.h>
55#include <design_block.h>
56#include <thread_pool.h>
57#include <tool/actions.h>
58#include <tool/action_toolbar.h>
59#include <tool/tool_manager.h>
63#include <trace_helpers.h>
64#include <view/view_controls.h>
65#include <widgets/kistatusbar.h>
66#include <wx/choicdlg.h>
67#include <wx/evtloop.h>
68#include <wx/fswatcher.h>
69#include <wx/log.h>
70#include <wx/msgdlg.h>
71#include <trace_helpers.h>
72
73#if defined(__linux__) || defined(__FreeBSD__)
75#else
77#include <wx/fdrepdlg.h>
78#endif
79
80
82 LEGACY_SYMBOL_LIB* aCacheLib, wxWindow* aParent, bool aShowErrorMsg )
83{
84 wxCHECK_MSG( aLibMgr, nullptr, wxS( "Invalid symbol library manager adapter." ) );
85
86 LIB_SYMBOL* symbol = nullptr;
87
88 try
89 {
90 symbol = aLibMgr->LoadSymbol( aLibId );
91
92 if( !symbol && aCacheLib )
93 {
94 wxCHECK_MSG( aCacheLib->IsCache(), nullptr, wxS( "Invalid cache library." ) );
95
96 wxString cacheName = aLibId.GetLibNickname().wx_str();
97 cacheName << "_" << aLibId.GetLibItemName();
98 symbol = aCacheLib->FindSymbol( cacheName );
99 }
100 }
101 catch( const IO_ERROR& ioe )
102 {
103 if( aShowErrorMsg )
104 {
105 wxString msg = wxString::Format( _( "Error loading symbol %s from library '%s'." ),
106 aLibId.GetLibItemName().wx_str(),
107 aLibId.GetLibNickname().wx_str() );
108 DisplayErrorMessage( aParent, msg, ioe.What() );
109 }
110 }
111
112 return symbol;
113}
114
115
116SCH_BASE_FRAME::SCH_BASE_FRAME( KIWAY* aKiway, wxWindow* aParent, FRAME_T aWindowType,
117 const wxString& aTitle, const wxPoint& aPosition,
118 const wxSize& aSize, long aStyle, const wxString& aFrameName ) :
119 EDA_DRAW_FRAME( aKiway, aParent, aWindowType, aTitle, aPosition, aSize, aStyle,
120 aFrameName, schIUScale ),
121 m_selectionFilterPanel( nullptr ),
122 m_findReplaceDialog( nullptr ),
123 m_base_frame_defaults( nullptr, "base_Frame_defaults" ),
125 m_watcherIsDir( false ),
127{
128 m_findReplaceData = std::make_unique<SCH_SEARCH_DATA>();
129
130 if( ( aStyle & wxFRAME_NO_TASKBAR ) == 0 )
131 createCanvas();
132
133 Bind( wxEVT_IDLE,
134 [this]( wxIdleEvent& aEvent )
135 {
136 // Handle cursor adjustments. While we can get motion and key events through
137 // wxWidgets, we can't get modifier-key-up events.
138 if( m_toolManager )
139 {
141
142 if( selTool )
143 selTool->OnIdle( aEvent );
144 }
145 } );
146
147 Pgm().GetBackgroundJobMonitor().RegisterStatusBar( static_cast<KISTATUSBAR*>( GetStatusBar() ) );
148
150}
151
152
155{
156 Pgm().GetBackgroundJobMonitor().UnregisterStatusBar( static_cast<KISTATUSBAR*>( GetStatusBar() ) );
157}
158
159
161{
162 GetCanvas()->SetEvtHandlerEnabled( false );
164
165 // Shutdown all running tools
166 if( m_toolManager )
167 m_toolManager->ShutdownAllTools();
168
169 // Close the find dialog and preserve its setting if it is displayed.
171 {
173 m_replaceStringHistoryList = m_findReplaceDialog->GetReplaceEntries();
174
175 m_findReplaceDialog->Destroy();
176 m_findReplaceDialog = nullptr;
177 }
178
179 // This class is pure virtual. Derived class will finish shutdown and Destroy().
180}
181
182
187
188
190{
191 return dynamic_cast<EESCHEMA_SETTINGS*>( config() );
192}
193
194
199
200
202{
203 switch( GetFrameType() )
204 {
205 case FRAME_SCH:
206 default:
207 return GetAppSettings<EESCHEMA_SETTINGS>( "eeschema" );
208
210 case FRAME_SCH_VIEWER:
212 return GetAppSettings<SYMBOL_EDITOR_SETTINGS>( "symbol_editor" );
213 }
214}
215
216
217void SCH_BASE_FRAME::SetPageSettings( const PAGE_INFO& aPageSettings )
218{
219 GetScreen()->SetPageSettings( aPageSettings );
220}
221
222
224{
225 return GetScreen()->GetPageSettings();
226}
227
228
230{
231 // GetSizeIU is compile time dependent:
232 return GetScreen()->GetPageSettings().GetSizeIU( schIUScale.IU_PER_MILS );
233}
234
235
237{
238 wxASSERT( GetScreen() );
239 return GetScreen()->GetTitleBlock();
240}
241
242
244{
245 wxASSERT( GetScreen() );
246 GetScreen()->SetTitleBlock( aTitleBlock );
247}
248
249
251{
252 wxString line;
253 BASE_SCREEN* screen = GetScreen();
254
255 if( !screen )
256 return;
257
259
260 // Display absolute and relative coordinates
262 VECTOR2D d = cursorPos - screen->m_LocalOrigin;
263
264 line.Printf( wxS( "X %s Y %s" ),
265 MessageTextFromValue( cursorPos.x, false ),
266 MessageTextFromValue( cursorPos.y, false ) );
267 SetStatusText( line, 2 );
268
269 line.Printf( wxS( "dx %s dy %s dist %s" ),
270 MessageTextFromValue( d.x, false ),
271 MessageTextFromValue( d.y, false ),
272 MessageTextFromValue( hypot( d.x, d.y ), false ) );
273 SetStatusText( line, 3 );
274
277}
278
279
280LIB_SYMBOL* SCH_BASE_FRAME::GetLibSymbol( const LIB_ID& aLibId, bool aUseCacheLib,
281 bool aShowErrorMsg )
282{
283 LEGACY_SYMBOL_LIB* cache =
284 ( aUseCacheLib ) ? PROJECT_SCH::LegacySchLibs( &Prj() )->GetCacheLibrary() : nullptr;
285
286 return SchGetLibSymbol( aLibId, PROJECT_SCH::SymbolLibAdapter( &Prj() ), cache, this,
287 aShowErrorMsg );
288}
289
290
291void SCH_BASE_FRAME::RedrawScreen( const VECTOR2I& aCenterPoint, bool aWarpPointer )
292{
293 GetCanvas()->GetView()->SetCenter( aCenterPoint );
294
295 if( aWarpPointer )
297
298 GetCanvas()->Refresh();
299}
300
301
303{
304 if( GetCanvas() && GetCanvas()->GetView() )
305 {
308 }
309}
310
311
316
317
319{
320 if( GetCanvas() && GetCanvas()->GetView() )
321 {
322 if( KIGFX::PAINTER* painter = GetCanvas()->GetView()->GetPainter() )
323 return static_cast<SCH_RENDER_SETTINGS*>( painter->GetSettings() );
324 }
325
326 return nullptr;
327}
328
329
331{
333
334 SetCanvas( new SCH_DRAW_PANEL( this, wxID_ANY, wxPoint( 0, 0 ), m_frameSize,
337}
338
339
341{
343
344 try
345 {
346 if( !m_spaceMouse )
347 {
348#if defined(__linux__) || defined(__FreeBSD__)
349 m_spaceMouse = std::make_unique<SPNAV_2D_PLUGIN>( GetCanvas() );
350 m_spaceMouse->SetScale( schIUScale.IU_PER_MILS / pcbIUScale.IU_PER_MILS );
351#else
352 m_spaceMouse = std::make_unique<NL_SCHEMATIC_PLUGIN>();
353#endif
354 }
355
356 m_spaceMouse->SetCanvas( GetCanvas() );
357 }
358 catch( const std::exception& e )
359 {
360 wxLogTrace( wxT( "KI_TRACE_NAVLIB" ), wxS( "%s" ), e.what() );
361 }
362 catch( ... )
363 {
364 wxLogTrace( wxT( "KI_TRACE_NAVLIB" ),
365 wxT( "Unknown exception during SpaceMouse initialization" ) );
366 }
367}
368
369
370void SCH_BASE_FRAME::UpdateItem( EDA_ITEM* aItem, bool isAddOrDelete, bool aUpdateRtree )
371{
372 EDA_ITEM* parent = aItem->GetParent();
373
374 if( aItem->Type() == SCH_SHEET_PIN_T )
375 {
376 // Sheet pins aren't in the view. Refresh their parent.
377 if( parent )
378 GetCanvas()->GetView()->Update( parent );
379 }
380 else
381 {
382 if( aItem->Type() == SCH_SHAPE_T )
383 static_cast<SCH_SHAPE*>( aItem )->UpdateHatching();
384
385 if( !isAddOrDelete )
386 GetCanvas()->GetView()->Update( aItem );
387
388 // Some children are drawn from their parents. Mark them for re-paint.
389 if( parent && ( parent->Type() == SCH_SYMBOL_T
390 || parent->Type() == SCH_SHEET_T
391 || parent->Type() == SCH_LABEL_LOCATE_ANY_T
392 || parent->Type() == SCH_TABLE_T ) )
393 {
394 GetCanvas()->GetView()->Update( parent, KIGFX::REPAINT );
395 }
396 }
397
398 /*
399 * Be careful when calling this. Update will invalidate RTree iterators, so you cannot
400 * call this while doing things like `for( SCH_ITEM* item : screen->Items() )`
401 */
402 if( aUpdateRtree && dynamic_cast<SCH_ITEM*>( aItem ) )
403 {
404 GetScreen()->Update( static_cast<SCH_ITEM*>( aItem ) );
405
406 /*
407 * If we are updating the group, we also need to update all the children otherwise
408 * their positions will remain stale in the RTree
409 */
410 if( SCH_GROUP* group = dynamic_cast<SCH_GROUP*>( aItem ) )
411 {
412 group->RunOnChildren(
413 [&]( SCH_ITEM* item )
414 {
415 GetScreen()->Update( item );
416 },
418 }
419 }
420
421 // Calling Refresh() here introduces a bi-stable state: when doing operations on a
422 // large number of items if at some point the refresh timer times out and does a
423 // refresh it will take long enough that the next item will also time out, and the
424 // next, and the next, etc.
425 // GetCanvas()->Refresh();
426}
427
428
430{
431 // We currently have two zoom-dependent renderings: text, which is rendered as bitmap text
432 // when too small to see the difference, and selection shadows.
433 //
434 // Because non-selected text is cached by OpenGL, we only apply the bitmap performance hack
435 // to selected text items.
436 //
437 // Thus, as it currently stands, all zoom-dependent items can be found in the list of selected
438 // items.
439 if( m_toolManager )
440 {
441 SCH_SELECTION_TOOL* selectionTool = m_toolManager->GetTool<SCH_SELECTION_TOOL>();
442 SELECTION& selection = selectionTool->GetSelection();
443 KIGFX::SCH_VIEW* view = GetCanvas()->GetView();
444
445 for( EDA_ITEM* item : selection )
446 {
447 if( item->RenderAsBitmap( view->GetGAL()->GetWorldScale() ) != item->IsShownAsBitmap()
449 {
450 view->Update( item, KIGFX::REPAINT );
451
452 EDA_ITEM* parent = item->GetParent();
453
454 // Symbol children are drawn from their parents. Mark them for re-paint.
455 if( parent && parent->Type() == SCH_SYMBOL_T )
456 GetCanvas()->GetView()->Update( parent, KIGFX::REPAINT );
457 }
458 }
459 }
460}
461
462
464{
465 // Null pointers will cause boost::ptr_vector to raise a boost::bad_pointer exception which
466 // will be unhandled. There is no valid reason to pass an invalid EDA_ITEM pointer to the
467 // screen append function.
468 wxCHECK( aItem, /* void */ );
469
470 SCH_SCREEN* screen = aScreen;
471
472 if( aScreen == nullptr )
473 screen = GetScreen();
474
475 if( aItem->Type() != SCH_TABLECELL_T )
476 screen->Append( (SCH_ITEM*) aItem );
477
478 if( screen == GetScreen() )
479 {
480 GetCanvas()->GetView()->Add( aItem );
481 UpdateItem( aItem, true ); // handle any additional parent semantics
482 }
483}
484
485
487{
488 auto screen = aScreen;
489
490 if( aScreen == nullptr )
491 screen = GetScreen();
492
493 if( screen == GetScreen() )
494 GetCanvas()->GetView()->Remove( aItem );
495
496 if( aItem->Type() != SCH_TABLECELL_T )
497 screen->Remove( (SCH_ITEM*) aItem );
498
499 if( screen == GetScreen() )
500 UpdateItem( aItem, true ); // handle any additional parent semantics
501}
502
503
505{
506 // Let tools add things to the view if necessary
507 if( m_toolManager )
509
511}
512
513
518
519
521{
522 wxString findString;
523
524 SCH_SELECTION& selection = m_toolManager->GetTool<SCH_SELECTION_TOOL>()->GetSelection();
526
527 if( selection.Size() == 1 && selection.Front() != findTool->GetLastFoundItem() )
528 {
529 EDA_ITEM* front = selection.Front();
530
531 switch( front->Type() )
532 {
533 case SCH_SYMBOL_T:
534 {
535 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( front );
536 findString = UnescapeString( symbol->GetField( FIELD_T::VALUE )->GetText() );
537 break;
538 }
539
540 case SCH_FIELD_T:
541 findString = UnescapeString( static_cast<SCH_FIELD*>( front )->GetText() );
542 break;
543
544 case SCH_LABEL_T:
546 case SCH_HIER_LABEL_T:
547 case SCH_SHEET_PIN_T:
548 findString = UnescapeString( static_cast<SCH_LABEL_BASE*>( front )->GetText() );
549 break;
550
551 case SCH_TEXT_T:
552 findString = UnescapeString( static_cast<SCH_TEXT*>( front )->GetText() );
553
554 if( findString.Contains( wxT( "\n" ) ) )
555 findString = findString.Before( '\n' );
556
557 break;
558
559 default:
560 break;
561 }
562 }
563
565 m_findReplaceDialog->Destroy();
566
567 m_findReplaceDialog = new DIALOG_SCH_FIND( this, static_cast<SCH_SEARCH_DATA*>( m_findReplaceData.get() ),
568 wxDefaultPosition, wxDefaultSize, aReplace ? wxFR_REPLACEDIALOG : 0 );
569
570 m_findReplaceDialog->SetFindEntries( m_findStringHistoryList, findString );
572 m_findReplaceDialog->Show( true );
573}
574
575
576void SCH_BASE_FRAME::ShowFindReplaceStatus( const wxString& aMsg, int aStatusTime )
577{
578 // Prepare the infobar, since we don't know its state
579 m_infoBar->RemoveAllButtons();
580 m_infoBar->AddCloseButton();
581
582 m_infoBar->ShowMessageFor( aMsg, aStatusTime, wxICON_INFORMATION );
583}
584
585
587{
588 m_infoBar->Dismiss();
589}
590
591
593{
595 m_replaceStringHistoryList = m_findReplaceDialog->GetReplaceEntries();
596
597 m_findReplaceDialog->Destroy();
598 m_findReplaceDialog = nullptr;
599
601}
602
603
617
618
620{
621 if( !m_colorSettings || aForceRefresh )
622 {
624 wxString colorTheme = cfg ? cfg->m_ColorTheme : wxString( "" );
625
627 {
628 if( SYMBOL_EDITOR_SETTINGS* sym_edit_cfg = GetAppSettings<SYMBOL_EDITOR_SETTINGS>( "symbol_editor" ) )
629 {
630 if( !sym_edit_cfg->m_UseEeschemaColorSettings )
631 colorTheme = sym_edit_cfg->m_ColorTheme;
632 }
633 }
634
635 const_cast<SCH_BASE_FRAME*>( this )->m_colorSettings = ::GetColorSettings( colorTheme );
636 }
637
638 return m_colorSettings;
639}
640
641
646
647
648void SCH_BASE_FRAME::handleActivateEvent( wxActivateEvent& aEvent )
649{
651
652 if( m_spaceMouse )
653 m_spaceMouse->SetFocus( aEvent.GetActive() );
654}
655
656
657void SCH_BASE_FRAME::handleIconizeEvent( wxIconizeEvent& aEvent )
658{
660
661 if( m_spaceMouse )
662 m_spaceMouse->SetFocus( false );
663}
664
665
667 std::vector<wxArrayString>& aItemsToDisplay )
668{
669 aHeaders.Add( _( "Library" ) );
670 aHeaders.Add( _( "Description" ) );
671
675 std::vector<wxString> libNicknames = adapter->GetLibraryNames();
676 std::vector<wxArrayString> unpinned;
677
678 for( const wxString& nickname : libNicknames )
679 {
680 wxArrayString item;
681 wxString description = adapter->GetLibraryDescription( nickname ).value_or( wxEmptyString );
682
683 if( alg::contains( project.m_PinnedSymbolLibs, nickname )
684 || alg::contains( cfg->m_Session.pinned_symbol_libs, nickname ) )
685 {
686 item.Add( LIB_TREE_MODEL_ADAPTER::GetPinningSymbol() + nickname );
687 item.Add( description );
688 aItemsToDisplay.push_back( item );
689 }
690 else
691 {
692 item.Add( nickname );
693 item.Add( description );
694 unpinned.push_back( item );
695 }
696 }
697
698 std::sort( aItemsToDisplay.begin(), aItemsToDisplay.end(),
699 []( const wxArrayString& a, const wxArrayString& b )
700 {
701 return StrNumCmp( a[0], b[0], true ) < 0;
702 } );
703
704 std::sort( unpinned.begin(), unpinned.end(),
705 []( const wxArrayString& a, const wxArrayString& b )
706 {
707 return StrNumCmp( a[0], b[0], true ) < 0;
708 } );
709
710 std::ranges::copy( unpinned, std::back_inserter( aItemsToDisplay ) );
711}
712
713
714wxString SCH_BASE_FRAME::SelectLibrary( const wxString& aDialogTitle, const wxString& aListLabel,
715 const std::vector<std::pair<wxString, bool*>>& aExtraCheckboxes )
716{
717 static const int ID_MAKE_NEW_LIBRARY = wxID_HIGHEST;
718
719 // Keep asking the user for a new name until they give a valid one or cancel the operation
720 while( true )
721 {
722 wxArrayString headers;
723 std::vector<wxArrayString> itemsToDisplay;
724
725 GetLibraryItemsForListDialog( headers, itemsToDisplay );
726
727 wxString libraryName = Prj().GetRString( PROJECT::SCH_LIB_SELECT );
728
729 EDA_LIST_DIALOG dlg( this, aDialogTitle, headers, itemsToDisplay, libraryName, false );
730 dlg.SetListLabel( aListLabel );
731
732 for( const auto& [label, val] : aExtraCheckboxes )
733 dlg.AddExtraCheckbox( label, val );
734
735 wxButton* newLibraryButton = new wxButton( &dlg, ID_MAKE_NEW_LIBRARY, _( "New Library..." ) );
736 dlg.m_ButtonsSizer->Prepend( 80, 20 );
737 dlg.m_ButtonsSizer->Prepend( newLibraryButton, 0, wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 10 );
738
739 newLibraryButton->Bind( wxEVT_BUTTON,
740 [&dlg]( wxCommandEvent& )
741 {
742 dlg.EndModal( ID_MAKE_NEW_LIBRARY );
744
745 dlg.Layout();
746 dlg.GetSizer()->Fit( &dlg );
747
748 int ret = dlg.ShowModal();
749
750 switch( ret )
751 {
752 case wxID_CANCEL:
753 return wxEmptyString;
754
755 case wxID_OK:
756 libraryName = dlg.GetTextSelection();
757 Prj().SetRString( PROJECT::SCH_LIB_SELECT, libraryName );
759 return libraryName;
760
762 {
763 SYMBOL_LIBRARY_MANAGER mgr( *this );
764 wxFileName fn( Prj().GetRString( PROJECT::SCH_LIB_PATH ) );
765 bool useGlobalTable = false;
766 FILEDLG_HOOK_NEW_LIBRARY tableChooser( useGlobalTable );
767
768 if( !LibraryFileBrowser( _( "Create New Library" ), false, fn, FILEEXT::KiCadSymbolLibFileWildcard(),
769 FILEEXT::KiCadSymbolLibFileExtension, false, &tableChooser ) )
770 {
771 break;
772 }
773
774 libraryName = fn.GetName();
775 Prj().SetRString( PROJECT::SCH_LIB_PATH, fn.GetPath() );
776
780
781 if( adapter->HasLibrary( libraryName, false ) )
782 {
783 DisplayError( this, wxString::Format( _( "Library '%s' already exists." ), libraryName ) );
784 break;
785 }
786
787 if( !mgr.CreateLibrary( fn.GetFullPath(), scope ) )
788 DisplayError( this, wxString::Format( _( "Could not add library '%s'." ), libraryName ) );
789
790 break;
791 }
792
793 default:
794 break;
795 }
796 }
797}
798
799
801{
802 Unbind( wxEVT_FSWATCHER, &SCH_BASE_FRAME::OnSymChange, this );
803
804 if( m_watcher )
805 {
806 wxLogTrace( traceLibWatch, "Remove watch" );
807 m_watcher->RemoveAll();
808 m_watcher->SetOwner( nullptr );
809 m_watcher.reset();
810 }
811
812 if( !aID )
813 return;
814
816 std::optional<wxString> uri = manager.GetFullURI( LIBRARY_TABLE_TYPE::SYMBOL,
817 aID->GetLibNickname() );
818
819 if( !uri )
820 {
821 wxLogTrace( traceLibWatch, "Could not get URI for library %s",
822 wxString( aID->GetLibNickname().c_str() ) );
823 return;
824 }
825
826 wxString tmp = ExpandEnvVarSubstitutions( *uri, &Prj() );
827
828 wxLogTrace( traceLibWatch, "Setting up watcher for %s", tmp );
829
830 if( wxFileName::DirExists( tmp ) )
831 {
832 m_watcherFileName.AssignDir( tmp );
833 m_watcherIsDir = true;
835 m_watcherFileName.GetPath(),
836 wxS( "*." ) + wxString( FILEEXT::KiCadSymbolLibFileExtension ) );
837 }
838 else
839 {
840 m_watcherFileName.Assign( tmp );
841 m_watcherIsDir = false;
842
843 if( !m_watcherFileName.FileExists() )
844 return;
845
846 wxLogNull silence;
847 m_watcherTimestamp = m_watcherFileName.GetModificationTime().GetValue().GetValue();
848 }
849
850 // File system watcher requires an active event loop. If we're being called during
851 // library enumeration before the main event loop is running, skip watcher creation.
852 if( !wxEventLoopBase::GetActive() )
853 return;
854
855 wxFileName fn;
856 fn.AssignDir( m_watcherFileName.GetPath() );
857 fn.DontFollowLink();
858
859 // wxMSW frees a watch before SMB completes its pending read, which then corrupts the heap
860 if( KIPLATFORM::ENV::IsNetworkPath( fn.GetPath() ) )
861 {
862 wxLogTrace( traceLibWatch, "Network path, not watching: %s", fn.GetPath() );
863 return;
864 }
865
866 Bind( wxEVT_FSWATCHER, &SCH_BASE_FRAME::OnSymChange, this );
867 m_watcher = std::make_unique<wxFileSystemWatcher>();
868 m_watcher->SetOwner( this );
869
870 {
871 // Silence OS errors that come from the watcher
872 wxLogNull silence;
873 m_watcher->Add( fn );
874 }
875}
876
877
878void SCH_BASE_FRAME::OnSymChange( wxFileSystemWatcherEvent& aEvent )
879{
880 wxLogTrace( traceLibWatch, "OnSymChange: %s, watcher file: %s",
881 aEvent.GetPath().GetFullPath(), m_watcherFileName.GetFullPath() );
882
883 if( !m_watcher || !m_watcher.get() || m_watcherFileName.GetPath().IsEmpty() )
884 return;
885
886 if( m_watcherIsDir )
887 {
888 // For directory-based libraries, accept events for any file within the directory
889 wxString eventPath = aEvent.GetPath().GetFullPath();
890 wxString dirPath = m_watcherFileName.GetPath();
891
892 if( !eventPath.StartsWith( dirPath ) )
893 return;
894 }
895 else
896 {
897 if( aEvent.GetPath() != m_watcherFileName )
898 return;
899 }
900
901 // Start the debounce timer (set to 1 second)
902 if( !m_watcherDebounceTimer.StartOnce( 1000 ) )
903 {
904 wxLogTrace( traceLibWatch, "Failed to start the debounce timer" );
905 return;
906 }
907}
908
909
911{
912 if( aEvent.GetId() != m_watcherDebounceTimer.GetId() )
913 {
914 aEvent.Skip();
915 return;
916 }
917
919 {
920 wxLogTrace( traceLibWatch, "Restarting debounce timer" );
921 m_watcherDebounceTimer.StartOnce( 3000 );
922 return;
923 }
924
925 // A modal dialog may be registered before wxGTK disables the frame. Reloading the
926 // library while either state is active would delete the LIB_SYMBOL being edited.
927 if( !IsEnabled() || Kiway().HasBlockingDialog() )
928 {
929 wxLogTrace( traceLibWatch, "Dialog open; restarting debounce timer" );
930 m_watcherDebounceTimer.StartOnce( 1000 );
931 return;
932 }
933
934 // An interactive tool (move, draw, place pin/text) holds references into the current symbol
935 // while its event loop runs. Reloading now would free those out from under the running tool
936 // and crash. Restart the timer before touching the watcher timestamp so the reload is retried
937 // once the tool finishes rather than silently dropped.
938 if( !ToolStackIsEmpty() )
939 {
940 wxLogTrace( traceLibWatch, "Interactive tool active; restarting debounce timer" );
941 m_watcherDebounceTimer.StartOnce( 1000 );
942 return;
943 }
944
945 wxLogTrace( traceLibWatch, "OnSymChangeDebounceTimer" );
946
947 long long currentTimestamp = 0;
948
949 if( m_watcherIsDir )
950 {
951 currentTimestamp = KIPLATFORM::IO::TimestampDir(
952 m_watcherFileName.GetPath(),
953 wxS( "*." ) + wxString( FILEEXT::KiCadSymbolLibFileExtension ) );
954 }
955 else
956 {
957 wxLogNull silence;
958 wxDateTime lastModified = m_watcherFileName.GetModificationTime();
959
960 if( !lastModified.IsValid() )
961 return;
962
963 currentTimestamp = lastModified.GetValue().GetValue();
964 }
965
966 if( currentTimestamp == m_watcherTimestamp )
967 return;
968
969 m_watcherTimestamp = currentTimestamp;
970
972
974 || IsOK( this, _( "The library containing the current symbol has changed.\n"
975 "Do you want to reload the library?" ) ) )
976 {
977 wxLogTrace( traceLibWatch, "Sending refresh symbol mail" );
978
979 // For directory libraries, GetFullPath() appends a trailing separator which
980 // won't match the library table URI. Use GetPath() for directories instead.
981 std::string libName = m_watcherIsDir
982 ? m_watcherFileName.GetPath().ToStdString()
983 : m_watcherFileName.GetFullPath().ToStdString();
984
987 }
988
990}
991
992
994{
995 if( m_toolManager )
996 return m_toolManager->GetTool<SCH_SELECTION_TOOL>();
997
998 return nullptr;
999}
1000
1001
1003{
1004 SCH_SELECTION_FILTER_EVENT evt( aOptions );
1005 wxPostEvent( this, evt );
1006}
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:123
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:121
static TOOL_ACTION updateFind
Definition actions.h:120
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
wxString m_ColorTheme
Active color theme name.
void UnregisterStatusBar(KISTATUSBAR *aStatusBar)
Removes status bar from handling.
void RegisterStatusBar(KISTATUSBAR *aStatusBar)
Add a status bar for handling.
Handles how to draw a screen (a board, a schematic ...)
Definition base_screen.h:37
VECTOR2D m_LocalOrigin
Relative Screen cursor coordinate (on grid) in user units.
Definition base_screen.h:86
Color settings are a bit different than most of the settings objects in that there can be more than o...
COLOR4D GetColor(int aLayer) const
int ShowModal() override
FRAME_T GetFrameType() const
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
virtual void handleIconizeEvent(wxIconizeEvent &aEvent)
Handle a window iconize event.
WX_INFOBAR * m_infoBar
virtual bool IsContentModified() const
Get if the contents of the frame have been modified since the last save.
bool IsType(FRAME_T aType) const
wxArrayString m_replaceStringHistoryList
virtual void ActivateGalCanvas()
Use to start up the GAL drawing canvas.
COLOR_SETTINGS * m_colorSettings
EDA_DRAW_PANEL_GAL::GAL_TYPE m_canvasType
The current canvas type.
virtual BASE_SCREEN * GetScreen() const
Return a pointer to a BASE_SCREEN or one of its derivatives.
void DisplayUnitsMsg()
Display current unit pane in the status bar.
GAL_DISPLAY_OPTIONS_IMPL & GetGalDisplayOptions()
Return a reference to the gal rendering options used by GAL for rendering.
void SetCanvas(EDA_DRAW_PANEL_GAL *aPanel)
EDA_DRAW_FRAME(KIWAY *aKiway, wxWindow *aParent, FRAME_T aFrameType, const wxString &aTitle, const wxPoint &aPos, const wxSize &aSize, long aStyle, const wxString &aFrameName, const EDA_IU_SCALE &aIuScale)
bool LibraryFileBrowser(const wxString &aTitle, bool doOpen, wxFileName &aFilename, const wxString &wildcard, const wxString &ext, bool isDirectory, FILEDLG_HOOK_NEW_LIBRARY *aFileDlgHook=nullptr)
virtual void handleActivateEvent(wxActivateEvent &aEvent)
Handle a window activation event.
void UpdateStatusBar() override
Update the status bar information.
virtual EDA_DRAW_PANEL_GAL * GetCanvas() const
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual void DisplayGridMsg()
Display current grid size in the status bar.
EDA_DRAW_PANEL_GAL::GAL_TYPE loadCanvasTypeSetting()
Return the canvas type stored in the application settings.
wxArrayString m_findStringHistoryList
std::unique_ptr< EDA_SEARCH_DATA > m_findReplaceData
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
void StopDrawing()
Prevent the GAL canvas from further drawing until it is recreated or StartDrawing() is called.
KIGFX::VIEW_CONTROLS * GetViewControls() const
Return a pointer to the #VIEW_CONTROLS instance used in the panel.
void ForceRefresh()
Force a redraw.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
KIGFX::GAL * GetGAL() const
Return a pointer to the GAL instance used in the panel.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:110
EDA_ITEM * GetParent() const
Definition eda_item.h:112
A dialog which shows:
wxString GetTextSelection(int aColumn=0)
Return the selected text from aColumn in the wxListCtrl in the dialog.
void SetListLabel(const wxString &aLabel)
void AddExtraCheckbox(const wxString &aLabel, bool *aValuePtr)
Add a checkbox value to the dialog.
void GetExtraCheckboxValues()
Fills in the value pointers from the checkboxes after the dialog has run.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
void SetAxesColor(const COLOR4D &aAxesColor)
Set the axes color.
double GetWorldScale() const
Get the world scale.
Contains all the knowledge about how to draw graphical object onto any particular output device.
Definition painter.h:55
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
virtual void LoadColors(const COLOR_SETTINGS *aSettings)
static std::vector< KICAD_T > g_ScaledSelectionTypes
void Update(const KIGFX::VIEW_ITEM *aItem, int aUpdateFlags) const override
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
Definition sch_view.cpp:73
virtual void CenterOnCursor()=0
Set the viewport center to the current cursor position and warps the cursor to the screen center.
VECTOR2D GetCursorPosition() const
Return the current cursor position in world coordinates.
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
Definition view.cpp:301
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
Definition view.cpp:416
GAL * GetGAL() const
Return the GAL this view is using to draw graphical primitives.
Definition view.h:207
void RecacheAllItems()
Rebuild GAL display lists.
Definition view.cpp:1569
void UpdateAllItems(int aUpdateFlags)
Update all items in the view according to the given flags.
Definition view.cpp:1703
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition view.h:225
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
Definition view.cpp:681
void MarkTargetDirty(int aTarget)
Set or clear target 'dirty' flag.
Definition view.h:659
KISTATUSBAR is a wxStatusBar suitable for Kicad manager.
Definition kistatusbar.h:50
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition kiway.h:340
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr, bool aFromOtherThread=false)
Send aPayload to aDestination from aSource.
Definition kiway.cpp:486
Object used to load, save, search, and otherwise manipulate symbol library files.
LIB_SYMBOL * FindSymbol(const wxString &aName) const
Find LIB_SYMBOL by aName.
std::optional< wxString > GetLibraryDescription(const wxString &aNickname) const
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library tables.
std::vector< wxString > GetLibraryNames() const
Returns a list of library nicknames that are available (skips any that failed to load)
std::optional< wxString > GetFullURI(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, bool aSubstituted=false)
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:45
const UTF8 & GetLibItemName() const
Definition lib_id.h:98
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
Definition lib_id.h:83
Define a library symbol object.
Definition lib_symbol.h:119
static const wxString GetPinningSymbol()
Describe the page size and margins of a paper page on which to eventually print or plot.
Definition page_info.h:75
const VECTOR2D GetSizeIU(double aIUScale) const
Gets the page size in internal units.
Definition page_info.h:173
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition pgm_base.cpp:546
virtual BACKGROUND_JOBS_MONITOR & GetBackgroundJobMonitor() const
Definition pgm_base.h:129
virtual LIBRARY_MANAGER & GetLibraryManager() const
Definition pgm_base.h:125
The backing store for a PROJECT, in JSON format.
static SYMBOL_LIBRARY_ADAPTER * SymbolLibAdapter(PROJECT *aProject)
Accessor for project symbol library manager adapter.
static LEGACY_SYMBOL_LIBS * LegacySchLibs(PROJECT *aProject)
Returns the list of symbol libraries from a legacy (pre-5.x) design This is only used from the remapp...
@ SCH_LIB_SELECT
Definition project.h:218
@ SCH_LIB_PATH
Definition project.h:217
virtual PROJECT_FILE & GetProjectFile() const
Definition project.h:201
virtual void SetRString(RSTRING_T aStringId, const wxString &aString)
Store a "retained string", which is any session and project specific string identified in enum RSTRIN...
Definition project.cpp:355
virtual const wxString & GetRString(RSTRING_T aStringId)
Return a "retained string", which is any session and project specific string identified in enum RSTRI...
Definition project.cpp:366
virtual void RedrawScreen(const VECTOR2I &aCenterPoint, bool aWarpPointer)
SCH_BASE_FRAME(KIWAY *aKiway, wxWindow *aParent, FRAME_T aWindowType, const wxString &aTitle, const wxPoint &aPosition, const wxSize &aSize, long aStyle, const wxString &aFrameName)
void UpdateStatusBar() override
Update the status bar information.
void RemoveFromScreen(EDA_ITEM *aItem, SCH_SCREEN *aScreen) override
Remove an item from the screen (and view) aScreen is the screen the item is located on,...
SCH_RENDER_SETTINGS * GetRenderSettings()
void doCloseWindow() override
void ActivateGalCanvas() override
Use to start up the GAL drawing canvas.
const VECTOR2I GetPageSizeIU() const override
Works off of GetPageSettings() to return the size of the paper page in the internal units of this par...
void SetPageSettings(const PAGE_INFO &aPageSettings) override
void handleIconizeEvent(wxIconizeEvent &aEvent) override
Handle a window iconize event.
void OnSymChange(wxFileSystemWatcherEvent &aEvent)
Handler for Symbol change events.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
SYMBOL_EDITOR_SETTINGS * libeditconfig() const
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
APP_SETTINGS_BASE * GetViewerSettingsBase() const
void HighlightSelectionFilter(const SCH_SELECTION_FILTER_OPTIONS &aOptions)
void HardRedraw() override
Rebuild the GAL and redraws the screen.
DIALOG_SCH_FIND * m_findReplaceDialog
SCHEMATIC_SETTINGS m_base_frame_defaults
Only used by symbol_editor. Eeschema should be using the one inside the SCHEMATIC.
wxTimer m_watcherDebounceTimer
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
void ShowFindReplaceDialog(bool aReplace)
Run the Find or Find & Replace dialog.
SCH_SELECTION_TOOL * GetSelectionTool() override
void SyncView()
Mark all items for refresh.
std::unique_ptr< NL_SCHEMATIC_PLUGIN > m_spaceMouse
void GetLibraryItemsForListDialog(wxArrayString &aHeaders, std::vector< wxArrayString > &aItemsToDisplay)
std::unique_ptr< wxFileSystemWatcher > m_watcher
These are file watchers for the symbol library tables.
wxString SelectLibrary(const wxString &aDialogTitle, const wxString &aListLabel, const std::vector< std::pair< wxString, bool * > > &aExtraCheckboxes={})
Display a list of loaded libraries and allows the user to select a library.
virtual ~SCH_BASE_FRAME()
Needs to be in the cpp file to encode the sizeof() for std::unique_ptr.
const TITLE_BLOCK & GetTitleBlock() const override
void RefreshZoomDependentItems()
Mark selected items for refresh.
EESCHEMA_SETTINGS * eeconfig() const
void SetTitleBlock(const TITLE_BLOCK &aTitleBlock) override
PANEL_SCH_SELECTION_FILTER * m_selectionFilterPanel
LIB_SYMBOL * GetLibSymbol(const LIB_ID &aLibId, bool aUseCacheLib=false, bool aShowErrorMsg=false)
Load symbol from symbol library table.
virtual void UpdateItem(EDA_ITEM *aItem, bool isAddOrDelete=false, bool aUpdateRtree=false)
Mark an item for refresh.
void handleActivateEvent(wxActivateEvent &aEvent) override
Handle a window activation event.
COLOR_SETTINGS * GetColorSettings(bool aForceRefresh=false) const override
Returns a pointer to the active color theme settings.
void OnFindDialogClose()
Notification that the Find dialog has closed.
wxFileName m_watcherFileName
void setSymWatcher(const LIB_ID *aSymbol)
Creates (or removes) a watcher on the specified symbol library.
void AddToScreen(EDA_ITEM *aItem, SCH_SCREEN *aScreen=nullptr) override
Add an item to the screen (and view) aScreen is the screen the item is located on,...
const PAGE_INFO & GetPageSettings() const override
void ShowFindReplaceStatus(const wxString &aMsg, int aStatusTime)
COLOR4D GetDrawBgColor() const override
void OnSymChangeDebounceTimer(wxTimerEvent &aEvent)
Handler for the filesystem watcher debounce timer.
long long m_watcherTimestamp
void ClearFindReplaceStatus()
COLOR4D GetLayerColor(SCH_LAYER_ID aLayer)
Helper to retrieve a layer color from the global color settings.
KIGFX::SCH_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
virtual const wxString & GetText() const override
Return the string associated with the text object.
Definition sch_field.h:138
Handle actions specific to the schematic editor.
SCH_ITEM * GetLastFoundItem() const
A set of SCH_ITEMs (i.e., without duplicates).
Definition sch_group.h:48
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:165
const PAGE_INFO & GetPageSettings() const
Definition sch_screen.h:140
void SetTitleBlock(const TITLE_BLOCK &aTitleBlock)
Definition sch_screen.h:167
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
void SetPageSettings(const PAGE_INFO &aPageSettings)
Definition sch_screen.h:141
TITLE_BLOCK & GetTitleBlock()
Definition sch_screen.h:164
void Update(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Update aItem's bounding box in the tree.
SCH_SELECTION & GetSelection()
void OnIdle(wxIdleEvent &aEvent)
Zoom the screen to fit the bounding box for cross probing/selection sync.
Schematic symbol object.
Definition sch_symbol.h:75
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this symbol.
EDA_ITEM * Front() const
Definition selection.h:176
int Size() const
Returns the number of selected parts.
Definition selection.h:120
An interface to the global shared library manager that is schematic-specific and linked to one projec...
LIB_SYMBOL * LoadSymbol(const wxString &aNickname, const wxString &aName)
Load a LIB_SYMBOL having aName from the library given by aNickname.
Class to handle modifications to the symbol libraries.
bool CreateLibrary(const wxString &aFilePath, LIBRARY_TABLE_SCOPE aScope)
Create an empty library and adds it to the library table.
Hold the information shown in the lower right corner of a plot, printout, or editing view.
Definition title_block.h:38
TOOL_MANAGER * m_toolManager
bool ToolStackIsEmpty()
@ MODEL_RELOAD
Model changes (the sheet for a schematic)
Definition tool_base.h:76
wxString MessageTextFromValue(double aValue, bool aAddUnitLabel=true, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE) const
A lower-precision version of StringFromValue().
const char * c_str() const
Definition utf8.h:104
wxString wx_str() const
Definition utf8.cpp:41
const wxString ExpandEnvVarSubstitutions(const wxString &aString, const PROJECT *aProject)
Replace any environment variable & text variable references with their values.
Definition common.cpp:776
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
Definition confirm.cpp:274
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
Definition confirm.cpp:217
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
Definition confirm.cpp:192
This file is part of the common library.
#define _(s)
@ RECURSE
Definition eda_item.h:51
FRAME_T
The set of EDA_BASE_FRAME derivatives, typically stored in EDA_BASE_FRAME::m_Ident.
Definition frame_type.h:29
@ FRAME_SCH_SYMBOL_EDITOR
Definition frame_type.h:31
@ FRAME_SCH_VIEWER
Definition frame_type.h:32
@ FRAME_SCH
Definition frame_type.h:30
@ FRAME_SYMBOL_CHOOSER
Definition frame_type.h:33
static const std::string KiCadSymbolLibFileExtension
static wxString KiCadSymbolLibFileWildcard()
const wxChar *const traceLibWatch
Flag to enable debug output for library file watch refreshes.
SCH_LAYER_ID
Eeschema drawing layers.
Definition layer_ids.h:471
@ LAYER_SCHEMATIC_GRID_AXES
Definition layer_ids.h:509
@ LAYER_SCHEMATIC_BACKGROUND
Definition layer_ids.h:510
LIBRARY_TABLE_SCOPE
@ MAIL_REFRESH_SYMBOL
Definition mail_type.h:55
@ REPAINT
Item needs to be redrawn.
Definition view_item.h:54
@ ALL
All except INITIAL_ADD.
Definition view_item.h:55
@ TARGET_NONCACHED
Auxiliary rendering target (noncached)
Definition definitions.h:34
bool IsNetworkPath(const wxString &aPath)
Determines if a given path is a network shared file apth On Windows for example, any form of path is ...
long long TimestampDir(const wxString &aDirPath, const wxString &aFilespec)
Computes a hash of modification times and sizes for files matching a pattern.
Definition unix/io.cpp:123
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
Definition kicad_algo.h:96
Declaration of the NL_SCHEMATIC_PLUGIN class.
PGM_BASE & Pgm()
The global program "get" accessor.
see class PGM_BASE
LIB_SYMBOL * SchGetLibSymbol(const LIB_ID &aLibId, SYMBOL_LIBRARY_ADAPTER *aLibMgr, LEGACY_SYMBOL_LIB *aCacheLib, wxWindow *aParent, bool aShowErrorMsg)
Load symbol from symbol library table.
LIB_SYMBOL * SchGetLibSymbol(const LIB_ID &aLibId, SYMBOL_LIBRARY_ADAPTER *aLibMgr, LEGACY_SYMBOL_LIB *aCacheLib=nullptr, wxWindow *aParent=nullptr, bool aShowErrorMsg=false)
Load symbol from symbol library table.
Class to handle a set of SCH_ITEMs.
T * GetAppSettings(const char *aFilename)
KIWAY Kiway(KFCTL_STANDALONE)
wxString UnescapeString(const wxString &aSource)
std::vector< wxString > pinned_symbol_libs
@ ID_MAKE_NEW_LIBRARY
@ VALUE
Field Value of part, i.e. "3.3K".
wxLogTrace helper definitions.
@ SCH_TABLE_T
Definition typeinfo.h:161
@ SCH_SYMBOL_T
Definition typeinfo.h:168
@ SCH_TABLECELL_T
Definition typeinfo.h:162
@ SCH_FIELD_T
Definition typeinfo.h:146
@ SCH_LABEL_T
Definition typeinfo.h:163
@ SCH_SHEET_T
Definition typeinfo.h:171
@ SCH_SHAPE_T
Definition typeinfo.h:145
@ SCH_HIER_LABEL_T
Definition typeinfo.h:165
@ SCH_LABEL_LOCATE_ANY_T
Definition typeinfo.h:187
@ SCH_SHEET_PIN_T
Definition typeinfo.h:170
@ SCH_TEXT_T
Definition typeinfo.h:147
@ SCH_GLOBAL_LABEL_T
Definition typeinfo.h:164
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683
VECTOR2< double > VECTOR2D
Definition vector2d.h:682
Definition of file extensions used in Kicad.