76#include <wx/filedlg.h>
78#include <wx/process.h>
79#include <wx/snglinst.h>
91#include <ApplicationServices/ApplicationServices.h>
100#define EDITORS_CAPTION _( "Editors" )
101#define PROJECT_FILES_CAPTION _( "Project Files" )
103#define ID_INIT_WATCHED_PATHS 52913
105#define SEP() wxFileName::GetPathSeparator()
142#include <wx/xml/xml.h>
145 const wxPoint& pos,
const wxSize& size ) :
148 m_openSavedWindows( false ),
149 m_restoredFromHistory( false ),
150 m_active_project( false ),
151 m_showHistoryPanel( false ),
152 m_projectTreePane( nullptr ),
153 m_historyPane( nullptr ),
154 m_launcher( nullptr ),
155 m_lastToolbarIconSize( 0 ),
156 m_pcmButton( nullptr ),
157 m_pcmUpdateCount( 0 )
159 const int defaultLeftWinWidth = FromDIP( 250 );
161 m_leftWinWidth = defaultLeftWinWidth;
162 m_aboutTitle =
"KiCad";
177 CreateStatusBar( 2 );
185 wxIconBundle icon_bundle;
190 icon_bundle.AddIcon( icon );
192 icon_bundle.AddIcon( icon );
194 icon_bundle.AddIcon( icon );
196 icon_bundle.AddIcon( icon );
198 icon_bundle.AddIcon( icon );
203 icon_bundle.AddIcon( icon );
205 icon_bundle.AddIcon( icon );
207 icon_bundle.AddIcon( icon );
209 icon_bundle.AddIcon( icon );
211 icon_bundle.AddIcon( icon );
214 SetIcons( icon_bundle );
230 m_auimgr.SetManagedWindow(
this );
231 m_auimgr.SetFlags( wxAUI_MGR_LIVE_RESIZE );
233 m_auimgr.AddPane( m_tbLeft,
EDA_PANE().VToolbar().Name(
"TopMainToolbar" ).Left().Layer( 2 ) );
237 m_auimgr.AddPane( m_projectTreePane,
238 EDA_PANE().Palette().Name(
"ProjectTree" ).Left().Layer( 1 )
240 .MinSize( m_leftWinWidth, -1 ).Floatable(
false ).Movable(
false ) );
243 m_auimgr.AddPane( m_historyPane,
244 EDA_PANE().Palette().Name(
"LocalHistory" ).Left().Layer( 1 ).Position( 1 )
245 .Caption(
_(
"Local History" ) ).PaneBorder(
false )
246 .Floatable(
false ).Movable(
false ).CloseButton(
true ).Hide() );
248 if( m_showHistoryPanel )
249 m_auimgr.GetPane( m_historyPane ).Show();
251 wxSize client_size = GetClientSize();
252 m_notebook =
new wxAuiNotebook(
this, wxID_ANY, wxPoint( client_size.x, client_size.y ),
253 FromDIP( wxSize( 700, 590 ) ),
254 wxAUI_NB_TOP | wxAUI_NB_CLOSE_ON_ALL_TABS | wxAUI_NB_TAB_MOVE
255 | wxAUI_NB_SCROLL_BUTTONS | wxNO_BORDER );
263 m_notebook->Freeze();
264 m_launcher->SetClosable(
false );
266 m_notebook->SetTabCtrlHeight( 0 );
270 .PaneBorder(
false ).MinSize( m_notebook->GetBestSize() ) );
275 m_auimgr.GetPane( m_projectTreePane ).MinSize( defaultLeftWinWidth, FromDIP( 80 ) );
278 wxSizer* mainSizer = GetSizer();
281 if( mainSizer &&
config()->m_Window.state.size_x == 0 &&
config()->m_Window.state.size_y == 0 )
284 mainSizer->Fit(
this );
289 SetTitle( wxT(
"KiCad" ) );
294 m_projectTreePane->SetFocus();
306 DragAcceptFiles(
true );
327 m_pcm->StopBackgroundUpdate();
358 wxAuiNotebook* notebook = (wxAuiNotebook*) evt.GetEventObject();
359 wxWindow* page = notebook->GetPage( evt.GetSelection() );
363 if( panel->GetClosable() )
365 if( !panel->GetCanClose() )
383 const wxString&
name )
390 size_t sbFieldCnt =
static_cast<size_t>( sb->GetFieldsCount() );
391 std::vector<int> sbFieldSizes( sbFieldCnt );
393 for(
size_t i = 0; i < sbFieldCnt; i++ )
394 sbFieldSizes[i] = sb->GetStatusWidth(
static_cast<int>( i ) );
400 sbFieldSizes[0] = -1;
405 int watcherWidth = std::max(
KIUI::GetTextSize(
_(
"Local path: monitoring folder changes" ), sb ).x,
408 sbFieldSizes[1] = watcherWidth + margin;
423 m_pcm = std::make_shared<PLUGIN_CONTENT_MANAGER>(
424 [
this](
int aUpdateCount )
426 if(
Pgm().m_Quitting )
431 if( aUpdateCount > 0 )
435 _(
"PCM Updates Available" ),
436 wxString::Format(
_(
"%d package update(s) available" ), aUpdateCount ),
489#define ENABLE( x ) ACTION_CONDITIONS().Enable( x )
492 activeProjectCond.
Enable( activeProject );
565 : wxString( wxEmptyString );
574 return fn.GetFullPath();
583 return fn.GetFullPath();
591 fn.SetExt( FILEEXT::PcbFileExtension );
592 return fn.GetFullPath();
601 return fn.GetFullPath();
646 wxString ext = fileName.GetExt();
650 wxString fn = fileName.GetFullPath();
658 wxString gerberFiles;
663 wxString ext = fileName.GetExt();
669 gerberFiles += wxT(
'\"' );
670 gerberFiles += fileName.GetFullPath() + wxT(
'\"' );
671 gerberFiles = gerberFiles.Pad( 1 );
675 wxString fn = fileName.GetFullPath();
681 if( !gerberFiles.IsEmpty() )
685 if( wxFileExists( fullEditorName ) )
687 wxString command = fullEditorName +
" " + gerberFiles;
699 for(
size_t i = 0; i <
m_notebook->GetPageCount(); i++ )
705 if( !panel->GetCanClose() )
715 aEvent.StopPropagation();
721 if( aEvent.CanVeto() )
739 static std::atomic<unsigned int> lock_close_event( 0 );
741 if( ++lock_close_event > 1 )
753 lock_close_event = 0;
767 for(
size_t i = 0; i <
m_notebook->GetPageCount(); i++ )
771 wxFileName jobsetFn(
jobset->GetFilePath() );
772 jobsetFn.MakeRelativeTo(
Prj().GetProjectPath() );
789 if( !
Kiway().PlayersClose(
false ) )
804 if(
Prj().GetLocalSettings().ShouldAutoSave() &&
Prj().GetProjectFile().ShouldAutoSave() )
821 if( !projPath.IsEmpty() &&
Kiway().LocalHistory().HistoryExists( projPath ) )
823 if(
Kiway().LocalHistory().HeadNewerThanLastSave( projPath ) )
837 if(
Pgm().GetCommonSettings() &&
Pgm().GetCommonSettings()->m_Backup.enabled )
858 for(
int i = (
int)
m_notebook->GetPageCount() - 1; i >= 0; i-- )
864 if( panel->GetProjectTied() )
878 for(
size_t i = 0; i <
m_notebook->GetPageCount(); i++ )
882 if( aFileName.GetFullPath() == panel->GetFilePath() )
892 std::unique_ptr<JOBSET> jobsFile = std::make_unique<JOBSET>( aFileName.GetFullPath().ToStdString() );
894 jobsFile->LoadFromFile();
896 if( aCreate && !aFileName.FileExists() )
898 JOBSET_DESTINATION* dest = jobsFile->AddNewDestination( JOBSET_DESTINATION_T::FOLDER );
900 jobsFile->SaveToFile( wxEmptyString,
true );
906 m_notebook->AddPage( jobPanel, aFileName.GetFullName(),
true );
909 if( aResaveProjectPreferences )
922 if( !aProjectFileName.Exists() )
925 wxString fullPath = aProjectFileName.GetFullPath();
930 wxFileName lockFn( fullPath );
933 bool lockFilePreExisted = lockFn.FileExists();
935 bool lockOverrideGranted =
false;
937 if( lockFilePreExisted )
947 if( !
Pgm().SingleInstance()->IsAnotherRunning() )
951 if( !lockFile.
Valid() )
954 msg.Printf(
_(
"Project '%s' is already open by '%s' at '%s'." ),
963 lockOverrideGranted =
true;
985 if( lockOverrideGranted )
990 if( aProjectFileName.IsDirWritable() )
993 if(
Kiway().LocalHistory().HeadNewerThanLastSave(
Prj().GetProjectPath() ) )
997 KICAD_MESSAGE_DIALOG dlg(
this,
_(
"KiCad found unsaved changes from your last session that are newer than "
998 "the saved project files." ),
999 _(
"Recover Unsaved Changes" ), wxYES_NO | wxICON_QUESTION );
1001 dlg.SetExtendedMessage(
_(
"This can happen if your previous session ended unexpectedly.\n\n"
1002 "Choose 'Restore' to recover those changes, or 'Discard' to keep the "
1003 "currently saved files." ) );
1005 dlg.SetYesNoLabels(
_(
"Restore" ),
_(
"Discard" ) );
1007 if( dlg.ShowModal() == wxID_YES )
1028 for(
const wxString&
jobset :
Prj().GetLocalSettings().m_OpenJobSets )
1030 wxFileName jobsetFn(
jobset );
1031 jobsetFn.MakeAbsolute(
Prj().GetProjectPath() );
1033 if( jobsetFn.Exists() )
1045 wxPostEvent(
this, cmd );
1063 wxCHECK_RET( aProjectFileName.DirExists() && aProjectFileName.IsDirWritable(),
1064 "Project folder must exist and be writable to create a new project." );
1067 if( !aProjectFileName.FileExists() )
1069 wxFileName legacyPro( aProjectFileName );
1072 if( legacyPro.FileExists() )
1077 wxRemoveFile( legacyPro.GetFullPath() );
1082 wxString srcFileName =
sys_search().FindValidPath(
"kicad.kicad_pro" );
1084 wxFileName destFileName( aProjectFileName );
1088 if( !wxFileName::FileExists( srcFileName )
1089 || !wxCopyFile( srcFileName, destFileName.GetFullPath() ) )
1091 wxFFile file( destFileName.GetFullPath(),
"wb" );
1093 if( file.IsOpened() )
1094 file.Write( wxT(
"{\n}\n") );
1104 if( aCreateStubFiles )
1106 wxFileName fn( aProjectFileName.GetFullPath() );
1111 if( !fn.FileExists() )
1113 wxFFile file( fn.GetFullPath(),
"wb" );
1115 if( file.IsOpened() )
1117 file.Write( wxString::Format(
"(kicad_sch\n"
1119 "\t(generator \"eeschema\")\n"
1120 "\t(generator_version \"%s\")\n"
1122 "\t(paper \"A4\")\n"
1124 "\t(sheet_instances\n"
1126 "\t\t\t(page \"1\")\n"
1129 "\t(embedded_fonts no)\n"
1133 KIID().AsString() ) );
1142 wxFileName leg_fn( fn );
1145 if( !fn.FileExists() && !leg_fn.FileExists() )
1147 wxFFile file( fn.GetFullPath(),
"wb" );
1149 if( file.IsOpened() )
1152 file.Write( wxString::Format(
"(kicad_pcb (version %d) (generator \"pcbnew\") (generator_version \"%s\")\n)",
1177 wxMessageBox(
_(
"Compare Project Branches requires a project that is "
1178 "tracked by git." ),
1179 _(
"Compare Branches" ),
1180 wxOK | wxICON_INFORMATION,
this );
1189 wxString currentBranch;
1190 git_reference* head =
nullptr;
1192 if( git_repository_head( &head, repo ) == 0 )
1194 const char* shorthand = git_reference_shorthand( head );
1196 if( shorthand && *shorthand )
1197 currentBranch = wxString::FromUTF8( shorthand );
1199 git_reference_free( head );
1202 std::vector<wxString> refs;
1204 auto pushUnique = [&](
const wxString& aRef )
1206 if( aRef.IsEmpty() )
1209 for(
const wxString& existing : refs )
1211 if( existing == aRef )
1215 refs.push_back( aRef );
1218 pushUnique( wxS(
"main" ) );
1219 pushUnique( wxS(
"master" ) );
1220 pushUnique( currentBranch );
1221 pushUnique( wxS(
"HEAD" ) );
1235 wxFileDialog dlg(
this,
_(
"Edit File in Text Editor" ), default_dir, wxEmptyString, wildcard,
1240 if( dlg.ShowModal() == wxID_CANCEL )
1243 wxString filename = dlg.GetPath();
1245 if( !dlg.GetPath().IsEmpty() && !
Pgm().GetTextEditor().IsEmpty() )
1275 if( pageId != wxNOT_FOUND )
1292 m_pcm->ReadEnvVar();
1312 if( !
Prj().IsNullProject() &&
1313 Prj().GetProjectLock() ==
nullptr )
1323 if( !
Pgm().SingleInstance()->IsAnotherRunning() )
1329 if( !lockFile.
Valid() )
1332 msg.Printf(
_(
"Project '%s' is already open by '%s' at '%s'." ),
1349 if( !file.IsEmpty() )
1351 wxFileName fn( file );
1353 title = fn.GetName();
1355 if(
Prj().IsReadOnly() )
1356 title += wxS(
" " ) +
_(
"[Read Only]" );
1360 title =
_(
"[no project loaded]" );
1364 title += wxT(
" \u2014 " ) + wxString( wxS(
"KiCad" ) );
1373 [
this](
const wxString& aProjectPath, std::vector<HISTORY_FILE_DATA>& aFileData )
1386 wxCHECK( settings, );
1399 wxCHECK( settings, );
1413 wxString status = wxString::Format(
_(
"Project: %s" ),
Prj().GetProjectFullName() );
1437 if(
Pgm().GetCommonSettings()->m_Session.remember_open_files )
1439 int previousOpenCount = std::count_if(
Prj().GetLocalSettings().m_files.begin(),
1440 Prj().GetLocalSettings().m_files.end(),
1443 return !f.fileName.EndsWith( FILEEXT::ProjectFileExtension ) && f.open;
1446 if( previousOpenCount > 0 )
1448 APP_PROGRESS_DIALOG progressReporter(
_(
"Restoring session" ), wxEmptyString, previousOpenCount,
this );
1451 std::set<wxString> openedFiles;
1457 if( file.open && !openedFiles.count( file.fileName ) )
1459 progressReporter.
Update( i++, wxString::Format(
_(
"Restoring '%s'" ), file.fileName ) );
1461 openedFiles.insert( file.fileName );
1462 wxFileName fn( file.fileName );
1491 schFrame->OnModify();
1495 pcbFrame->OnModify();
1506 m_pcm->RunBackgroundUpdate();
1509#ifdef KICAD_UPDATE_CHECK
1566 bool show = !pane.IsShown();
1578 if( !
Kiway().PlayersClose(
true ) )
1581 if(
Kiway().LocalHistory().RestoreCommit(
Prj().GetProjectPath(), aHash,
this ) )
constexpr EDA_IU_SCALE unityScale
wxBitmap KiBitmap(BITMAPS aBitmap, int aHeightTag)
Construct a wxBitmap from an image identifier Returns the image from the active theme if the image ha...
wxString GetMajorMinorVersion()
Get only the major and minor version in a string major.minor.
bool IsNightlyVersion()
Check if the build is meant to be nightly.
static TOOL_ACTION saveAs
Manage TOOL_ACTION objects.
void SetConditions(const TOOL_ACTION &aAction, const ACTION_CONDITIONS &aConditions)
Set the conditions the UI elements for activating a specific tool action should use for determining t...
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
wxProgressDialog with the option to also update the application progress on the taskbar
virtual bool Update(int aValue, const wxString &aNewMsg=wxEmptyString, bool *aSkip=nullptr) override
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
void UnregisterStatusBar(KISTATUSBAR *aStatusBar)
Removes status bar from handling.
void RegisterStatusBar(KISTATUSBAR *aStatusBar)
Add a status bar for handling.
Handle actions that are shared between different applications.
Git PR-style branch comparison dialog (Phase 10).
The base frame for deriving all KiCad main window classes.
void LoadWindowState(const wxString &aFileName)
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
virtual void setupUIConditions()
Setup the UI conditions for the various actions and their controls in this frame.
std::vector< wxFileName > m_AcceptedFiles
SETTINGS_MANAGER * GetSettingsManager() const
virtual void RecreateToolbars()
virtual void LoadSettings(APP_SETTINGS_BASE *aCfg)
Load common frame parameters from a configuration file.
ACTION_TOOLBAR * m_tbLeft
std::map< const wxString, TOOL_ACTION * > m_acceptedExts
Associate file extensions with action to execute.
virtual void SaveSettings(APP_SETTINGS_BASE *aCfg)
Save common frame parameters to a configuration data file.
void SetMruPath(const wxString &aPath)
bool m_isClosing
Set by the close window event handler after frames are asked if they can close.
Specialization of the wxAuiPaneInfo class for KiCad panels.
void SetOutputPath(const wxString &aPath)
virtual bool SaveToFile(const wxString &aDirectory="", bool aForce=false)
Calls Store() and then writes the contents of the JSON document to a file.
static TOOL_ACTION viewDroppedGerbers
static TOOL_ACTION editPCB
static TOOL_ACTION loadProject
static TOOL_ACTION showLocalHistory
static TOOL_ACTION editSchematic
static TOOL_ACTION openTextEditor
static TOOL_ACTION archiveProject
static TOOL_ACTION closeProject
static TOOL_ACTION openJobsetFile
static TOOL_ACTION newJobsetFile
Handle actions in the kicad manager frame.
The main KiCad project manager frame.
std::shared_ptr< PLUGIN_CONTENT_MANAGER > m_pcm
void PreloadAllLibraries()
void SetPcmButton(BITMAP_BUTTON *aButton)
void doCloseWindow() override
void CreateNewProject(const wxFileName &aProjectFileName, bool aCreateStubFiles=true)
Creates a new project by setting up and initial project, schematic, and board files.
wxString m_FileWatcherInfo
const SEARCH_STACK & sys_search() override
Return a SEARCH_STACK pertaining to entire program.
void OnImportEasyEdaProFiles(wxCommandEvent &event)
Open dialog to import EasyEDA Pro schematic and board files.
void ProjectChanged() override
Notification event that the project has changed.
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
const wxString SchLegacyFileName()
wxWindow * GetToolCanvas() const override
Canvas access.
void OnImportEasyEdaFiles(wxCommandEvent &event)
Open dialog to import EasyEDA Std schematic and board files.
void OnImportPadsProjectFiles(wxCommandEvent &event)
Open dialog to import PADS Logic schematic and PCB files.
void ToggleLocalHistory()
void OnImportAltiumProjectFiles(wxCommandEvent &event)
Open dialog to import Altium project files.
const wxString GetProjectFileName() const
void updatePcmButtonBadge()
KICAD_SETTINGS * kicadSettings() const
const wxString SchFileName()
void OnImportEagleFiles(wxCommandEvent &event)
Open dialog to import Eagle schematic and board files.
wxStatusBar * OnCreateStatusBar(int number, long style, wxWindowID id, const wxString &name) override
Create the status line (like a wxStatusBar).
void OnExit(wxCommandEvent &event)
void OpenJobsFile(const wxFileName &aFileName, bool aCreate=false, bool aResaveProjectPreferences=true)
bool canCloseWindow(wxCloseEvent &aCloseEvent) override
void OnSize(wxSizeEvent &event) override
virtual void setupUIConditions() override
Setup the UI conditions for the various actions and their controls in this frame.
PROJECT_TREE_PANE * m_projectTreePane
void OnImportGedaFiles(wxCommandEvent &event)
Open dialog to import gEDA/gaf schematic and PCB files.
void RestoreCommitFromHistory(const wxString &aHash)
void DoWithAcceptedFiles() override
Execute action on accepted dropped file.
void OnOpenFileInTextEditor(wxCommandEvent &event)
APP_SETTINGS_BASE * config() const override
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
int m_lastToolbarIconSize
const wxString PcbLegacyFileName()
void OnEditAdvancedCfg(wxCommandEvent &event)
KICAD_MANAGER_FRAME(wxWindow *parent, const wxString &title, const wxPoint &pos, const wxSize &size)
bool CloseProject(bool aSave)
Closes the project, and saves it if aSave is true;.
wxString GetCurrentFileName() const override
Get the full filename + path of the currently opened file in the frame.
void onNotebookPageCloseRequest(wxAuiNotebookEvent &evt)
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
void LoadSettings(APP_SETTINGS_BASE *aCfg) override
Load common frame parameters from a configuration file.
void OnIdle(wxIdleEvent &event)
void onToolbarSizeChanged()
void PrintPrjInfo()
Prints the current working directory name and the project name on the text panel.
void OnImportDipTraceFiles(wxCommandEvent &event)
Open dialog to import DipTrace schematic and board files.
void SaveOpenJobSetsToLocalSettings(bool aIsExplicitUserSave=false)
bool LoadProject(const wxFileName &aProjectFileName)
Loads a new project.
bool m_restoredFromHistory
Set after restore to mark editors dirty.
void onNotebookPageCountChanged(wxAuiNotebookEvent &evt)
LOCAL_HISTORY_PANE * m_historyPane
void OnImportCadstarArchiveFiles(wxCommandEvent &event)
Open dialog to import CADSTAR Schematic and PCB Archive files.
void OnCompareProjectBranches(wxCommandEvent &event)
Open DIALOG_GIT_MR_REVIEW so the user can pick two refs and review the changed-file list between them...
void RefreshProjectTree()
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
BITMAP_BUTTON * m_pcmButton
PANEL_KICAD_LAUNCHER * m_launcher
void HideTabsIfNeeded()
Hides the tabs for Editor notebook if there is only 1 page.
wxString help_name() override
const wxString PcbFileName()
std::unique_ptr< UPDATE_MANAGER > m_updateManager
wxAuiNotebook * m_notebook
std::vector< wxString > m_OpenProjects
void SetEllipsedTextField(const wxString &aText, int aFieldId)
Set the text in a field using wxELLIPSIZE_MIDDLE option to adjust the text size to the field size.
virtual void SetStatusWidths(int aSize, const int *aWidths) override
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
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.
bool EnforceSizeLimit(const wxString &aProjectPath, size_t aMaxBytes, PROGRESS_REPORTER *aReporter=nullptr)
Enforce total size limit by rebuilding trimmed history keeping newest commits whose cumulative unique...
bool TagSave(const wxString &aProjectPath, const wxString &aFileType)
Tag a manual save in the local history repository.
wxString GetHeadHash(const wxString &aProjectPath)
Return the current head commit hash.
bool RestoreCommit(const wxString &aProjectPath, const wxString &aHash, wxWindow *aParent=nullptr)
Restore the project files to the state recorded by the given commit hash.
void WaitForPendingSave()
Block until any pending background save completes.
void RegisterSaver(const void *aSaverObject, const std::function< void(const wxString &, std::vector< HISTORY_FILE_DATA > &)> &aSaver)
Register a saver callback invoked during autosave history commits.
bool CommitFullProjectSnapshot(const wxString &aProjectPath, const wxString &aTitle)
Commit a snapshot of the entire project directory (excluding the .history directory and ignored trans...
void UnregisterSaver(const void *aSaverObject)
Unregister a previously registered saver callback.
bool OverrideLock(bool aRemoveOnRelease=true)
Force the lock, overwriting the data that existed already.
void RegisterStatusBar(KISTATUSBAR *aStatusBar)
Add a status bar for handling.
void CreateOrUpdate(const wxString &aKey, const wxString &aTitle, const wxString &aDescription, const wxString &aHref=wxEmptyString)
Create a notification with the given parameters or updates an existing one with the same key.
void Remove(const wxString &aKey)
Remove a notification by key.
void UnregisterStatusBar(KISTATUSBAR *aStatusBar)
Remove status bar from handling.
static REPORTER & GetInstance()
void SetClosable(bool aYes)
void SetProjectTied(bool aYes)
virtual COMMON_SETTINGS * GetCommonSettings() const
void PreloadDesignBlockLibraries(KIWAY *aKiway)
Starts a background job to preload the global and project design block libraries.
virtual BACKGROUND_JOBS_MONITOR & GetBackgroundJobMonitor() const
void UnregisterLibraryLoadStatusBar(KISTATUSBAR *aStatusBar)
Unregister a status bar from receiving library load warning messages.
void RegisterLibraryLoadStatusBar(KISTATUSBAR *aStatusBar)
Register a status bar to receive library load warning messages.
virtual NOTIFICATIONS_MANAGER & GetNotificationsManager() const
virtual SETTINGS_MANAGER & GetSettingsManager() const
wxString GetHelpFileName()
SEARCH_STACK & SysSearch()
APP_SETTINGS_BASE * PgmSettings()
The project local settings are things that are attached to a particular project, but also might be pa...
bool SaveToFile(const wxString &aDirectory="", bool aForce=false) override
Calls Store() and then writes the contents of the JSON document to a file.
bool ShouldAutoSave() const
std::vector< wxString > m_OpenJobSets
PROJECT_TREE_PANE Window to display the tree files.
void SetProjectLock(LOCKFILE *aLockFile)
virtual void SetReadOnly(bool aReadOnly=true)
virtual const wxString GetProjectFullName() const
Return the full path and name of the project.
virtual const wxString GetProjectPath() const
Return the full path of the project.
virtual PROJECT_LOCAL_SETTINGS & GetLocalSettings() const
virtual void SetLockOverrideGranted(bool aGranted=true)
void SaveToHistory(const wxString &aProjectPath, std::vector< HISTORY_FILE_DATA > &aFileData)
Produce HISTORY_FILE_DATA entries for project files (.kicad_pro and .kicad_prl).
Look for files in a number of paths.
static bool ShowNever(const SELECTION &aSelection)
Always returns false.
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 IsProjectOpen() const
Helper for checking if we have a project open.
bool UnloadProject(PROJECT *aProject, bool aSave=true)
Save, unload and unregister the given PROJECT.
std::vector< wxString > GetOpenProjects() const
bool TriggerBackupIfNeeded(REPORTER &aReporter) const
Call BackupProject() if a new backup is needed according to the current backup policy.
Multi-thread safe progress reporter dialog, intended for use of tasks that parallel reporting back of...
bool AskOverrideLock(wxWindow *aParent, const wxString &aMessage)
Display a dialog indicating the file is already open, with an option to reset the lock.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
#define KICAD_MESSAGE_DIALOG
Base window classes and related definitions.
#define KICAD_DEFAULT_DRAWFRAME_STYLE
#define KICAD_MANAGER_FRAME_NAME
EVT_MENU_RANGE(ID_GERBVIEW_DRILL_FILE1, ID_GERBVIEW_DRILL_FILEMAX, GERBVIEW_FRAME::OnDrlFileHistory) EVT_MENU_RANGE(ID_GERBVIEW_ZIP_FILE1
const wxString GERBVIEW_EXE
wxString FindKicadFile(const wxString &shortname)
Search the executable file shortname in KiCad binary path and return full file name if found or short...
static const std::string LegacySchematicFileExtension
static const std::string GerberJobFileExtension
static const std::string GerberFileExtension
static const std::string LockFileExtension
static const std::string ProjectFileExtension
static const std::string LegacyPcbFileExtension
static const std::string LegacyProjectFileExtension
static const std::string KiCadSchematicFileExtension
static const std::string LockFilePrefix
static const std::string DrillFileExtension
static const std::string KiCadPcbFileExtension
static wxString AllFilesWildcard()
static bool IsGerberFileExtension(const wxString &ext)
@ ID_IMPORT_DIPTRACE_PROJECT
@ ID_IMPORT_EAGLE_PROJECT
@ ID_IMPORT_EASYEDAPRO_PROJECT
@ ID_IMPORT_CADSTAR_ARCHIVE_PROJECT
@ ID_EDIT_LOCAL_FILE_IN_TEXT_EDITOR
@ ID_IMPORT_EASYEDA_PROJECT
@ ID_IMPORT_ALTIUM_PROJECT
@ ID_COMPARE_PROJECT_BRANCHES
EVT_MENU(ID_COMPARE_PROJECT_BRANCHES, KICAD_MANAGER_FRAME::OnCompareProjectBranches) KICAD_MANAGER_FRAME
#define ID_INIT_WATCHED_PATHS
#define PROJECT_FILES_CAPTION
KICOMMON_API wxFont GetStatusFont(wxWindow *aWindow)
KICOMMON_API wxSize GetTextSize(const wxString &aSingleLine, wxWindow *aWindow)
Return the size of aSingleLine of text when it is rendered in aWindow using whatever font is currentl...
#define SEXPR_BOARD_FILE_VERSION
Current s-expression file format version. 2 was the last legacy format version.
PGM_BASE & Pgm()
The global program "get" accessor.
#define SEXPR_SCHEMATIC_FILE_VERSION
Schematic file version.
T * GetToolbarSettings(const wxString &aFilename)
KIWAY Kiway(KFCTL_STANDALONE)
std::vector< FAB_LAYER_COLOR > dummy
Functors that can be used to figure out how the action controls should be displayed in the UI and if ...
ACTION_CONDITIONS & Enable(const SELECTION_CONDITION &aCondition)
unsigned long long limit_total_size
Maximum total size of backups (bytes), 0 for unlimited.
std::shared_ptr< JOBS_OUTPUT_HANDLER > m_outputHandler
Implement a participant in the KIWAY alchemy.
virtual void PreloadLibraries(KIWAY *aKiway)
virtual void CancelPreload(bool aBlock=true)
IbisParser parser & reporter
Functions to provide common constants and other functions to assist in making a consistent UI.
Definition of file extensions used in Kicad.