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 );
119 wxASSERT_MSG( wx_filename.IsAbsolute(), wxS(
"Path is not absolute!" ) );
124 if(
Prj().IsLockOverrideGranted() )
130 msg.Printf(
_(
"Schematic '%s' is already open by '%s' at '%s'." ), fullFileName,
147 wxFileName pro = fullFileName;
150 bool is_new = !wxFileName::IsFileReadable( fullFileName );
156 msg.Printf(
_(
"Schematic '%s' does not exist. Do you wish to create it?" ),
159 if( !
IsOK(
this, msg ) )
163 wxCommandEvent e( EDA_EVT_SCHEMATIC_CHANGING );
164 ProcessEventLocally( e );
174 SetStatusText( wxEmptyString );
178 statusBar->ClearWarningMessages(
"load" );
181 :
_(
"Load Schematic" ), 1,
189 if( differentProject )
191 if( !
Prj().IsNullProject() )
203 wxFileName legacyPro( pro );
208 if( !pro.Exists() && !legacyPro.Exists() && !( aCtl &
KICTL_CREATE ) )
218 std::unique_ptr<SCHEMATIC> newSchematic = std::make_unique<SCHEMATIC>( &
Prj() );
222 bool isNonKicadImport = schFileType != SCH_IO_MGR::SCH_KICAD
223 && schFileType != SCH_IO_MGR::SCH_LEGACY
224 && schFileType != SCH_IO_MGR::SCH_FILE_UNKNOWN;
230 if( isNonKicadImport )
232 progressReporter.Hide();
233 importFile( fullFileName, schFileType,
nullptr );
237 if( schFileType == SCH_IO_MGR::SCH_LEGACY )
259 rfn.MakeRelativeTo(
Prj().GetProjectPath() );
269 if( is_new || schFileType == SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN )
271 newSchematic->CreateDefaultScreens();
278 if( schFileType == SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN )
282 msg.Printf(
_(
"'%s' is not a KiCad schematic file.\nUse File -> Import for "
283 "non-KiCad schematic files." ),
289 msg.Printf(
_(
"'%s' is not a recognised schematic format." ), fullFileName );
292 progressReporter.Hide();
302 pi->SetProgressReporter( &progressReporter );
304 bool failedLoad =
false;
314 const std::vector<TOP_LEVEL_SHEET_INFO>& topLevelSheets = projectFile.
GetTopLevelSheets();
316 if( !topLevelSheets.empty() )
318 std::vector<SCH_SHEET*> loadedSheets;
323 wxFileName sheetFileName(
Prj().GetProjectPath(), sheetInfo.filename );
326 if( schFileType == SCH_IO_MGR::SCH_LEGACY )
329 wxString sheetPath = sheetFileName.GetFullPath();
331 if( !wxFileName::FileExists( sheetPath ) )
333 wxLogWarning( wxT(
"Top-level sheet file not found: %s" ), sheetPath );
337 SCH_SHEET* sheet = pi->LoadSchematicFile( sheetPath, newSchematic.get() );
343 if( sheetInfo.uuid !=
niluuid )
345 const_cast<KIID&
>( sheet->
m_Uuid ) = sheetInfo.uuid;
348 sheet->
SetName( sheetInfo.name );
349 loadedSheets.push_back( sheet );
352 wxS(
"Loaded top-level sheet '%s' (UUID %s) from %s" ),
359 if( !loadedSheets.empty() )
361 newSchematic->SetTopLevelSheets( loadedSheets );
366 wxS(
"Loaded multi-root schematic with no top-level sheets!" ) );
367 newSchematic->CreateDefaultScreens();
373 SCH_SHEET* rootSheet = pi->LoadSchematicFile( fullFileName, newSchematic.get() );
377 newSchematic->SetTopLevelSheets( { rootSheet } );
381 if(
SCH_SHEET* topSheet = newSchematic->GetTopLevelSheet() )
382 topSheet->SetName(
_(
"Root" ) );
385 wxS(
"Loaded schematic with root sheet UUID %s" ),
388 "After loading: Current sheet path='%s', size=%zu, empty=%d",
389 newSchematic->CurrentSheet().Path().AsString(),
390 newSchematic->CurrentSheet().size(),
391 newSchematic->CurrentSheet().empty() ? 1 : 0 );
395 newSchematic->CreateDefaultScreens();
401 if( !pi->GetError().IsEmpty() )
404 "occurred attempting to load hierarchical sheets." ),
410 newSchematic->CreateDefaultScreens();
411 msg.Printf(
_(
"Error loading schematic '%s'." ), fullFileName );
412 progressReporter.Hide();
419 newSchematic->CreateDefaultScreens();
420 msg.Printf(
_(
"Error loading schematic '%s'." ), fullFileName );
421 progressReporter.Hide();
426 catch(
const std::bad_alloc& )
428 newSchematic->CreateDefaultScreens();
429 msg.Printf(
_(
"Memory exhausted loading schematic '%s'." ), fullFileName );
430 progressReporter.Hide();
452 statusBar->AddWarningMessages(
"load", loadReporter.
GetMessages() );
454 msg.Printf(
_(
"Failed to load '%s'." ), fullFileName );
466 bool repairedPageNumbers =
false;
476 if( sheetList.
IsModified() || repairedPageNumbers )
479 _(
"An error was found when loading the schematic that has "
480 "been automatically fixed. Please save the schematic to "
481 "repair the broken file or it may not be usable with other "
482 "versions of KiCad." ) );
488 statusBar->AddWarningMessages(
"load", loadReporter.
GetMessages() );
493 if( schFileType == SCH_IO_MGR::SCH_LEGACY )
498 std::vector<SCH_ITEM*> deleted;
500 for(
SCH_ITEM* item : screen->Items() )
505 std::unique_ptr<SCH_LINE> wire = std::make_unique<SCH_LINE>();
509 wire->SetEndPoint( entry->
GetEnd() );
511 screen->Append( wire.release() );
512 deleted.push_back( item );
517 screen->Remove( item );
533 wxArrayString libNames;
537 if( !libNames.IsEmpty() )
539 if(
eeconfig()->m_Appearance.show_illegal_symbol_lib_dialog )
541 wxRichMessageDialog invalidLibDlg(
543 _(
"Illegal entry found in project file symbol library list." ),
544 _(
"Project Load Warning" ),
545 wxOK | wxCENTER | wxICON_EXCLAMATION );
546 invalidLibDlg.ShowDetailedText(
547 _(
"Symbol libraries defined in the project file symbol library "
548 "list are no longer supported and will be removed.\n\n"
549 "This may cause broken symbol library links under certain "
551 invalidLibDlg.ShowCheckBox(
_(
"Do not show this dialog again." ) );
552 invalidLibDlg.ShowModal();
554 !invalidLibDlg.IsCheckBoxChecked();
563 wxFileName cacheFn( fullFileName );
564 cacheFn.SetName( cacheFn.GetName() +
"-cache" );
566 bool cacheExists = cacheFn.FileExists();
577 if( !(*table)->HasRow( nickname ) )
581 row.
SetURI( cacheFn.GetFullPath() );
587 std::vector<KI_ERROR> libErrors;
592 statusBar->AddWarningMessages(
"load", libErrors );
599 editor->RescueSymbolLibTableProject(
false );
609 wxFileName cacheFn = pro;
611 wxLogTrace(
traceAutoSave,
"[SetName dbg] cacheFn BEFORE path='%s' name='%s' full='%s' arg='%s'",
612 cacheFn.GetPath(), cacheFn.GetName(), cacheFn.GetFullPath(), cacheFn.GetName() +
"-cache" );
613 cacheFn.SetName( cacheFn.GetName() +
"-cache" );
614 wxLogTrace(
traceAutoSave,
"[SetName dbg] cacheFn AFTER path='%s' name='%s' full='%s'",
615 cacheFn.GetPath(), cacheFn.GetName(), cacheFn.GetFullPath() );
618 msg.Printf(
_(
"The project symbol library cache file '%s' was not found." ),
619 cacheFn.GetFullName() );
620 extMsg =
_(
"This can result in a broken schematic under certain conditions. "
621 "If the schematic does not have any missing symbols upon opening, "
622 "save it immediately before making any changes to prevent data "
623 "loss. If there are missing symbols, either manual recovery of "
624 "the schematic or recovery of the symbol cache library file and "
625 "reloading the schematic is required." );
628 wxOK | wxCANCEL | wxICON_EXCLAMATION | wxCENTER );
629 dlgMissingCache.SetExtendedMessage( extMsg );
630 dlgMissingCache.SetOKCancelLabels( KICAD_MESSAGE_DIALOG::ButtonLabel(
_(
"Load Without Cache File" ) ),
631 KICAD_MESSAGE_DIALOG::ButtonLabel(
_(
"Abort" ) ) );
633 if( dlgMissingCache.ShowModal() == wxID_CANCEL )
646 m_infoBar->ShowMessage(
_(
"This file was created by an older version of KiCad. "
647 "It will be converted to the new format when saved." ),
648 wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
655 screen->FixLegacyPowerSymbolMismatches();
666 first_screen = schematic.
GetNext();
672 m_infoBar->ShowMessage(
_(
"This file was created by an older version of KiCad. "
673 "It will be converted to the new format when saved." ),
674 wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
692 screen->FixLegacyPowerSymbolMismatches();
695 screen->MigrateSimModels();
707 "Before CheckForMissingSymbolInstances: Current sheet path='%s', size=%zu",
724 if( repairedPageNumbers )
728 "After SetScreen: Current sheet path='%s', size=%zu",
734 const bool nativeNeedsFixup = schFileType == SCH_IO_MGR::SCH_KICAD
738 if( schFileType == SCH_IO_MGR::SCH_LEGACY || nativeNeedsFixup )
743 progressReporter.
Report(
_(
"Updating connections..." ) );
747 dummy.Push(
_(
"Schematic Cleanup" ),
757 schFileVersion,
Schematic().ConnectionGraph()->GetBusesNeedingMigration().size() ) )
759 progressReporter.Hide();
769 progressReporter.Show();
773 dummy.Push(
_(
"Schematic Cleanup" ),
779 m_infoBar->QueueShowMessage(
_(
"This schematic contains symbols that have leading "
780 "and/or trailing white space field names." ),
809 wxCommandEvent changedEvt( EDA_EVT_SCHEMATIC_CHANGED );
810 ProcessEventLocally( changedEvt );
812 if( !differentProject )
823 wxCHECK2( listener,
continue );
827 wxWindow* win =
dynamic_cast<wxWindow*
>( listener );
830 win->HandleWindowEvent( e );
832 listener->SafelyProcessEvent( e );
840 if( fn.FileExists() && !fn.IsFileWritable() )
844 m_infoBar->ShowMessage(
_(
"Schematic is read only." ),
845 wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
874 wxString msg =
_(
"This operation replaces the contents of the current schematic, "
875 "which will be permanently lost.\n\n"
876 "Do you want to proceed?" );
878 if( !
IsOK(
this, msg ) )
884 wxString
path = wxPathOnly(
Prj().GetProjectFullName() );
886 wxString fileFiltersStr;
887 wxString allWildcardsStr;
889 for(
const SCH_IO_MGR::SCH_FILE_T&
fileType : SCH_IO_MGR::SCH_FILE_T_vector )
891 if(
fileType == SCH_IO_MGR::SCH_KICAD ||
fileType == SCH_IO_MGR::SCH_LEGACY )
904 if( !fileFiltersStr.IsEmpty() )
905 fileFiltersStr += wxChar(
'|' );
913 fileFiltersStr =
_(
"All supported formats" ) + wxS(
"|" ) + allWildcardsStr + wxS(
"|" )
916 wxFileDialog dlg(
this,
_(
"Import Schematic" ),
path, wxEmptyString, fileFiltersStr,
917 wxFD_OPEN | wxFD_FILE_MUST_EXIST );
920 dlg.SetCustomizeHook( importOptions );
924 if( dlg.ShowModal() == wxID_CANCEL )
944 wxFileName projectFn( dlg.GetPath() );
949 wxFileName fn = dlg.GetPath();
951 if( !fn.IsFileReadable() )
953 wxLogError(
_(
"Insufficient permissions to read file '%s'." ), fn.GetFullPath() );
957 SCH_IO_MGR::SCH_FILE_T pluginType = SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN;
959 for(
const SCH_IO_MGR::SCH_FILE_T&
fileType : SCH_IO_MGR::SCH_FILE_T_vector )
966 if( pi->CanReadSchematicFile( fn.GetFullPath() ) )
973 if( pluginType == SCH_IO_MGR::SCH_FILE_T::SCH_FILE_UNKNOWN )
975 wxLogError(
_(
"No loader can read the specified file: '%s'." ), fn.GetFullPath() );
990 wxFileName schematicFileName;
991 wxFileName oldFileName;
996 wxCHECK( screen,
false );
999 if( aSavePath.IsEmpty() )
1004 oldFileName = schematicFileName;
1009 if( !schematicFileName.DirExists() )
1011 if( !wxMkdir( schematicFileName.GetPath() ) )
1013 msg.Printf(
_(
"Error saving schematic file '%s'.\n%s" ),
1014 schematicFileName.GetFullPath(),
1015 "Could not create directory: %s" + schematicFileName.GetPath() );
1025 wxFileName projectFile( schematicFileName );
1029 if( projectFile.FileExists() )
1037 wxLogTrace(
traceAutoSave, wxS(
"Saving file " ) + schematicFileName.GetFullPath() );
1039 if(
m_infoBar->GetMessageType() == WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE )
1043 schematicFileName.GetFullPath() );
1045 if( pluginType == SCH_IO_MGR::SCH_FILE_UNKNOWN )
1046 pluginType = SCH_IO_MGR::SCH_KICAD;
1052 if( schematicFileName.FileExists() )
1057 pi->SaveSchematicFile( schematicFileName.GetFullPath(), aSheet, &
Schematic() );
1062 msg.Printf(
_(
"Error saving schematic file '%s'.\n%s" ),
1063 schematicFileName.GetFullPath(),
1074 msg.Printf(
_(
"File '%s' saved." ), screen->
GetFileName() );
1075 SetStatusText( msg, 0 );
1083 const wxFileName& aOldRoot,
const wxFileName& aNewRoot,
1084 bool aSaveCopy,
bool aCopySubsheets,
bool aIncludeExternSheets,
1085 std::unordered_map<SCH_SCREEN*, wxString>& aFilenameMap,
1086 wxString& aErrorMsg )
1090 for(
size_t i = 0; i < aScreens.
GetCount(); i++ )
1094 wxCHECK2( screen,
continue );
1106 if( !src.IsAbsolute() )
1107 src.MakeAbsolute( aOldRoot.GetPath() );
1109 bool internalSheet = src.GetPath().StartsWith( aOldRoot.GetPath() );
1111 if( aCopySubsheets && ( internalSheet || aIncludeExternSheets ) )
1113 wxFileName dest = src;
1115 if( internalSheet && dest.MakeRelativeTo( aOldRoot.GetPath() ) )
1116 dest.MakeAbsolute( aNewRoot.GetPath() );
1118 dest.Assign( aNewRoot.GetPath(), dest.GetFullName() );
1121 wxS(
"Moving schematic from '%s' to '%s'." ),
1123 dest.GetFullPath() );
1125 if( !dest.DirExists() && !dest.Mkdir() )
1127 aErrorMsg.Printf(
_(
"Folder '%s' could not be created.\n\n"
1128 "Make sure you have write permissions and try again." ),
1134 aFilenameMap[screen] = dest.GetFullPath();
1141 aFilenameMap[screen] = wxString();
1149 if( !sheet.Last()->IsTopLevelSheet() )
1150 sheet.MakeFilePathRelativeToParentSheet();
1162 bool success =
true;
1163 bool updateFileHistory =
false;
1164 bool createNewProject =
false;
1165 bool copySubsheets =
false;
1166 bool includeExternSheets =
false;
1170 wxFileName fn = fileName;
1174 std::unordered_map<SCH_SCREEN*, wxString> filenameMap;
1177 if(
Prj().IsNullProject() || aSaveAs )
1180 wxCHECK(
Kiface().IsSingle() || aSaveAs,
false );
1182 wxFileName newFileName;
1183 wxFileName savePath(
Prj().GetProjectFullName() );
1185 if( !savePath.IsOk() || !savePath.IsDirWritable() )
1189 if( !savePath.IsOk() || !savePath.IsDirWritable() )
1193 if( savePath.HasExt() )
1196 savePath.SetName( wxEmptyString );
1198 wxFileDialog dlg(
this,
_(
"Schematic Files" ), savePath.GetPath(), savePath.GetFullName(),
1200 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1205 if(
Kiface().IsSingle() || aSaveAs )
1207 dlg.SetCustomizeHook( newProjectHook );
1212 if( dlg.ShowModal() == wxID_CANCEL )
1217 if( ( !newFileName.DirExists() && !newFileName.Mkdir() ) ||
1218 !newFileName.IsDirWritable() )
1220 msg.Printf(
_(
"Folder '%s' could not be created.\n\n"
1221 "Make sure you have write permissions and try again." ),
1222 newFileName.GetPath() );
1225 wxOK | wxICON_EXCLAMATION | wxCENTER );
1227 dlgBadPath.ShowModal();
1242 updateFileHistory =
true;
1250 copySubsheets, includeExternSheets, filenameMap, msg ) )
1253 wxOK | wxICON_EXCLAMATION | wxCENTER );
1255 dlgBadFilePath.ShowModal();
1259 else if( !fn.FileExists() )
1262 updateFileHistory =
true;
1273 if( filenameMap.empty() || !saveCopy )
1275 for(
size_t i = 0; i < screens.
GetCount(); i++ )
1280 wxArrayString overwrittenFiles;
1281 wxArrayString lockedFiles;
1283 for(
size_t i = 0; i < screens.
GetCount(); i++ )
1287 wxCHECK2( screen,
continue );
1290 wxFileName tmpFn = filenameMap[screen];
1295 if( tmpFn.FileExists() && !tmpFn.IsFileWritable() )
1296 lockedFiles.Add( tmpFn.GetFullPath() );
1303 if( tmpFn.FileExists() )
1304 overwrittenFiles.Add( tmpFn.GetFullPath() );
1307 if( !lockedFiles.IsEmpty() )
1309 for(
const wxString& lockedFile : lockedFiles )
1314 msg +=
"\n" + lockedFile;
1317 wxRichMessageDialog dlg(
this, wxString::Format(
_(
"Failed to save %s." ),
1319 _(
"Locked File Warning" ),
1320 wxOK | wxICON_WARNING | wxCENTER );
1321 dlg.SetExtendedMessage(
_(
"You do not have write permissions to:\n\n" ) + msg );
1327 if( !overwrittenFiles.IsEmpty() )
1329 for(
const wxString& overwrittenFile : overwrittenFiles )
1332 msg = overwrittenFile;
1334 msg +=
"\n" + overwrittenFile;
1337 wxRichMessageDialog dlg(
this,
_(
"Saving will overwrite existing files." ),
1338 _(
"Save Warning" ),
1339 wxOK | wxCANCEL | wxCANCEL_DEFAULT | wxCENTER |
1340 wxICON_EXCLAMATION );
1341 dlg.ShowDetailedText(
_(
"The following files will be overwritten:\n\n" ) + msg );
1342 dlg.SetOKCancelLabels( KICAD_MESSAGE_DIALOG::ButtonLabel(
_(
"Overwrite Files" ) ),
1343 KICAD_MESSAGE_DIALOG::ButtonLabel(
_(
"Abort Project Save" ) ) );
1345 if( dlg.ShowModal() == wxID_CANCEL )
1351 std::vector<wxString> savedSheetPaths;
1353 for(
size_t i = 0; i < screens.
GetCount(); i++ )
1357 wxCHECK2( screen,
continue );
1360 wxFileName tmpFn = filenameMap[screen];
1364 updateFileHistory =
true;
1372 if( !sheetFileName.IsOk()
1377 sheet->
SetFileName( sheetFileName.GetFullPath() );
1381 filenameMap[screen] = tmpFn.GetFullPath();
1393 if( sheets.size() == 1 )
1399 if( !saveCopy && tmpFn.GetFullPath() != screen->
GetFileName() )
1404 if( savedThisSheet )
1405 savedSheetPaths.push_back( tmpFn.GetFullPath() );
1407 success &= savedThisSheet;
1421 if( updateFileHistory )
1432 wxCHECK2( sheet,
continue );
1437 sheets.emplace_back( std::make_pair( sheet->
m_Uuid, sheet->
GetName() ) );
1441 wxASSERT( filenameMap.count(
Schematic().RootScreen() ) );
1442 wxFileName projectPath( filenameMap.at(
Schematic().RootScreen() ) );
1445 if(
Prj().IsNullProject() || ( aSaveAs && !saveCopy ) )
1450 else if( saveCopy && createNewProject )
1463 if( success && !
Prj().IsNullProject() )
1478 if( !
Kiface().IsSingle() )
1486 sheet.LastScreen()->SetVirtualPageNumber( sheet.GetVirtualPageNumber() );
1498 if(
m_infoBar->GetMessageType() == WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE )
1503 wxString backupMsg = backupReporter.
GetMessages();
1504 m_infoBar->ShowMessageFor( backupMsg.Trim(), 10000, wxICON_WARNING );
1512 const std::map<std::string, UTF8>* aProperties )
1514 wxFileName filename( aFileName );
1515 wxFileName newfilename;
1516 SCH_IO_MGR::SCH_FILE_T
fileType = (SCH_IO_MGR::SCH_FILE_T) aFileType;
1518 wxCommandEvent changingEvt( EDA_EVT_SCHEMATIC_CHANGING );
1519 ProcessEventLocally( changingEvt );
1522 statusBar->ClearWarningMessages(
"load" );
1527 std::unique_ptr<SCHEMATIC> newSchematic = std::make_unique<SCHEMATIC>( &
Prj() );
1531 case SCH_IO_MGR::SCH_ALTIUM:
1532 case SCH_IO_MGR::SCH_CADSTAR_ARCHIVE:
1533 case SCH_IO_MGR::SCH_EAGLE:
1534 case SCH_IO_MGR::SCH_LTSPICE:
1535 case SCH_IO_MGR::SCH_EASYEDA:
1536 case SCH_IO_MGR::SCH_EASYEDAPRO:
1537 case SCH_IO_MGR::SCH_EASYEDAPRO_V3:
1538 case SCH_IO_MGR::SCH_PADS:
1539 case SCH_IO_MGR::SCH_GEDA:
1540 case SCH_IO_MGR::SCH_DIPTRACE:
1541 case SCH_IO_MGR::SCH_PCAD:
1542 case SCH_IO_MGR::SCH_ORCAD:
1546 wxCHECK_MSG( aFileName.IsEmpty() || filename.IsAbsolute(),
false,
1547 wxS(
"Import schematic: path is not absolute!" ) );
1558 this, std::placeholders::_1 ) );
1561 if(
eeconfig()->m_System.show_import_issues )
1566 pi->SetProgressReporter( &progressReporter );
1568 SCH_SHEET* loadedSheet = pi->LoadSchematicFile( aFileName, newSchematic.get(),
nullptr,
1582 bool loadedIsTopLevel = std::find( topLevelSheets.begin(), topLevelSheets.end(), loadedSheet )
1583 != topLevelSheets.end();
1584 bool loadedIsVirtualRoot = loadedSheet == &
Schematic().
Root()
1589 if( !loadedIsTopLevel && !loadedIsVirtualRoot )
1599 std::vector<wxString> sourceFpLibs;
1614 const wxString embeddedPrefix = wxS(
"kicad-embed://" );
1617 if( drawingSheetName.StartsWith( embeddedPrefix ) )
1620 drawingSheetName.Mid( embeddedPrefix.length() ) );
1623 if( !embeddedWorksheet
1635 newfilename.SetPath(
Prj().GetProjectPath() );
1636 newfilename.SetName(
Prj().GetProjectName() );
1642 topSheet->SetFileName( newfilename.GetFullName() );
1647 progressReporter.
Report(
_(
"Updating connections..." ) );
1669 wxString msg = wxString::Format(
_(
"Error loading schematic '%s'." ), aFileName );
1672 msg.Printf(
_(
"Failed to load '%s'." ), aFileName );
1675 catch(
const std::exception& exc )
1680 wxString msg = wxString::Format(
_(
"Unhandled exception occurred loading schematic "
1681 "'%s'." ), aFileName );
1684 msg.Printf(
_(
"Failed to load '%s'." ), aFileName );
1708 wxCommandEvent e( EDA_EVT_SCHEMATIC_CHANGED );
1709 ProcessEventLocally( e );
1713 wxCHECK2( listener,
continue );
1717 wxWindow* win =
dynamic_cast<wxWindow*
>( listener );
1720 win->HandleWindowEvent( e );
1722 listener->SafelyProcessEvent( e );
1728 statusBar->AddWarningMessages(
"load", loadReporter.
GetMessages() );
1752 if( simFrame && !simFrame->Close() )
1755 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.
static bool ShouldPrompt(int aFileFormatVersionAtLoad, size_t aBusesNeedingMigration)
Multiple differently-named labels on a single bus subgraph were only permitted before KiCad 6....
static DS_DATA_MODEL & GetTheInstance()
Return the instance of DS_DATA_MODEL used in the application.
static const wxString & EmptyLayoutName()
Return the reserved drawing-sheet name that marks a design as deliberately having no sheet,...
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.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A base class for most all the KiCad significant classes used in schematics and boards.
EE_TYPE OfType(KICAD_T aType) const
EMBEDDED_FILE * GetEmbeddedFile(const wxString &aName) const
Returns the embedded file with the given name or nullptr if it does not exist.
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?
void RefreshDrawingSheetPageInfo()
Update the drawing sheet proxy's page number and first-page flag from the current edit frame state.
wxString AsString() const
KISTATUSBAR is a wxStatusBar suitable for Kicad manager.
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< LIBRARY_TABLE * > ProjectTable() const
Retrieves the project library table for this adapter type, or nullopt if one doesn't exist.
void SetNickname(const wxString &aNickname)
void SetType(const wxString &aType)
void SetDescription(const wxString &aDescription)
void SetURI(const wxString &aUri)
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.
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.
virtual bool HasMessage() const
Returns true if any messages were reported.
wxString m_SchDrawingSheetFileName
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.
SCHEMATIC_SETTINGS & Settings() const
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
void SetProject(PROJECT *aPrj)
EMBEDDED_FILES * GetEmbeddedFiles() override
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)
Replace the top level sheets, rebuilding the hierarchy and connectivity around them.
std::vector< SCH_SHEET * > GetTopLevelSheets() const
Get the list of top-level sheets.
int FixupJunctionsAfterImport(const std::function< void(SCH_LINE *, SCH_LINE *)> &aOnSplit={})
Add junctions to this schematic where required.
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
KIGFX::SCH_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
void DisplaySheet(SCH_SCREEN *aScreen)
bool IsContentModified() const override
Get if the current schematic has been modified but not saved.
void RecalculateConnections(SCH_COMMIT *aCommit, SCH_CLEANUP_FLAGS aCleanupFlags, PROGRESS_REPORTER *aProgressReporter=nullptr, bool aCleanupDone=false)
Generate the connection data for the entire schematic hierarchy.
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 SetCurrentVariant(const wxString &aVariantName)
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
SCHEMATIC * m_schematic
The currently loaded schematic.
SCH_SHEET_PATH & GetCurrentSheet() const
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 UpdateSymbolLinks(REPORTER *aReporter=nullptr)
Initialize the LIB_SYMBOL reference for each SCH_SYMBOL found in the full schematic.
void PruneOrphanedSheetInstances(const wxString &aProjectName, const SCH_SHEET_LIST &aValidSheetPaths)
void BuildClientSheetPathList()
Build the list of sheet paths sharing a screen for each screen in use.
bool HasSymbolFieldNamesWithWhiteSpace() const
void PruneOrphanedSymbolInstances(const wxString &aProjectName, const SCH_SHEET_LIST &aValidSheetPaths)
bool HasNoFullyDefinedLibIds()
Test all of the schematic symbols to see if all LIB_ID objects library nickname is not set.
SCH_SHEET * GetSheet(unsigned int aIndex) const
int ReplaceDuplicateTimeStamps()
Test all sheet and symbol objects in the schematic for duplicate time stamps and replaces them as nec...
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.
bool RepairPageNumbers()
Assign valid page numbers to sheet paths whose stored page number is missing or collides with an earl...
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 SaveProjectAs(const wxString &aFullPath, PROJECT *aProject=nullptr)
Set the currently loaded project path and saves it (pointers remain valid).
bool SaveProject(const wxString &aFullPath=wxEmptyString, PROJECT *aProject=nullptr)
Save a loaded project.
bool SaveProjectCopy(const wxString &aFullPath, PROJECT *aProject=nullptr)
Save a copy of the current project under the given path.
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.
bool TriggerBackupIfNeeded(REPORTER &aReporter) const
Call BackupProject() if a new backup is needed according to the current backup policy.
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...
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_CANCELLED()
#define KICTL_CREATE
caller thinks requested project files may not exist.
#define KICTL_KICAD_ONLY
chosen file is from KiCad according to user
int ReconcileLegacyCacheSymbols(SYMBOL_LIBRARY_ADAPTER &aAdapter, const wxString &aCacheNickname, SCH_SCREENS &aScreens, std::vector< KI_ERROR > &aErrors)
Point symbols that are only available in a legacy project cache library at that cache.
void ReadFootprintProps(const std::map< std::string, UTF8 > *aProps, wxString &aCacheNickname, std::vector< wxString > &aSourceFpLibs)
Read the footprint-import coordination properties out of a properties map.
PGM_BASE & Pgm()
The global program "get" accessor.
#define SKIP_CONNECTIVITY
#define DELETE_REMOVED_ITEMS
#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.
SYMBOL_IMPORT_RECONCILE_RESULT ReconcileImportedSymbols(SCH_IO &aPlugin, SCHEMATIC &aSchematic, PROJECT &aProject, const wxString &aSchematicPath, const std::map< std::string, UTF8 > *aProperties, REPORTER &aReporter)
Reconcile aSchematic against the definitions aPlugin retained while loading it.
wxLogTrace helper definitions.
wxString formatWildcardExt(const wxString &aWildcard)
Format wildcard extension to support case sensitive file dialogs.
Definition of file extensions used in Kicad.