80#include <wx/filedlg.h>
82#include <wx/richmsgdlg.h>
83#include <wx/stdpaths.h>
108 if( aFileSet.size() != 1 )
110 msg.Printf(
"Eeschema:%s() takes only a single filename.", __WXFUNCTION__ );
115 wxString fullFileName( aFileSet[0] );
116 wxFileName wx_filename( fullFileName );
118 if( !
Prj().IsNullProject() )
122 wxASSERT_MSG( wx_filename.IsAbsolute(), wxS(
"Path is not absolute!" ) );
127 if(
Prj().IsLockOverrideGranted() )
133 msg.Printf(
_(
"Schematic '%s' is already open by '%s' at '%s'." ), fullFileName,
150 wxFileName pro = fullFileName;
153 bool is_new = !wxFileName::IsFileReadable( fullFileName );
159 msg.Printf(
_(
"Schematic '%s' does not exist. Do you wish to create it?" ),
162 if( !
IsOK(
this, msg ) )
166 wxCommandEvent e( EDA_EVT_SCHEMATIC_CHANGING );
167 ProcessEventLocally( e );
177 SetStatusText( wxEmptyString );
181 statusBar->ClearWarningMessages(
"load" );
184 :
_(
"Load Schematic" ), 1,
192 if( differentProject )
194 if( !
Prj().IsNullProject() )
206 wxFileName legacyPro( pro );
211 if( !pro.Exists() && !legacyPro.Exists() && !( aCtl &
KICTL_CREATE ) )
221 std::unique_ptr<SCHEMATIC> newSchematic = std::make_unique<SCHEMATIC>( &
Prj() );
226 if( schFileType == SCH_IO_MGR::SCH_LEGACY )
248 rfn.MakeRelativeTo(
Prj().GetProjectPath() );
258 if( is_new || schFileType == SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN )
260 newSchematic->CreateDefaultScreens();
267 if( schFileType == SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN )
269 msg.Printf(
_(
"'%s' is not a KiCad schematic file.\nUse File -> Import for "
270 "non-KiCad schematic files." ),
273 progressReporter.Hide();
283 pi->SetProgressReporter( &progressReporter );
285 bool failedLoad =
false;
295 const std::vector<TOP_LEVEL_SHEET_INFO>& topLevelSheets = projectFile.
GetTopLevelSheets();
297 if( !topLevelSheets.empty() )
299 std::vector<SCH_SHEET*> loadedSheets;
304 wxFileName sheetFileName(
Prj().GetProjectPath(), sheetInfo.filename );
307 if( schFileType == SCH_IO_MGR::SCH_LEGACY )
310 wxString sheetPath = sheetFileName.GetFullPath();
312 if( !wxFileName::FileExists( sheetPath ) )
314 wxLogWarning( wxT(
"Top-level sheet file not found: %s" ), sheetPath );
318 SCH_SHEET* sheet = pi->LoadSchematicFile( sheetPath, newSchematic.get() );
324 if( sheetInfo.uuid !=
niluuid )
326 const_cast<KIID&
>( sheet->
m_Uuid ) = sheetInfo.uuid;
329 sheet->
SetName( sheetInfo.name );
330 loadedSheets.push_back( sheet );
333 wxS(
"Loaded top-level sheet '%s' (UUID %s) from %s" ),
340 if( !loadedSheets.empty() )
342 newSchematic->SetTopLevelSheets( loadedSheets );
347 wxS(
"Loaded multi-root schematic with no top-level sheets!" ) );
348 newSchematic->CreateDefaultScreens();
354 SCH_SHEET* rootSheet = pi->LoadSchematicFile( fullFileName, newSchematic.get() );
358 newSchematic->SetTopLevelSheets( { rootSheet } );
362 if(
SCH_SHEET* topSheet = newSchematic->GetTopLevelSheet() )
363 topSheet->SetName(
_(
"Root" ) );
366 wxS(
"Loaded schematic with root sheet UUID %s" ),
369 "After loading: Current sheet path='%s', size=%zu, empty=%d",
370 newSchematic->CurrentSheet().Path().AsString(),
371 newSchematic->CurrentSheet().size(),
372 newSchematic->CurrentSheet().empty() ? 1 : 0 );
376 newSchematic->CreateDefaultScreens();
382 if( !pi->GetError().IsEmpty() )
385 "occurred attempting to load hierarchical sheets." ),
391 newSchematic->CreateDefaultScreens();
392 msg.Printf(
_(
"Error loading schematic '%s'." ), fullFileName );
393 progressReporter.Hide();
400 newSchematic->CreateDefaultScreens();
401 msg.Printf(
_(
"Error loading schematic '%s'." ), fullFileName );
402 progressReporter.Hide();
407 catch(
const std::bad_alloc& )
409 newSchematic->CreateDefaultScreens();
410 msg.Printf(
_(
"Memory exhausted loading schematic '%s'." ), fullFileName );
411 progressReporter.Hide();
433 statusBar->AddWarningMessages(
"load", loadReporter.
GetMessages() );
435 msg.Printf(
_(
"Failed to load '%s'." ), fullFileName );
452 _(
"An error was found when loading the schematic that has "
453 "been automatically fixed. Please save the schematic to "
454 "repair the broken file or it may not be usable with other "
455 "versions of KiCad." ) );
464 statusBar->AddWarningMessages(
"load", loadReporter.
GetMessages() );
469 if( schFileType == SCH_IO_MGR::SCH_LEGACY )
472 for(
SCH_SCREEN* screen = schematic.GetFirst(); screen; screen = schematic.GetNext() )
474 std::vector<SCH_ITEM*> deleted;
476 for(
SCH_ITEM* item : screen->Items() )
481 std::unique_ptr<SCH_LINE> wire = std::make_unique<SCH_LINE>();
485 wire->SetEndPoint( entry->
GetEnd() );
487 screen->Append( wire.release() );
488 deleted.push_back( item );
493 screen->Remove( item );
498 if( schematic.HasNoFullyDefinedLibIds() )
509 wxArrayString libNames;
513 if( !libNames.IsEmpty() )
515 if(
eeconfig()->m_Appearance.show_illegal_symbol_lib_dialog )
517 wxRichMessageDialog invalidLibDlg(
519 _(
"Illegal entry found in project file symbol library list." ),
520 _(
"Project Load Warning" ),
521 wxOK | wxCENTER | wxICON_EXCLAMATION );
522 invalidLibDlg.ShowDetailedText(
523 _(
"Symbol libraries defined in the project file symbol library "
524 "list are no longer supported and will be removed.\n\n"
525 "This may cause broken symbol library links under certain "
527 invalidLibDlg.ShowCheckBox(
_(
"Do not show this dialog again." ) );
528 invalidLibDlg.ShowModal();
530 !invalidLibDlg.IsCheckBoxChecked();
539 wxFileName cacheFn( fullFileName );
540 cacheFn.SetName( cacheFn.GetName() +
"-cache" );
542 bool cacheExists = cacheFn.FileExists();
553 if( !(*table)->HasRow( nickname ) )
557 row.
SetURI( cacheFn.GetFullPath() );
563 std::vector<wxString> cacheSymbols = adapter->
GetSymbolNames( nickname );
564 std::set<wxString> cacheSymbolSet( cacheSymbols.begin(), cacheSymbols.end() );
566 if( !cacheSymbolSet.empty() )
568 std::vector<wxString> loadedLibs;
572 if( libName == nickname )
578 loadedLibs.push_back( libName );
581 for(
SCH_SCREEN* screen = schematic.GetFirst(); screen; screen = schematic.GetNext() )
589 if( cacheSymbolSet.count( fullLibName.
wx_str() ) )
591 bool alreadyExists =
false;
593 for(
const wxString& libName : loadedLibs )
597 alreadyExists =
true;
618 editor->RescueSymbolLibTableProject(
false );
628 wxFileName cacheFn = pro;
630 wxLogTrace(
traceAutoSave,
"[SetName dbg] cacheFn BEFORE path='%s' name='%s' full='%s' arg='%s'",
631 cacheFn.GetPath(), cacheFn.GetName(), cacheFn.GetFullPath(), cacheFn.GetName() +
"-cache" );
632 cacheFn.SetName( cacheFn.GetName() +
"-cache" );
633 wxLogTrace(
traceAutoSave,
"[SetName dbg] cacheFn AFTER path='%s' name='%s' full='%s'",
634 cacheFn.GetPath(), cacheFn.GetName(), cacheFn.GetFullPath() );
637 msg.Printf(
_(
"The project symbol library cache file '%s' was not found." ),
638 cacheFn.GetFullName() );
639 extMsg =
_(
"This can result in a broken schematic under certain conditions. "
640 "If the schematic does not have any missing symbols upon opening, "
641 "save it immediately before making any changes to prevent data "
642 "loss. If there are missing symbols, either manual recovery of "
643 "the schematic or recovery of the symbol cache library file and "
644 "reloading the schematic is required." );
647 wxOK | wxCANCEL | wxICON_EXCLAMATION | wxCENTER );
648 dlgMissingCache.SetExtendedMessage( extMsg );
649 dlgMissingCache.SetOKCancelLabels( KICAD_MESSAGE_DIALOG::ButtonLabel(
_(
"Load Without Cache File" ) ),
650 KICAD_MESSAGE_DIALOG::ButtonLabel(
_(
"Abort" ) ) );
652 if( dlgMissingCache.ShowModal() == wxID_CANCEL )
661 schematic.UpdateSymbolLinks( &loadReporter );
665 m_infoBar->ShowMessage(
_(
"This file was created by an older version of KiCad. "
666 "It will be converted to the new format when saved." ),
667 wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
671 schematic.ReplaceDuplicateTimeStamps();
673 for(
SCH_SCREEN* screen = schematic.GetFirst(); screen; screen = schematic.GetNext() )
674 screen->FixLegacyPowerSymbolMismatches();
681 SCH_SCREEN* first_screen = schematic.GetFirst();
685 first_screen = schematic.GetNext();
691 m_infoBar->ShowMessage(
_(
"This file was created by an older version of KiCad. "
692 "It will be converted to the new format when saved." ),
693 wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
696 for(
SCH_SCREEN* screen = schematic.GetFirst(); screen; screen = schematic.GetNext() )
709 for(
SCH_SCREEN* screen = schematic.GetFirst(); screen;
710 screen = schematic.GetNext() )
711 screen->FixLegacyPowerSymbolMismatches();
713 for(
SCH_SCREEN* screen = schematic.GetFirst(); screen; screen = schematic.GetNext() )
714 screen->MigrateSimModels();
726 "Before CheckForMissingSymbolInstances: Current sheet path='%s', size=%zu",
734 schematic.PruneOrphanedSymbolInstances(
Prj().GetProjectName(), sheetList );
735 schematic.PruneOrphanedSheetInstances(
Prj().GetProjectName(), sheetList );
742 "After SetScreen: Current sheet path='%s', size=%zu",
748 if(
Schematic().ConnectionGraph()->GetBusesNeedingMigration().size() > 0 )
757 progressReporter.
Report(
_(
"Updating connections..." ) );
762 if( schematic.HasSymbolFieldNamesWithWhiteSpace() )
764 m_infoBar->QueueShowMessage(
_(
"This schematic contains symbols that have leading "
765 "and/or trailing white space field names." ),
787 if( schFileType == SCH_IO_MGR::SCH_LEGACY )
805 wxCommandEvent changedEvt( EDA_EVT_SCHEMATIC_CHANGED );
806 ProcessEventLocally( changedEvt );
808 if( !differentProject )
819 wxCHECK2( listener,
continue );
823 wxWindow* win =
dynamic_cast<wxWindow*
>( listener );
826 win->HandleWindowEvent( e );
828 listener->SafelyProcessEvent( e );
836 if( fn.FileExists() && !fn.IsFileWritable() )
840 m_infoBar->ShowMessage(
_(
"Schematic is read only." ),
841 wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
870 wxString msg =
_(
"This operation replaces the contents of the current schematic, "
871 "which will be permanently lost.\n\n"
872 "Do you want to proceed?" );
874 if( !
IsOK(
this, msg ) )
880 wxString
path = wxPathOnly(
Prj().GetProjectFullName() );
882 wxString fileFiltersStr;
883 wxString allWildcardsStr;
885 for(
const SCH_IO_MGR::SCH_FILE_T&
fileType : SCH_IO_MGR::SCH_FILE_T_vector )
887 if(
fileType == SCH_IO_MGR::SCH_KICAD ||
fileType == SCH_IO_MGR::SCH_LEGACY )
900 if( !fileFiltersStr.IsEmpty() )
901 fileFiltersStr += wxChar(
'|' );
909 fileFiltersStr =
_(
"All supported formats" ) + wxS(
"|" ) + allWildcardsStr + wxS(
"|" )
912 wxFileDialog dlg(
this,
_(
"Import Schematic" ),
path, wxEmptyString, fileFiltersStr,
913 wxFD_OPEN | wxFD_FILE_MUST_EXIST );
916 dlg.SetCustomizeHook( importOptions );
920 if( dlg.ShowModal() == wxID_CANCEL )
940 wxFileName projectFn( dlg.GetPath() );
945 wxFileName fn = dlg.GetPath();
947 if( !fn.IsFileReadable() )
949 wxLogError(
_(
"Insufficient permissions to read file '%s'." ), fn.GetFullPath() );
953 SCH_IO_MGR::SCH_FILE_T pluginType = SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN;
955 for(
const SCH_IO_MGR::SCH_FILE_T&
fileType : SCH_IO_MGR::SCH_FILE_T_vector )
962 if( pi->CanReadSchematicFile( fn.GetFullPath() ) )
969 if( pluginType == SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN )
971 wxLogError(
_(
"No loader can read the specified file: '%s'." ), fn.GetFullPath() );
986 wxFileName schematicFileName;
987 wxFileName oldFileName;
992 wxCHECK( screen,
false );
995 if( aSavePath.IsEmpty() )
1000 oldFileName = schematicFileName;
1005 if( !schematicFileName.DirExists() )
1007 if( !wxMkdir( schematicFileName.GetPath() ) )
1009 msg.Printf(
_(
"Error saving schematic file '%s'.\n%s" ),
1010 schematicFileName.GetFullPath(),
1011 "Could not create directory: %s" + schematicFileName.GetPath() );
1021 wxFileName projectFile( schematicFileName );
1025 if( projectFile.FileExists() )
1033 wxLogTrace(
traceAutoSave, wxS(
"Saving file " ) + schematicFileName.GetFullPath() );
1035 if(
m_infoBar->GetMessageType() == WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE )
1039 schematicFileName.GetFullPath() );
1041 if( pluginType == SCH_IO_MGR::SCH_FILE_UNKNOWN )
1042 pluginType = SCH_IO_MGR::SCH_KICAD;
1048 if( schematicFileName.FileExists() )
1053 pi->SaveSchematicFile( schematicFileName.GetFullPath(), aSheet, &
Schematic() );
1058 msg.Printf(
_(
"Error saving schematic file '%s'.\n%s" ),
1059 schematicFileName.GetFullPath(),
1070 msg.Printf(
_(
"File '%s' saved." ), screen->
GetFileName() );
1071 SetStatusText( msg, 0 );
1079 const wxFileName& aOldRoot,
const wxFileName& aNewRoot,
1080 bool aSaveCopy,
bool aCopySubsheets,
bool aIncludeExternSheets,
1081 std::unordered_map<SCH_SCREEN*, wxString>& aFilenameMap,
1082 wxString& aErrorMsg )
1086 for(
size_t i = 0; i < aScreens.
GetCount(); i++ )
1090 wxCHECK2( screen,
continue );
1097 if( !src.IsAbsolute() )
1098 src.MakeAbsolute( aOldRoot.GetPath() );
1100 bool internalSheet = src.GetPath().StartsWith( aOldRoot.GetPath() );
1102 if( aCopySubsheets && ( internalSheet || aIncludeExternSheets ) )
1104 wxFileName dest = src;
1106 if( internalSheet && dest.MakeRelativeTo( aOldRoot.GetPath() ) )
1107 dest.MakeAbsolute( aNewRoot.GetPath() );
1109 dest.Assign( aNewRoot.GetPath(), dest.GetFullName() );
1112 wxS(
"Moving schematic from '%s' to '%s'." ),
1114 dest.GetFullPath() );
1116 if( !dest.DirExists() && !dest.Mkdir() )
1118 aErrorMsg.Printf(
_(
"Folder '%s' could not be created.\n\n"
1119 "Make sure you have write permissions and try again." ),
1125 aFilenameMap[screen] = dest.GetFullPath();
1132 aFilenameMap[screen] = wxString();
1140 if( !sheet.Last()->IsTopLevelSheet() )
1141 sheet.MakeFilePathRelativeToParentSheet();
1153 bool success =
true;
1154 bool updateFileHistory =
false;
1155 bool createNewProject =
false;
1156 bool copySubsheets =
false;
1157 bool includeExternSheets =
false;
1161 wxFileName fn = fileName;
1165 std::unordered_map<SCH_SCREEN*, wxString> filenameMap;
1168 if(
Prj().IsNullProject() || aSaveAs )
1171 wxCHECK(
Kiface().IsSingle() || aSaveAs,
false );
1173 wxFileName newFileName;
1174 wxFileName savePath(
Prj().GetProjectFullName() );
1176 if( !savePath.IsOk() || !savePath.IsDirWritable() )
1180 if( !savePath.IsOk() || !savePath.IsDirWritable() )
1184 if( savePath.HasExt() )
1187 savePath.SetName( wxEmptyString );
1189 wxFileDialog dlg(
this,
_(
"Schematic Files" ), savePath.GetPath(), savePath.GetFullName(),
1191 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1196 if(
Kiface().IsSingle() || aSaveAs )
1198 dlg.SetCustomizeHook( newProjectHook );
1203 if( dlg.ShowModal() == wxID_CANCEL )
1208 if( ( !newFileName.DirExists() && !newFileName.Mkdir() ) ||
1209 !newFileName.IsDirWritable() )
1211 msg.Printf(
_(
"Folder '%s' could not be created.\n\n"
1212 "Make sure you have write permissions and try again." ),
1213 newFileName.GetPath() );
1216 wxOK | wxICON_EXCLAMATION | wxCENTER );
1218 dlgBadPath.ShowModal();
1233 updateFileHistory =
true;
1241 copySubsheets, includeExternSheets, filenameMap, msg ) )
1244 wxOK | wxICON_EXCLAMATION | wxCENTER );
1246 dlgBadFilePath.ShowModal();
1250 else if( !fn.FileExists() )
1253 updateFileHistory =
true;
1264 if( filenameMap.empty() || !saveCopy )
1266 for(
size_t i = 0; i < screens.
GetCount(); i++ )
1271 wxArrayString overwrittenFiles;
1272 wxArrayString lockedFiles;
1274 for(
size_t i = 0; i < screens.
GetCount(); i++ )
1278 wxCHECK2( screen,
continue );
1281 wxFileName tmpFn = filenameMap[screen];
1286 if( tmpFn.FileExists() && !tmpFn.IsFileWritable() )
1287 lockedFiles.Add( tmpFn.GetFullPath() );
1294 if( tmpFn.FileExists() )
1295 overwrittenFiles.Add( tmpFn.GetFullPath() );
1298 if( !lockedFiles.IsEmpty() )
1300 for(
const wxString& lockedFile : lockedFiles )
1305 msg +=
"\n" + lockedFile;
1308 wxRichMessageDialog dlg(
this, wxString::Format(
_(
"Failed to save %s." ),
1310 _(
"Locked File Warning" ),
1311 wxOK | wxICON_WARNING | wxCENTER );
1312 dlg.SetExtendedMessage(
_(
"You do not have write permissions to:\n\n" ) + msg );
1318 if( !overwrittenFiles.IsEmpty() )
1320 for(
const wxString& overwrittenFile : overwrittenFiles )
1323 msg = overwrittenFile;
1325 msg +=
"\n" + overwrittenFile;
1328 wxRichMessageDialog dlg(
this,
_(
"Saving will overwrite existing files." ),
1329 _(
"Save Warning" ),
1330 wxOK | wxCANCEL | wxCANCEL_DEFAULT | wxCENTER |
1331 wxICON_EXCLAMATION );
1332 dlg.ShowDetailedText(
_(
"The following files will be overwritten:\n\n" ) + msg );
1333 dlg.SetOKCancelLabels( KICAD_MESSAGE_DIALOG::ButtonLabel(
_(
"Overwrite Files" ) ),
1334 KICAD_MESSAGE_DIALOG::ButtonLabel(
_(
"Abort Project Save" ) ) );
1336 if( dlg.ShowModal() == wxID_CANCEL )
1342 std::vector<wxString> savedSheetPaths;
1344 for(
size_t i = 0; i < screens.
GetCount(); i++ )
1348 wxCHECK2( screen,
continue );
1351 wxFileName tmpFn = filenameMap[screen];
1355 updateFileHistory =
true;
1363 if( !sheetFileName.IsOk()
1368 sheet->
SetFileName( sheetFileName.GetFullPath() );
1372 filenameMap[screen] = tmpFn.GetFullPath();
1384 if( sheets.size() == 1 )
1390 if( !saveCopy && tmpFn.GetFullPath() != screen->
GetFileName() )
1395 if( savedThisSheet )
1396 savedSheetPaths.push_back( tmpFn.GetFullPath() );
1398 success &= savedThisSheet;
1410 if( aSaveAs && success )
1413 if( updateFileHistory )
1424 wxCHECK2( sheet,
continue );
1429 sheets.emplace_back( std::make_pair( sheet->
m_Uuid, sheet->
GetName() ) );
1433 wxASSERT( filenameMap.count(
Schematic().RootScreen() ) );
1434 wxFileName projectPath( filenameMap.at(
Schematic().RootScreen() ) );
1437 if(
Prj().IsNullProject() || ( aSaveAs && !saveCopy ) )
1442 else if( saveCopy && createNewProject )
1455 if( success && !
Prj().IsNullProject() )
1468 if( !
Kiface().IsSingle() )
1478 if(
m_infoBar->GetMessageType() == WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE )
1486 const std::map<std::string, UTF8>* aProperties )
1488 wxFileName filename( aFileName );
1489 wxFileName newfilename;
1490 SCH_IO_MGR::SCH_FILE_T
fileType = (SCH_IO_MGR::SCH_FILE_T) aFileType;
1492 wxCommandEvent changingEvt( EDA_EVT_SCHEMATIC_CHANGING );
1493 ProcessEventLocally( changingEvt );
1496 statusBar->ClearWarningMessages(
"load" );
1501 std::unique_ptr<SCHEMATIC> newSchematic = std::make_unique<SCHEMATIC>( &
Prj() );
1505 case SCH_IO_MGR::SCH_ALTIUM:
1506 case SCH_IO_MGR::SCH_CADSTAR_ARCHIVE:
1507 case SCH_IO_MGR::SCH_EAGLE:
1508 case SCH_IO_MGR::SCH_LTSPICE:
1509 case SCH_IO_MGR::SCH_EASYEDA:
1510 case SCH_IO_MGR::SCH_EASYEDAPRO:
1511 case SCH_IO_MGR::SCH_PADS:
1512 case SCH_IO_MGR::SCH_GEDA:
1513 case SCH_IO_MGR::SCH_DIPTRACE:
1517 wxCHECK_MSG( aFileName.IsEmpty() || filename.IsAbsolute(),
false,
1518 wxS(
"Import schematic: path is not absolute!" ) );
1529 this, std::placeholders::_1 ) );
1532 if(
eeconfig()->m_System.show_import_issues )
1537 pi->SetProgressReporter( &progressReporter );
1539 SCH_SHEET* loadedSheet = pi->LoadSchematicFile( aFileName, newSchematic.get(),
nullptr,
1547 bool loadedIsTopLevel = std::find( topLevelSheets.begin(), topLevelSheets.end(), loadedSheet )
1548 != topLevelSheets.end();
1549 bool loadedIsVirtualRoot = loadedSheet == &
Schematic().
Root()
1554 if( !loadedIsTopLevel && !loadedIsVirtualRoot )
1569 newfilename.SetPath(
Prj().GetProjectPath() );
1570 newfilename.SetName(
Prj().GetProjectName() );
1576 topSheet->SetFileName( newfilename.GetFullName() );
1581 progressReporter.
Report(
_(
"Updating connections..." ) );
1603 wxString msg = wxString::Format(
_(
"Error loading schematic '%s'." ), aFileName );
1606 msg.Printf(
_(
"Failed to load '%s'." ), aFileName );
1609 catch(
const std::exception& exc )
1614 wxString msg = wxString::Format(
_(
"Unhandled exception occurred loading schematic "
1615 "'%s'." ), aFileName );
1618 msg.Printf(
_(
"Failed to load '%s'." ), aFileName );
1639 wxCommandEvent e( EDA_EVT_SCHEMATIC_CHANGED );
1640 ProcessEventLocally( e );
1644 wxCHECK2( listener,
continue );
1648 wxWindow* win =
dynamic_cast<wxWindow*
>( listener );
1651 win->HandleWindowEvent( e );
1653 listener->SafelyProcessEvent( e );
1659 statusBar->AddWarningMessages(
"load", loadReporter.
GetMessages() );
1683 if( simFrame && !simFrame->Close() )
1686 if( screen->IsContentModified() )
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static TOOL_ACTION zoomFitScreen
void SetVirtualPageNumber(int aPageNumber)
static wxString m_DrawingSheetFileName
the name of the drawing sheet file, or empty to use the default drawing sheet
void SetContentModified(bool aModified=true)
Class DIALOG_HTML_REPORTER.
WX_HTML_REPORT_BOX * m_Reporter
static std::vector< IMPORT_PROJECT_DESC > RunModal(wxWindow *aParent, const std::vector< IMPORT_PROJECT_DESC > &aProjectDesc)
Create and show a dialog (modal) and returns the data from it after completion.
Handle the graphic items list to draw/plot the frame and title block.
static DS_DATA_MODEL & GetTheInstance()
Return the instance of DS_DATA_MODEL used in the application.
void LoadWindowState(const wxString &aFileName)
void CheckForAutosaveFiles(const wxString &aProjectPath, const std::vector< wxString > &aExtensions)
Check for autosave files newer than their source files for the given project.
virtual void ClearUndoRedoList()
Clear the undo and redo list using ClearUndoORRedoList()
SETTINGS_MANAGER * GetSettingsManager() const
wxTimer * m_autoSaveTimer
void UpdateFileHistory(const wxString &FullFileName, FILE_HISTORY *aFileHistory=nullptr)
Update the list of recently opened files.
wxString GetMruPath() const
bool IsWritable(const wxFileName &aFileName, bool aVerbose=true)
Check if aFileName can be written.
std::unique_ptr< LOCKFILE > m_file_checker
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
void RefreshCanvas() override
bool LockFile(const wxString &aFileName)
Mark a schematic file as being in use.
A base class for most all the KiCad significant classes used in schematics and boards.
EE_TYPE OfType(KICAD_T aType) const
bool GetCreateNewProject() const
Gets the selected state of the copy subsheets option.
bool GetCopySubsheets() const
Gets the selected state of the include external sheets option.
bool IsAttachedToDialog() const
bool GetIncludeExternSheets() const
Gets if this hook has attached controls to a dialog box.
bool GetShowIssues() const
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()
virtual const wxString Problem() const
what was the problem?
APP_SETTINGS_BASE * KifaceSettings() const
bool IsSingle() const
Is this KIFACE running under single_top?
wxString AsString() const
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
virtual KIFACE * KiFACE(FACE_T aFaceId, bool doLoad=true)
Return the KIFACE* given a FACE_T.
LOCAL_HISTORY & LocalHistory()
Return the LOCAL_HISTORY associated with this KIWAY.
A collection of #SYMBOL_LIB objects.
static void GetLibNamesAndPaths(PROJECT *aProject, wxString *aPaths, wxArrayString *aNames=nullptr)
static void SetLibNamesAndPaths(PROJECT *aProject, const wxString &aPaths, const wxArrayString &aNames)
std::optional< LIB_STATUS > GetLibraryStatus(const wxString &aNickname) const
Returns the status of a loaded library, or nullopt if the library hasn't been loaded (yet)
std::optional< LIBRARY_TABLE * > ProjectTable() const
Retrieves the project library table for this adapter type, or nullopt if one doesn't exist.
std::vector< wxString > GetLibraryNames() const
Returns a list of library nicknames that are available (skips any that failed to load)
void SetNickname(const wxString &aNickname)
void SetType(const wxString &aType)
void SetDescription(const wxString &aDescription)
void SetURI(const wxString &aUri)
A logical library item identifier and consists of various portions much like a URI.
int SetLibItemName(const UTF8 &aLibItemName)
Override the library item name portion of the LIB_ID to aLibItemName.
int SetLibNickname(const UTF8 &aLibNickname)
Override the logical library name portion of the LIB_ID to aLibNickname.
bool RunRegisteredSaversAndCommit(const wxString &aProjectPath, const wxString &aTitle, const wxString &aTagFileType=wxEmptyString)
Run all registered savers and, if any staged changes differ from HEAD, create a commit.
bool Init(const wxString &aProjectPath)
Initialize the local history repository for the given project path.
void RemoveAutosaveFiles(const wxString &aProjectPath) const
Remove every autosave file under the project at aProjectPath regardless of which source it shadowed.
static REPORTER & GetInstance()
static wxString GetDefaultUserProjectsPath()
Gets the default path we point users to create projects.
void PreloadDesignBlockLibraries(KIWAY *aKiway)
Starts a background job to preload the global and project design block libraries.
A small class to help profiling.
void Show(std::ostream &aStream=std::cerr)
Print the elapsed time (in a suitable unit) to a stream.
virtual void Report(const wxString &aMessage) override
Display aMessage in the progress bar dialog.
bool KeepRefreshing(bool aWait=false) override
Update the UI dialog.
Plugin class for import plugins that support choosing a project.
The backing store for a PROJECT, in JSON format.
std::vector< FILE_INFO_PAIR > & GetSheets()
std::vector< TOP_LEVEL_SHEET_INFO > & GetTopLevelSheets()
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...
virtual void SetReadOnly(bool aReadOnly=true)
virtual const wxString GetProjectFullName() const
Return the full path and name of the project.
virtual void SetElem(PROJECT::ELEM aIndex, _ELEM *aElem)
virtual const wxString GetProjectName() const
Return the short name of the project.
virtual PROJECT_FILE & GetProjectFile() const
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.
Holds all the data relating to one schematic.
void Reset()
Initialize this schematic to a blank one, unloading anything existing.
void ResolveERCExclusionsPostUpdate()
Update markers to match recorded exclusions.
void LoadVariants()
This is a throw away method for variant testing.
int FixupJunctionsAfterImport()
Add junctions to this schematic where required.
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
void SetProject(PROJECT *aPrj)
CONNECTION_GRAPH * ConnectionGraph() const
SCH_SCREEN * RootScreen() const
Helper to retrieve the screen of the root sheet.
void SetTopLevelSheets(const std::vector< SCH_SHEET * > &aSheets)
std::vector< SCH_SHEET * > GetTopLevelSheets() const
Get the list of top-level sheets.
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
void SyncView()
Mark all items for refresh.
EESCHEMA_SETTINGS * eeconfig() const
Class for a bus to bus entry.
VECTOR2I GetPosition() const override
void DisplaySheet(SCH_SCREEN *aScreen)
bool IsContentModified() const override
Get if the current schematic has been modified but not saved.
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag and update other data struc...
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.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
void SetScreen(BASE_SCREEN *aScreen) override
bool AskToSaveChanges()
Check if any of the screens has unsaved changes and asks the user whether to save or drop them.
friend class SCH_EDITOR_CONTROL
void UpdateVariantSelectionCtrl(const wxArrayString &aVariantNames)
Update the variant name control on the main toolbar.
std::vector< wxEvtHandler * > m_schematicChangeListeners
void CreateDefaultScreens()
PANEL_REMOTE_SYMBOL * m_remoteSymbolPane
SCH_SHEET_PATH & GetCurrentSheet() const
void RecalculateConnections(SCH_COMMIT *aCommit, SCH_CLEANUP_FLAGS aCleanupFlags, PROGRESS_REPORTER *aProgressReporter=nullptr)
Generate the connection data for the entire schematic hierarchy.
void ProjectChanged() override
Notification event that the project has changed.
SCHEMATIC & Schematic() const
void updateTitle()
Set the main window title bar text.
void SetSchematic(SCHEMATIC *aSchematic)
bool saveSchematicFile(SCH_SHEET *aSheet, const wxString &aSavePath)
Save aSheet to a schematic file.
bool LoadProjectSettings()
Load the KiCad project file (*.pro) settings specific to Eeschema.
void RefreshNetNavigator(const NET_NAVIGATOR_ITEM_DATA *aSelection=nullptr)
void RecomputeIntersheetRefs()
Update the schematic's page reference map for all global labels, and refresh the labels so that they ...
void UpdateHierarchyNavigator(bool aRefreshNetNavigator=true, bool aClear=false)
Update the hierarchy navigation tree and history.
bool importFile(const wxString &aFileName, int aFileType, const std::map< std::string, UTF8 > *aProperties=nullptr)
Load the given filename but sets the path to the current project path.
void LoadDrawingSheet()
Load the drawing sheet file.
void SetSheetNumberAndCount()
Set the m_ScreenNumber and m_NumberOfScreens members for screens.
void ClearRepeatItemsList()
Clear the list of items which are to be repeated with the insert key.
wxGenericTreeCtrl * m_netNavigator
void initScreenZoom()
Initialize the zoom value of the current screen and mark the screen as zoom-initialized.
void UpdateItem(EDA_ITEM *aItem, bool isAddOrDelete=false, bool aUpdateRtree=false) override
Mark an item for refresh.
wxString GetCurrentFileName() const override
Get the full filename + path of the currently opened file in the frame.
void TestDanglingEnds()
Test all of the connectable objects in the schematic for unused connection points.
bool SaveProject(bool aSaveAs=false)
Save the currently-open schematic (including its hierarchy) and associated project.
void saveProjectSettings() override
Save any design-related project settings associated with this frame.
static const wxString ShowType(SCH_FILE_T aFileType)
Return a brief name for a plugin, given aFileType enum.
static SCH_FILE_T GuessPluginTypeFromSchPath(const wxString &aSchematicPath, int aCtl=0)
Return a plugin type given a schematic using the file extension of aSchematicPath.
Base class for any item which can be embedded within the SCHEMATIC container class,...
Container class that holds multiple SCH_SCREEN objects in a hierarchy.
SCH_SCREEN * GetScreen(unsigned int aIndex) const
void BuildClientSheetPathList()
Build the list of sheet paths sharing a screen for each screen in use.
SCH_SHEET * GetSheet(unsigned int aIndex) const
void ClearDrawingState()
Clear the state flags of all the items in the screen.
std::vector< SCH_SHEET_PATH > & GetClientSheetPaths()
Return the number of times this screen is used.
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.
EE_RTREE & Items()
Get the full RTree, usually for iterating.
const wxString & GetFileName() const
void UpdateLocalLibSymbolLinks()
Initialize the LIB_SYMBOL reference for each SCH_SYMBOL found in this schematic with the local projec...
void SetFileName(const wxString &aFileName)
Set the file name for this screen to aFileName.
const std::vector< SCH_SYMBOL_INSTANCE > & GetSymbolInstances() const
int GetFileFormatVersionAtLoad() const
const std::vector< SCH_SHEET_INSTANCE > & GetSheetInstances() const
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
void UpdateSheetInstanceData(const std::vector< SCH_SHEET_INSTANCE > &aSheetInstances)
Update all of the sheet instance information using aSheetInstances.
void SetInitialPageNumbers()
Set initial sheet page numbers.
bool AllSheetPageNumbersEmpty() const
Check all of the sheet instance for empty page numbers.
bool IsModified() const
Check the entire hierarchy for any modifications.
void UpdateSymbolInstanceData(const std::vector< SCH_SYMBOL_INSTANCE > &aSymbolInstances)
Update all of the symbol instance information using aSymbolInstances.
void CheckForMissingSymbolInstances(const wxString &aProjectName)
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
void UpdateAllScreenReferences() const
Update all the symbol references for this sheet path.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
void SetFileName(const wxString &aFilename)
wxString GetFileName() const
Return the filename corresponding to this sheet.
void SetName(const wxString &aName)
SCH_SCREEN * GetScreen() const
bool IsVirtualRootSheet() const
void SetLibId(const LIB_ID &aName)
const LIB_ID & GetLibId() const override
void SaveProjectAs(const wxString &aFullPath, PROJECT *aProject=nullptr)
Set the currently loaded project path and saves it (pointers remain valid).
void SaveProjectCopy(const wxString &aFullPath, PROJECT *aProject=nullptr)
Save a copy of the current project under the given path.
bool SaveProject(const wxString &aFullPath=wxEmptyString, PROJECT *aProject=nullptr)
Save a loaded project.
bool LoadProject(const wxString &aFullPath, bool aSetActive=true)
Load a project or sets up a new project with a specified path.
bool UnloadProject(PROJECT *aProject, bool aSave=true)
Save, unload and unregister the given PROJECT.
The SIMULATOR_FRAME holds the main user-interface for running simulations.
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.
std::vector< wxString > GetSymbolNames(const wxString &aNickname, SYMBOL_TYPE aType=SYMBOL_TYPE::ALL_SYMBOLS)
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
Temporarily disable a window, and then re-enable on destruction.
static void ResolvePossibleSymlinks(wxFileName &aFilename)
void Flush()
Build the HTML messages page.
bool HasMessage() const override
Returns true if any messages were reported.
Multi-thread safe progress reporter dialog, intended for use of tasks that parallel reporting back of...
A wrapper for reporting to a wxString object.
const wxString & GetMessages() const
wxString EnsureFileExtension(const wxString &aFilename, const wxString &aExtension)
It's annoying to throw up nag dialogs when the extension isn't right.
bool AskOverrideLock(wxWindow *aParent, const wxString &aMessage)
Display a dialog indicating the file is already open, with an option to reset the lock.
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
void DisplayInfoMessage(wxWindow *aParent, const wxString &aMessage, const wxString &aExtraInfo)
Display an informational message box with aMessage.
bool HandleUnsavedChanges(wxWindow *aParent, const wxString &aMessage, const std::function< bool()> &aSaveFunction)
Display a dialog with Save, Cancel and Discard Changes buttons.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
#define KICAD_MESSAGE_DIALOG
static bool empty(const wxTextEntryBase *aCtrl)
bool PrepareSaveAsFiles(SCHEMATIC &aSchematic, SCH_SCREENS &aScreens, const wxFileName &aOldRoot, const wxFileName &aNewRoot, bool aSaveCopy, bool aCopySubsheets, bool aIncludeExternSheets, std::unordered_map< SCH_SCREEN *, wxString > &aFilenameMap, wxString &aErrorMsg)
static const std::string LegacySchematicFileExtension
static const std::string ProjectFileExtension
static const std::string LegacyProjectFileExtension
static const std::string KiCadSchematicFileExtension
static const std::string LegacySymbolLibFileExtension
static wxString KiCadSchematicFileWildcard()
const wxChar *const traceSchCurrentSheet
Flag to enable debug output of current sheet tracking in the schematic editor.
const wxChar *const traceAutoSave
Flag to enable auto save feature debug tracing.
const wxChar *const tracePathsAndFiles
Flag to enable path and file name debug output.
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
#define KICTL_CREATE
caller thinks requested project files may not exist.
#define KICTL_KICAD_ONLY
chosen file is from KiCad according to user
PGM_BASE & Pgm()
The global program "get" accessor.
#define SEXPR_SCHEMATIC_FILE_VERSION
Schematic file version.
Definition of the SCH_SHEET_PATH and SCH_SHEET_LIST classes for Eeschema.
KIWAY Kiway(KFCTL_STANDALONE)
std::vector< FAB_LAYER_COLOR > dummy
MODEL3D_FORMAT_TYPE fileType(const char *aFileName)
bool show_import_issues
Stored value for "show import issues" when importing non-KiCad designs to this application.
bool show_illegal_symbol_lib_dialog
Container that describes file type info.
std::vector< std::string > m_FileExtensions
Filter used for file pickers if m_IsFile is true.
bool m_CanRead
Whether the IO can read this file type.
wxString FileFilter() const
Implement a participant in the KIWAY alchemy.
virtual void PreloadLibraries(KIWAY *aKiway)
Information about a top-level schematic sheet.
std::vector< std::vector< std::string > > table
wxLogTrace helper definitions.
wxString formatWildcardExt(const wxString &aWildcard)
Format wildcard extension to support case sensitive file dialogs.
Definition of file extensions used in Kicad.