88#include <wx/stdpaths.h>
90#include <wx/filedlg.h>
91#include <wx/txtstrm.h>
92#include <wx/wfstream.h>
93#include <wx/zipstrm.h>
99#define USE_INSTRUMENTATION 0
115 std::vector<IO_BASE::IO_FILE_DESC> descriptions;
128 wxCHECK( pi,
false );
135 descriptions.emplace_back( desc );
138 wxString fileFiltersStr;
139 std::vector<std::string> allExtensions;
140 std::set<wxString> allWildcardsSet;
144 if( !fileFiltersStr.IsEmpty() )
145 fileFiltersStr += wxChar(
'|' );
147 fileFiltersStr += desc.FileFilter();
149 for(
const std::string& ext : desc.m_FileExtensions )
151 allExtensions.emplace_back( ext );
156 wxString allWildcardsStr;
158 for(
const wxString& wildcard : allWildcardsSet )
159 allWildcardsStr << wildcard;
167 fileFiltersStr =
_(
"All supported formats" ) + wxT(
"|" ) + allWildcardsStr + wxT(
"|" )
171 wxFileName fileName( *aFileName );
175 if( fileName.FileExists() )
177 path = fileName.GetPath();
178 name = fileName.GetFullName();
191 wxFileDialog dlg( aParent, kicadFormat ?
_(
"Open Board File" ) :
_(
"Import Non KiCad Board File" ),
192 path,
name, fileFiltersStr, wxFD_OPEN | wxFD_FILE_MUST_EXIST );
197 dlg.SetCustomizeHook( importOptions );
201 if( dlg.ShowModal() == wxID_OK )
203 *aFileName = dlg.GetPath();
204 aParent->
SetMruPath( wxFileName( dlg.GetPath() ).GetPath() );
230 wxFileName fn = *aFileName;
234 wxFileDialog dlg( aParent,
_(
"Save Board File As" ), fn.GetPath(), fn.GetFullName(), wildcard,
235 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
241 dlg.SetCustomizeHook( newProjectHook );
245 if( dlg.ShowModal() != wxID_OK )
248 *aFileName = dlg.GetPath();
254 *aCreateProject =
true;
264 if( !filename.IsEmpty() )
266 if( !wxFileName::IsFileReadable( filename ) )
286 if( !
Kiface().IsSingle() )
290 wxString fileName =
m_frame->Prj().AbsolutePath(
m_frame->GetBoard()->GetFileName() );
293 m_frame->OpenProjectFiles( std::vector<wxString>( 1, fileName ), open_ctl );
306 m_frame->OpenProjectFiles( std::vector<wxString>( 1, fileName ), open_ctl );
314 wxFileName fn =
m_frame->Prj().AbsolutePath(
m_frame->GetBoard()->GetFileName() );
316 if( !
IsOK(
m_frame, wxString::Format(
_(
"Revert '%s' to last version saved?" ), fn.GetFullPath() ) ) )
319 m_frame->GetScreen()->SetContentModified(
false );
332 if( !
Kiface().IsSingle() )
335 if( !
m_frame->CloseFootprintFieldsTableDialog() )
338 if(
m_frame->IsContentModified() )
340 wxFileName fileName =
m_frame->GetBoard()->GetFileName();
341 wxString saveMsg =
_(
"Current board will be closed, save changes to '%s' before "
347 return m_frame->SaveBoard();
353 else if( !
m_frame->GetBoard()->IsEmpty() )
355 if( !
IsOK(
m_frame,
_(
"Current Board will be closed. Continue?" ) ) )
359 m_frame->SaveProjectLocalSettings();
361 m_frame->GetBoard()->ClearProject();
364 if( !
m_frame->Clear_Pcb(
false ) )
367 m_frame->LoadProjectSettings();
381 if( !
GetBoard()->GetFileName().IsEmpty() )
395 wxFileName::SplitPath(
GetBoard()->GetFileName(),
nullptr,
nullptr, &orig_name,
nullptr );
397 if( orig_name.IsEmpty() )
400 wxFileName savePath(
Prj().GetProjectFullName() );
402 if( !savePath.IsOk() || !savePath.IsDirWritable() )
406 if( !savePath.IsOk() || !savePath.IsDirWritable() )
411 wxString filename = fn.GetFullPath();
412 bool createProject =
false;
413 bool success =
false;
423 success =
SavePcbFile( filename, aSaveAs, createProject );
444 for(
int i = 0; i < collector.
GetCount(); i++ )
448 int itemWidth =
static_cast<PCB_SHAPE*
>( collector[i] )->GetWidth();
450 if( edgeWidth != -1 && edgeWidth != itemWidth )
453 edgeWidth = std::max( edgeWidth, itemWidth );
457 edgeWidth = itemWidth;
462 if( mixed && aShowUserMsg )
466 _(
"If the zones on this board are refilled the Copper Edge "
467 "Clearance setting will be used (see Board Setup > Design "
468 "Rules > Constraints).\n This may result in different fills "
469 "from previous KiCad versions which used the line thicknesses "
470 "of the board boundary on the Edge Cuts layer." ) );
473 return std::max( 0, edgeWidth / 2 );
480 if( aFileSet.size() != 1 )
482 DisplayError(
this, wxString::Format(
"Pcbnew:%s() takes a single filename", __func__ ) );
486 wxString fullFileName( aFileSet[0] );
487 wxFileName wx_filename( fullFileName );
494 wxASSERT_MSG( wx_filename.IsAbsolute(), wxT(
"Path is not absolute!" ) );
496 std::unique_ptr<LOCKFILE> lock = std::make_unique<LOCKFILE>( fullFileName );
501 if(
Prj().IsLockOverrideGranted() )
503 lock->OverrideLock();
507 msg.Printf(
_(
"PCB '%s' is already open by '%s' at '%s'." ),
508 wx_filename.GetFullName(),
510 lock->GetHostname() );
515 lock->OverrideLock();
534 wxFileName pro = fullFileName;
537 bool is_new = !wxFileName::IsFileReadable( fullFileName );
545 msg.Printf(
_(
"PCB '%s' does not exist. Do you wish to create it?" ), fullFileName );
547 if( !
IsOK(
this, msg ) )
555 statusBar->ClearWarningMessages(
"load" );
572 progressReporter.Hide();
633 BOARD* loadedBoard =
nullptr;
634 bool failedLoad =
false;
637 std::vector<std::unique_ptr<FOOTPRINT>> importedLibFootprints;
641 std::map<std::string, UTF8> props;
650#if USE_INSTRUMENTATION
658 ?
static_cast<REPORTER*
>( &loadReporter )
669 for(
FOOTPRINT* fp : aPlugin.GetImportedCachedLibraryFootprints() )
670 importedLibFootprints.emplace_back( fp );
687 const auto layerMapCallback =
688 [
this](
const std::vector<INPUT_LAYER_DESC>& aLayers )
693 mappable_pi->RegisterCallback( layerMapCallback );
700 const auto chooseProjectCallback =
701 [
this](
const std::vector<IMPORT_PROJECT_DESC>& aProjects )
706 chooser_pi->RegisterCallback( chooseProjectCallback );
709 aPlugin.SetQueryUserCallback(
710 [&]( wxString aTitle,
int aIcon, wxString aMessage,
711 wxString aAction ) ->
bool
713 KIDIALOG dlg(
nullptr, aMessage, aTitle,
714 wxOK | wxCANCEL | aIcon );
716 if( !aAction.IsEmpty() )
717 dlg.SetOKLabel( aAction );
725 std::unique_ptr<BOARD> loaded =
730 std::optional<std::map<wxString, wxString>> netNames =
738 THROW_IO_ERROR(
_(
"Cannot apply imported net-name map to the board." ) );
741 loadedBoard = loaded.release();
743#if USE_INSTRUMENTATION
745 printf(
"PCB_IO::Load(): %u usecs\n", stopTime - startTime );
750 msg.Printf(
_(
"Error loading PCB '%s'." ), fullFileName );
751 progressReporter.Hide();
763 msg.Printf(
_(
"Error loading PCB '%s'." ), fullFileName );
764 progressReporter.Hide();
769 catch(
const std::bad_alloc& )
771 msg.Printf(
_(
"Memory exhausted loading PCB '%s'" ), fullFileName );
772 progressReporter.Hide();
778 if( failedLoad || !loadedBoard )
785 statusBar->AddWarningMessages(
"load", loadReporter.
GetMessages() );
807 SetBoard( loadedBoard,
false, &progressReporter );
809 postLoadTimer.
msecs(
true ) );
848 m_infoBar->ShowMessage(
_(
"Could not load component class assignment rules" ),
849 wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::GENERIC );
855 postLoadTimer.
msecs(
true ) );
861 postLoadTimer.
msecs(
true ) );
867 postLoadTimer.
msecs(
true ) );
879 && loadedBoard->
GetGenerator().Lower() != wxT(
"gerbview" ) ) )
883 m_infoBar->ShowMessage(
_(
"This file was created by an older version of KiCad. "
884 "It will be converted to the new format when saved." ),
885 wxICON_WARNING, WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
898 fname = previousBoardFileName;
904 fn.SetPath(
Prj().GetProjectPath() );
905 fn.SetName(
Prj().GetProjectName() );
908 fname = fn.GetFullPath();
922 std::vector<ZONE*> toFill;
927 wxLogTrace(
traceAllegroPerf, wxT(
"Post-load BuildConnectivity: %.3f ms" ),
928 connectivityTimer.
msecs(
true ) );
933 wxLogTrace(
traceAllegroPerf, wxT(
"Post-load LoadProjectSettings+DrawingSheet: %.3f ms" ),
934 connectivityTimer.
msecs(
true ) );
944 wxLogTrace(
traceAllegroPerf, wxT(
"Post-load DRC+ComponentClass+Tuning caches: %.3f ms" ),
945 connectivityTimer.
msecs(
true ) );
950 connectivityTimer.
msecs(
true ) );
951 wxLogTrace(
traceAllegroPerf, wxT(
"=== Post-load pipeline total: %.3f ms ===" ),
952 connectivityTimer.
msecs() );
959#if 0 && defined(DEBUG)
988 statusBar->AddWarningMessages(
"load", loadReporter.
GetMessages() );
995 bool aChangeProject )
998 wxFileName pcbFileName = aFileName;
1008 wxString msg = wxString::Format(
_(
"Insufficient permissions to write file '%s'." ),
1009 pcbFileName.GetFullPath() );
1016 wxFileName projectFile( pcbFileName );
1017 wxFileName rulesFile( pcbFileName );
1023 if( projectFile.FileExists() )
1027 else if( aChangeProject )
1033 wxFileName currentRules(
GetBoard()->GetDesignRulesPath() );
1035 if( currentRules.FileExists() && !rulesFile.FileExists() && aChangeProject )
1036 KiCopyFile( currentRules.GetFullPath(), rulesFile.GetFullPath(), msg );
1038 if( !msg.IsEmpty() )
1040 DisplayError(
this, wxString::Format(
_(
"Error saving custom rules file '%s'." ),
1041 rulesFile.GetFullPath() ) );
1044 if( projectFile.FileExists() )
1058 if( pcbFileName.FileExists() )
1065 pi->SaveBoard( pcbFileName.GetFullPath(), *
GetBoard(),
nullptr );
1069 DisplayError(
this, wxString::Format(
_(
"Error saving board file '%s'.\n%s" ),
1070 pcbFileName.GetFullPath(),
1077 if( !
Kiface().IsSingle() )
1083 LockFile( pcbFileName.GetFullPath() );
1089 lowerTxt.Printf(
_(
"File '%s' saved." ), pcbFileName.GetFullPath() );
1091 SetStatusText( lowerTxt, 0 );
1094 if(
m_infoBar->GetMessageType() == WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE )
1102 wxString backupMsg = backupReporter.
GetMessages();
1103 m_infoBar->ShowMessageFor( backupMsg.Trim(), 10000, wxICON_WARNING );
1113 if( !
Prj().IsNullProject() )
1135 wxFileName pcbFileName( aFileName );
1141 DisplayError(
this, wxString::Format(
_(
"Insufficient permissions to write file '%s'." ),
1142 pcbFileName.GetFullPath() ) );
1156 if( pcbFileName.FileExists() )
1163 wxASSERT( pcbFileName.IsAbsolute() );
1165 pi->SaveBoard( pcbFileName.GetFullPath(), *
GetBoard(),
nullptr );
1171 DisplayError(
this, wxString::Format(
_(
"Error saving board file '%s'.\n%s" ),
1172 pcbFileName.GetFullPath(),
1179 wxFileName projectFile( pcbFileName );
1180 wxFileName rulesFile( pcbFileName );
1186 if( aCreateProject && !projectFile.FileExists() )
1189 wxFileName currentRules(
GetBoard()->GetDesignRulesPath() );
1191 if( aCreateProject && currentRules.FileExists() && !rulesFile.FileExists() )
1192 KiCopyFile( currentRules.GetFullPath(), rulesFile.GetFullPath(), msg );
1194 if( !msg.IsEmpty() && !aHeadless )
1196 DisplayError(
this, wxString::Format(
_(
"Error saving custom rules file '%s'." ),
1197 rulesFile.GetFullPath() ) );
1205 const std::map<std::string, UTF8>* aProperties )
1243 std::vector<std::unique_ptr<FOOTPRINT>> aDefinitions,
const wxString& aBoardPath )
1253 statusBar->AddWarningMessages(
"load",
reporter.GetMessages() );
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
void SetContentModified(bool aModified=true)
int m_CopperEdgeClearance
int GenerateODBPPFiles(const TOOL_EVENT &aEvent)
int New(const TOOL_EVENT &aEvent)
int Revert(const TOOL_EVENT &aEvent)
int GenIPC2581File(const TOOL_EVENT &aEvent)
int Open(const TOOL_EVENT &aEvent)
int OpenNonKicadBoard(const TOOL_EVENT &aEvent)
static std::unique_ptr< BOARD > Load(const wxString &aFileName, PCB_IO_MGR::PCB_FILE_T aFormat, PROJECT *aProject, const OPTIONS &aOptions)
Information pertinent to a Pcbnew printed circuit board.
bool m_LegacyDesignSettingsLoaded
True if the legacy board design settings were loaded from a file.
GAL_SET m_LegacyVisibleItems
LENGTH_DELAY_CALCULATION * GetLengthCalculation() const
Returns the track length calculator.
void SetFileName(const wxString &aFileName)
bool BuildConnectivity(PROGRESS_REPORTER *aReporter=nullptr)
Build or rebuild the board connectivity database for the board, especially the list of connected item...
void SynchronizeNetsAndNetClasses(bool aResetTrackAndViaSizes)
Copy NETCLASS info to each NET, based on NET membership in a NETCLASS.
bool SetLayerName(PCB_LAYER_ID aLayer, const wxString &aLayerName)
Changes the name of the layer given by aLayer.
LSET m_LegacyVisibleLayers
Visibility settings stored in board prior to 6.0, only used for loading legacy files.
void SetProject(PROJECT *aProject, bool aReferenceOnly=false)
Link a board to a given project.
const wxString & GetFileName() const
int GetFileFormatVersionAtLoad() const
const wxString & GetGenerator() const
Adds an item to the container.
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
const LSET & GetEnabledLayers() const
A proxy function that calls the corresponding function in m_BoardSettings.
void SynchronizeProperties()
Copy the current project's text variables into the boards property cache.
COMPONENT_CLASS_MANAGER & GetComponentClassManager()
Gets the component class manager.
bool SynchronizeComponentClasses(const std::unordered_set< wxString > &aNewSheetPaths) const
Copy component class / component class generator information from the project settings.
bool m_LegacyCopperEdgeClearanceLoaded
int GetCount() const
Return the number of objects in the list.
void RebuildRequiredCaches(FOOTPRINT *aFootprint=nullptr) const
Rebuilds any caches that may be required by custom assignment rules.
static void GenerateODBPPFiles(const JOB_EXPORT_PCB_ODB &aJob, BOARD *aBoard, PCB_EDIT_FRAME *aParentFrame=nullptr, PROGRESS_REPORTER *aProgressReporter=nullptr, REPORTER *aErrorReporter=nullptr)
wxString GetOutputPath() const
int GetCompressFormat() const
wxString GetUnitsString() const
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 std::map< wxString, PCB_LAYER_ID > RunModal(wxWindow *aParent, const std::vector< INPUT_LAYER_DESC > &aLayerDesc)
Create and show a dialog (modal) and returns the data from it after completion.
Create and handle a window for the 3d viewer connected to a Kiway and a pcbboard.
void NewDisplay(bool aForceImmediateRedraw=false)
Reload and refresh (rebuild) the 3D scene.
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
void CheckForAutosaveFiles(const wxString &aProjectPath, const std::vector< wxString > &aExtensions)
Check for autosave files newer than their source files for the given project.
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.
virtual void ClearFileHistory()
Remove all files from the file history.
wxString GetFileFromHistory(int cmdId, const wxString &type, FILE_HISTORY *aFileHistory=nullptr)
Fetch the file name from the file history list.
void SetMruPath(const wxString &aPath)
WX_INFOBAR * GetInfoBar()
std::unique_ptr< LOCKFILE > m_file_checker
bool LockFile(const wxString &aFileName)
Mark a schematic file as being in use.
bool GetCreateNewProject() const
Gets the selected state of the copy subsheets option.
bool IsAttachedToDialog() const
bool GetShowIssues() const
static const std::vector< KICAD_T > AllBoardItems
A scan list for all editable board items.
An exception saying that the user cancelled an interactive part of a load, import,...
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?
ODB_COMPRESSION m_compressionMode
void SetConfiguredOutputPath(const wxString &aPath)
Sets the configured output path for the job, this path is always saved to file.
Helper class to create more flexible dialogs, including 'do not show again' checkbox handling.
void DoNotShowCheckbox(wxString file, int line)
Shows the 'do not show again' checkbox.
KISTATUSBAR is a wxStatusBar suitable for Kicad manager.
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
LOCAL_HISTORY & LocalHistory()
Return the LOCAL_HISTORY associated with this KIWAY.
Plugin class for import plugins that support remappable layers.
void SynchronizeTuningProfileProperties() const
Ensure time domain properties provider is synced with board / project settings if required.
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.
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
static REPORTER & GetInstance()
static wxString GetDefaultUserProjectsPath()
Gets the default path we point users to create projects.
static TOOL_ACTION repairBoard
static TOOL_ACTION rehatchShapes
const VECTOR2I GetPageSizeIU() const override
Works off of GetPageSettings() to return the size of the paper page in the internal units of this par...
PCBNEW_SETTINGS * GetPcbNewSettings() const
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
PCB_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
EDA_3D_VIEWER_FRAME * Get3DViewerFrame()
virtual void UpdateStatusBar() override
Update the status bar information.
The main frame for Pcbnew.
void LoadDrawingSheet()
Load the drawing sheet file.
void ResolveDRCExclusions(bool aCreateMarkers)
If aCreateMarkers then create DRC exclusion markers from the serialized data.
void SetBoard(BOARD *aBoard, PROGRESS_REPORTER *aReporter=nullptr) override
Set the #m_Pcb member in such as way as to ensure deleting any previous BOARD.
void OnModify() override
Must be called after a board change to set the modified flag.
bool CloseFootprintFieldsTableDialog()
void OnClearFileHistory(wxCommandEvent &aEvent)
bool SaveBoard(bool aSaveAs=false, bool aSaveCopy=false)
bool OpenProjectFiles(const std::vector< wxString > &aFileSet, int aCtl=0) override
Load a KiCad board (.kicad_pcb) from aFileName.
void ProjectChanged() override
Notification event that the project has changed.
void SaveProjectLocalSettings() override
Save changes to the project local settings.
bool SavePcbCopy(const wxString &aFileName, bool aCreateProject=false, bool aHeadless=false)
Write the board data structures to aFileName.
bool IsContentModified() const override
Get if the current board has been modified but not saved.
bool LoadProjectSettings()
Load the current project's file configuration settings which are pertinent to this PCB_EDIT_FRAME ins...
bool Clear_Pcb(bool doAskAboutUnsavedChanges, bool aFinal=false)
Delete all and reinitialize the current board.
void OnBoardLoaded()
Update the state of the GUI after a new board is loaded or created.
void UpdateTitle()
Set the main window title bar text.
int inferLegacyEdgeClearance(BOARD *aBoard, bool aShowUserMsg=true)
const std::map< std::string, UTF8 > * m_importProperties
void reconcileImportedFootprintLibraries(std::vector< std::unique_ptr< FOOTPRINT > > aDefinitions, const wxString &aBoardPath)
Reconcile the footprint-library references of a freshly imported non-KiCad board so that every board ...
bool SavePcbFile(const wxString &aFileName, bool addToHistory=true, bool aChangeProject=true)
Write the board data structures to a aFileName.
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 saveProjectSettings() override
Save any design-related project settings associated with this frame.
void OnFileHistory(wxCommandEvent &event)
static PLUGIN_REGISTRY * Instance()
PCB_FILE_T
The set of file types that the PCB_IO_MGR knows about, and for which there has been a plugin written,...
@ KICAD_SEXP
S-expression Pcbnew file format.
@ GEDA_PCB
Geda PCB file formats.
@ LEGACY
Legacy Pcbnew file formats prior to s-expression.
static PCB_IO * FindPlugin(PCB_FILE_T aFileType)
Return a #PLUGIN which the caller can use to import, export, save, or load design documents.
static PCB_FILE_T FindPluginTypeFromBoardPath(const wxString &aFileName, int aCtl=0)
Return a plugin type given a path for a board file.
static bool ImportGeneratesProjectLibrary(PCB_FILE_T aFileType)
Return true when importing aFileType should materialize a project footprint library.
A base class that BOARD loading and saving plugins should derive from.
Collect all BOARD_ITEM objects on a given layer.
void Collect(BOARD_ITEM *aBoard, const std::vector< KICAD_T > &aTypes)
Test a BOARD_ITEM using this class's Inspector method, which does the collection.
void SetLayerId(PCB_LAYER_ID aLayerId)
void PreloadDesignBlockLibraries(KIWAY *aKiway)
Starts a background job to preload the global and project design block libraries.
A small class to help profiling.
double msecs(bool aSinceLast=false)
virtual void AdvancePhase() override
Use the next available virtual zone of the dialog progress bar.
void AddPhases(int aNumPhases) override
bool KeepRefreshing(bool aWait=false) override
Update the UI dialog.
Plugin class for import plugins that support choosing a project.
LSET m_VisibleLayers
Board settings.
GAL_SET m_VisibleItems
The GAL layers (aka items) that are turned on for viewing (.
virtual void SetReadOnly(bool aReadOnly=true)
virtual const wxString GetProjectFullName() const
Return the full path and name of the project.
virtual PROJECT_LOCAL_SETTINGS & GetLocalSettings() const
virtual bool IsNullProject() const
Check if this project is a null project (i.e.
A pure virtual class used to derive REPORTER objects from.
virtual bool HasMessage() const
Returns true if any messages were reported.
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.
PROJECT & Prj() const
A helper while we are not MDI-capable – return the one and only project.
static void ResolvePossibleSymlinks(wxFileName &aFilename)
void Dismiss() override
Dismisses the infobar and updates the containing layout and AUI manager (if one is provided).
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.
Declaration of the eda_3d_viewer class.
void KiCopyFile(const wxString &aSrcPath, const wxString &aDestPath, wxString &aErrors)
#define WIN_STRING_DIR_SEP
#define UNIX_STRING_DIR_SEP
static const std::string ProjectFileExtension
static const std::string LegacyPcbFileExtension
static const std::string DesignRulesFileExtension
static const std::string KiCadPcbFileExtension
static wxString PcbFileWildcard()
bool ApplyImportedNetNameMap(BOARD &aBoard, const std::map< wxString, wxString > &aNames, REPORTER &aReporter)
Apply caller-selected imported net names without changing net identity or connectivity.
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_REVERT
reverting to a previously-saved (KiCad) file.
#define KICTL_IMPORT_LIB
import all footprints into a project library.
#define KICTL_KICAD_ONLY
chosen file is from KiCad according to user
#define KICTL_NONKICAD_ONLY
chosen file is non-KiCad according to user
@ GAL_LAYER_ID_BITMASK_END
This is the end of the layers used for visibility bit masks in legacy board files.
PCB_LAYER_ID
A quick note on layer IDs:
#define GAL_LAYER_INDEX(x)
Use this macro to convert a GAL layer to a 0-indexed offset from LAYER_VIAS.
This file contains miscellaneous commonly used macros and functions.
std::optional< std::map< wxString, wxString > > SplitNetNameMap(const wxString &aValue)
Decode a net-name map property value, or nothing when the value is not one.
constexpr char NET_NAME_MAP[]
#define SEXPR_BOARD_FILE_VERSION
Current s-expression file format version. 2 was the last legacy format version.
bool AskLoadBoardFileName(PCB_EDIT_FRAME *aParent, wxString *aFileName, int aCtl=0)
Show a wxFileDialog asking for a BOARD filename to open.
bool AskSaveBoardFileName(PCB_EDIT_FRAME *aParent, wxString *aFileName, bool *aCreateProject)
Put up a wxFileDialog asking for a BOARD filename to save.
static const wxChar *const traceAllegroPerf
PGM_BASE & Pgm()
The global program "get" accessor.
int64_t GetRunningMicroSecs()
An alternate way to calculate an elapsed time (in microsecondes) to class PROF_COUNTER.
#define NAMELESS_PROJECT
default name for nameless projects
KIWAY Kiway(KFCTL_STANDALONE)
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 initialize_after_load
std::function< void(PCB_IO &)> plugin_configurator
std::function< void(PCB_IO &)> post_load_hook
const std::map< std::string, UTF8 > * properties
PROGRESS_REPORTER * progress_reporter
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.
virtual void PreloadLibraries(KIWAY *aKiway)
IbisParser parser & reporter
wxLogTrace helper definitions.
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
wxString AddFileExtListToFilter(const std::vector< std::string > &aExts)
Build the wildcard extension file dialog wildcard filter to add to the base message dialog.
wxString formatWildcardExt(const wxString &aWildcard)
Format wildcard extension to support case sensitive file dialogs.
Definition of file extensions used in Kicad.