39#include <wx/filedlg.h>
48#include <lib_table_lexer.h>
106 virtual wxDirTraverseResult
OnFile(
const wxString& aFileName )
override
108 wxFileName file( aFileName );
112 if( file.GetExt().IsSameAs( ext,
false ) )
116 return wxDIR_CONTINUE;
119 virtual wxDirTraverseResult
OnOpenError(
const wxString& aOpenErrorName )
override
130 virtual wxDirTraverseResult
OnDir(
const wxString& aDirName )
override
133 return wxDIR_CONTINUE;
138 for( std::pair<const wxString, int>& foundDirsPair :
m_foundDirs )
139 aPathArray.Add( foundDirsPair.first );
144 for( std::pair<const wxString, int>& failedDirsPair :
m_failedDirs )
145 aPathArray.Add( failedDirsPair.first );
178 return m_rows.insert( aIterator, aRow );
185 return m_rows.erase( aFirst, aLast );
195 void SetValue(
int aRow,
int aCol,
const wxString &aValue )
override
197 wxCHECK( aRow < (
int)
size(), );
238 wxString result = options;
239 std::map<std::string, UTF8> choices;
243 pi->GetLibraryOptions( &choices );
248 if( options != result )
261 size_t ndx = cb_text.find(
"(fp_lib_table" );
263 if( ndx != std::string::npos )
269 LIB_TABLE_LEXER lexer( &slr );
275 tmp_tbl.
Parse( &lexer );
289 for(
unsigned i = 0; i < tmp_tbl.
GetCount(); ++i )
293 m_grid->AutoSizeColumns(
false );
300 m_grid->AutoSizeColumns(
false );
305 bool toggleCell(
int aRow,
int aCol,
bool aPreserveSelection )
override
322 auto autoSizeCol = [&](
WX_GRID* aLocGrid,
int aCol )
324 int prevWidth = aLocGrid->GetColSize( aCol );
326 aLocGrid->AutoSizeColumn( aCol,
false );
327 aLocGrid->SetColSize( aCol, std::max( prevWidth, aLocGrid->GetColSize( aCol ) ) );
331 for(
int ii = 0; ii < aGrid->GetNumberRows(); ++ii )
332 aGrid->SetRowSize( ii, aGrid->GetDefaultRowSize() + 4 );
337 aGrid->SetSelectionMode( wxGrid::wxGridSelectRows );
339 wxGridCellAttr* attr;
341 attr =
new wxGridCellAttr;
354 return wxEmptyString;
356 aGrid->SetColAttr(
COL_URI, attr );
358 attr =
new wxGridCellAttr;
360 aGrid->SetColAttr(
COL_TYPE, attr );
362 attr =
new wxGridCellAttr;
363 attr->SetRenderer(
new wxGridCellBoolRenderer() );
367 attr =
new wxGridCellAttr;
368 attr->SetRenderer(
new wxGridCellBoolRenderer() );
384 if( aGrid->GetNumberRows() > 0 )
385 aGrid->SelectRow( 0 );
390 FP_LIB_TABLE* aGlobalTable,
const wxString& aGlobalTblPath,
391 FP_LIB_TABLE* aProjectTable,
const wxString& aProjectTblPath,
392 const wxString& aProjectBasePath ) :
394 m_globalTable( aGlobalTable ),
395 m_projectTable( aProjectTable ),
396 m_project( aProject ),
397 m_projectBasePath( aProjectBasePath ),
463 auto joinExts = [](
const std::vector<std::string>& aExts )
466 for(
const std::string& ext : aExts )
468 if( !joined.empty() )
469 joined << wxS(
", " );
471 joined << wxS(
"*." ) << ext;
481 if( desc.m_IsFile && !desc.m_FileExtensions.empty() )
483 entryStr << wxString::Format( wxS(
" (%s)" ),
484 joinExts( desc.m_FileExtensions ) );
486 else if( !desc.m_IsFile && !desc.m_ExtensionsInDir.empty() )
488 wxString midPart = wxString::Format(
_(
"folder with %s files" ),
489 joinExts( desc.m_ExtensionsInDir ) );
491 entryStr << wxString::Format( wxS(
" (%s)" ), midPart );
494 browseMenu->Append( type, entryStr );
512 browseMenu->Unbind( wxEVT_COMMAND_MENU_SELECTED,
552 for(
int r = 0; r < model->GetNumberRows(); )
554 wxString nick = model->GetValue( r,
COL_NICKNAME ).Trim(
false ).Trim();
555 wxString uri = model->GetValue( r,
COL_URI ).Trim(
false ).Trim();
556 unsigned illegalCh = 0;
561 msg =
_(
"A library table row nickname and path cells are empty." );
563 msg =
_(
"A library table row nickname cell is empty." );
565 msg =
_(
"A library table row path cell is empty." );
567 wxWindow* topLevelParent = wxGetTopLevelParent(
this );
569 wxMessageDialog badCellDlg( topLevelParent, msg,
_(
"Invalid Row Definition" ),
570 wxYES_NO | wxCENTER | wxICON_QUESTION | wxYES_DEFAULT );
571 badCellDlg.SetExtendedMessage(
_(
"Empty cells will result in all rows that are "
572 "invalid to be removed from the table." ) );
573 badCellDlg.SetYesNoLabels( wxMessageDialog::ButtonLabel(
_(
"Remove Invalid Cells" ) ),
574 wxMessageDialog::ButtonLabel(
_(
"Cancel Table Update" ) ) );
576 if( badCellDlg.ShowModal() == wxID_NO )
583 model->DeleteRows( r, 1 );
587 msg = wxString::Format(
_(
"Illegal character '%c' in nickname '%s'." ),
598 wxWindow* topLevelParent = wxGetTopLevelParent(
this );
600 wxMessageDialog errdlg( topLevelParent, msg,
_(
"Library Nickname Error" ) );
608 model->SetValue( r,
COL_URI, uri );
624 for(
int r1 = 0; r1 < model->GetNumberRows() - 1; ++r1 )
628 for(
int r2 = r1 + 1; r2 < model->GetNumberRows(); ++r2 )
634 msg = wxString::Format(
_(
"Multiple libraries cannot share the same "
635 "nickname ('%s')." ),
646 wxWindow* topLevelParent = wxGetTopLevelParent(
this );
648 wxMessageDialog errdlg( topLevelParent, msg,
_(
"Library Nickname Error" ) );
672 int last_row =
m_cur_grid->GetNumberRows() - 1;
696 wxArrayInt selectedRows =
m_cur_grid->GetSelectedRows();
697 wxGridCellCoordsArray cells =
m_cur_grid->GetSelectedCells();
698 wxGridCellCoordsArray blockTopLeft =
m_cur_grid->GetSelectionBlockTopLeft();
699 wxGridCellCoordsArray blockBotRight =
m_cur_grid->GetSelectionBlockBottomRight();
702 for(
unsigned ii = 0; ii < cells.GetCount(); ii++ )
703 selectedRows.Add( cells[ii].GetRow() );
706 if( !blockTopLeft.IsEmpty() && !blockBotRight.IsEmpty() )
708 for(
int i = blockTopLeft[0].GetRow(); i <= blockBotRight[0].GetRow(); ++i )
709 selectedRows.Add( i );
713 if( selectedRows.size() == 0 &&
m_cur_grid->GetGridCursorRow() >= 0 )
714 selectedRows.Add(
m_cur_grid->GetGridCursorRow() );
716 if( selectedRows.size() == 0 )
722 std::sort( selectedRows.begin(), selectedRows.end() );
731 for(
int ii = selectedRows.GetCount()-1; ii >= 0; ii-- )
733 int row = selectedRows[ii];
735 if( row != last_row )
742 if(
m_cur_grid->GetNumberRows() > 0 && curRow >= 0 )
758 boost::ptr_vector< LIB_TABLE_ROW >::auto_type move_me =
762 tbl->
m_rows.insert( tbl->
m_rows.begin() + curRow, move_me.release() );
767 wxGridTableMessage msg( tbl, wxGRIDTABLE_NOTIFY_ROWS_INSERTED, curRow, 0 );
768 tbl->GetView()->ProcessTableMessage( msg );
786 if(
unsigned( curRow + 1 ) < tbl->
m_rows.size() )
788 boost::ptr_vector< LIB_TABLE_ROW >::auto_type move_me =
792 tbl->
m_rows.insert( tbl->
m_rows.begin() + curRow, move_me.release() );
797 wxGridTableMessage msg( tbl, wxGRIDTABLE_NOTIFY_ROWS_INSERTED, curRow - 1, 0 );
798 tbl->GetView()->ProcessTableMessage( msg );
813 wxArrayInt selectedRows =
m_cur_grid->GetSelectedRows();
815 if( selectedRows.empty() &&
m_cur_grid->GetGridCursorRow() >= 0 )
816 selectedRows.push_back(
m_cur_grid->GetGridCursorRow() );
818 wxArrayInt rowsToMigrate;
823 for(
int row : selectedRows )
826 rowsToMigrate.push_back( row );
829 if( rowsToMigrate.size() <= 0 )
831 wxMessageBox( wxString::Format(
_(
"Select one or more rows containing libraries "
832 "to save as current KiCad format." ) ) );
837 if( rowsToMigrate.size() == 1 )
839 msg.Printf(
_(
"Save '%s' as current KiCad format "
840 "and replace entry in table?" ),
845 msg.Printf(
_(
"Save %d libraries as current KiCad format "
846 "and replace entries in table?" ),
847 (
int) rowsToMigrate.size() );
854 for(
int row : rowsToMigrate )
859 wxFileName legacyLib( resolvedPath );
861 if( !legacyLib.Exists() )
863 msg.Printf(
_(
"Library '%s' not found." ), relPath );
868 wxFileName newLib( resolvedPath );
870 newLib.SetName(
"" );
873 if( newLib.DirExists() )
875 msg.Printf(
_(
"Folder '%s' already exists. Do you want overwrite any existing footprints?" ),
876 newLib.GetFullPath() );
878 switch( wxMessageBox( msg,
_(
"Migrate Library" ),
879 wxYES_NO | wxCANCEL | wxICON_QUESTION,
m_parent ) )
883 case wxCANCEL:
return;
891 newLib.GetFullPath(), errorReporter.
m_Reporter ) )
893 relPath =
NormalizePath( newLib.GetFullPath(), &
Pgm().GetLocalEnvVariables(),
899 relPath = newLib.GetFullPath();
906 msg.Printf(
_(
"Failed to save footprint library file '%s'." ), newLib.GetFullPath() );
914 errorReporter.ShowModal();
928 if( event.GetEventType() == wxEVT_BUTTON )
940 wxLogWarning( wxT(
"File type selection event received but could not find the file type "
956 wxWindow* topLevelParent = wxGetTopLevelParent(
this );
960 wxFileDialog dlg( topLevelParent, title, openDir, wxEmptyString, fileDesc.
FileFilter(),
961 wxFD_OPEN | wxFD_FILE_MUST_EXIST | wxFD_MULTIPLE );
963 int result = dlg.ShowModal();
965 if( result == wxID_CANCEL )
968 dlg.GetPaths( files );
977 wxDirDialog dlg( topLevelParent, title, openDir,
978 wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST | wxDD_MULTIPLE );
980 int result = dlg.ShowModal();
982 if( result == wxID_CANCEL )
985 dlg.GetPaths( files );
987 if( !files.IsEmpty() )
989 wxFileName first( files.front() );
1003 bool addDuplicates =
false;
1004 bool applyToAll =
false;
1005 wxString warning =
_(
"Warning: Duplicate Nicknames" );
1006 wxString msg =
_(
"A library nicknamed '%s' already exists." );
1007 wxString detailedMsg =
_(
"One of the nicknames will need to be changed after "
1008 "adding this library." );
1010 for(
const wxString& filePath : files )
1012 wxFileName fn( filePath );
1020 if(
cur_model()->ContainsNickname( nickname ) )
1026 wxString::Format( msg, nickname ),
1027 detailedMsg,
_(
"Skip" ),
_(
"Add Anyway" ),
1028 &applyToAll ) == wxID_CANCEL;
1031 doAdd = addDuplicates;
1036 int last_row =
m_cur_grid->GetNumberRows() - 1;
1047 if(
m_pageNdx == 0 &&
path.Contains( wxT(
"${KIPRJMOD}" ) ) )
1048 path = fn.GetFullPath();
1054 if( !files.IsEmpty() )
1056 int new_row =
m_cur_grid->GetNumberRows() - 1;
1089 !
IsOK(
this, wxString::Format(
_(
"This action will reset your global library table on "
1090 "disk and cannot be undone." ) ) ) )
1097 if( dlg.ShowModal() == wxID_OK )
1161 wxRegEx re(
".*?(\\$\\{(.+?)\\})|(\\$\\((.+?)\\)).*?", wxRE_ADVANCED );
1162 wxASSERT( re.IsValid() );
1164 std::set< wxString > unique;
1174 for(
int row = 0; row < tbl->GetNumberRows(); ++row )
1176 wxString uri = tbl->GetValue( row,
COL_URI );
1178 while( re.Matches( uri ) )
1180 wxString envvar = re.GetMatch( uri, 2 );
1183 if( envvar.IsEmpty() )
1184 envvar = re.GetMatch( uri, 4 );
1187 unique.insert( envvar );
1190 uri.Replace( re.GetMatch( uri, 0 ), wxEmptyString );
1204 for(
const wxString& evName : unique )
1209 m_path_subs_grid->SetCellValue( row, 0, wxT(
"${" ) + evName + wxT(
"}" ) );
1213 wxGetEnv( evName, &evValue );
1244 projectTable =
nullptr;
1247 projectTable, projectTablePath,
1250 if( dlg.ShowModal() == wxID_CANCEL )
1257 globalTable->
Save( globalTablePath );
1261 msg.Printf(
_(
"Error saving global library table:\n\n%s" ), ioe.
What() );
1262 wxMessageBox( msg,
_(
"File Save Error" ), wxOK | wxICON_ERROR );
1270 projectTable->
Save( projectTablePath );
1274 msg.Printf(
_(
"Error saving project-specific library table:\n\n%s" ), ioe.
What() );
1275 wxMessageBox( msg,
_(
"File Save Error" ), wxOK | wxICON_ERROR );
1279 std::string payload =
"";
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap)
bool m_ProjectTableChanged
void InstallPanel(wxPanel *aPanel)
void ShowInfoBarError(const wxString &aErrorMsg, bool aShowCloseButton=false, WX_INFOBAR::MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
bool m_GlobalTableChanged
Class DIALOG_HTML_REPORTER.
WX_HTML_REPORT_BOX * m_Reporter
DIALOG_PLUGIN_OPTIONS is an options editor in the form of a two column name/value spreadsheet like (t...
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
void paste_text(const wxString &cb_text) override
handle specialized clipboard text, with leading "(fp_lib_table", OR spreadsheet formatted text.
DIALOG_EDIT_LIBRARY_TABLES * m_dialog
FP_GRID_TRICKS(DIALOG_EDIT_LIBRARY_TABLES *aParent, WX_GRID *aGrid)
void optionsEditor(int aRow) override
bool toggleCell(int aRow, int aCol, bool aPreserveSelection) override
This class builds a wxGridTableBase by wrapping an FP_LIB_TABLE object.
size_t size() const override
FP_LIB_TABLE_GRID(const FP_LIB_TABLE &aTableToEdit)
void SetValue(int aRow, int aCol, const wxString &aValue) override
LIB_TABLE_ROWS_ITER begin() override
LIB_TABLE_ROWS_ITER erase(LIB_TABLE_ROWS_ITER aFirst, LIB_TABLE_ROWS_ITER aLast) override
LIB_TABLE_ROW * makeNewRow() override
LIB_TABLE_ROW * at(size_t aIndex) override
void push_back(LIB_TABLE_ROW *aRow) override
LIB_TABLE_ROWS_ITER insert(LIB_TABLE_ROWS_ITER aIterator, LIB_TABLE_ROW *aRow) override
Hold a record identifying a library accessed by the appropriate footprint library #PLUGIN object in t...
static const wxString GlobalPathEnvVariableName()
Return the name of the environment variable used to hold the directory of locally installed "KiCad sp...
virtual void Parse(LIB_TABLE_LEXER *aLexer) override
Parse the #LIB_TABLE_LEXER s-expression library table format into the appropriate LIB_TABLE_ROW objec...
static wxString GetGlobalTableFileName()
Editor for wxGrid cells that adds a file/folder browser to the grid input field.
Add mouse and command handling (such as cut, copy, and paste) to a WX_GRID instance.
virtual void paste_text(const wxString &cb_text)
WX_GRID * m_grid
I don't own the grid, but he owns me.
virtual bool toggleCell(int aRow, int aCol, bool aPreserveSelection=false)
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()
void SetKiway(wxWindow *aDest, KIWAY *aKiway)
It is only used for debugging, since "this" is not a wxWindow*.
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr)
Send aPayload to aDestination from aSource.
virtual PROJECT & Prj() const
Return the PROJECT associated with this KIWAY.
Traverser implementation that looks to find any and all "folder" libraries by looking for files with ...
void GetPaths(wxArrayString &aPathArray)
virtual wxDirTraverseResult OnOpenError(const wxString &aOpenErrorName) override
std::unordered_map< wxString, int > m_failedDirs
std::vector< std::string > m_searchExtensions
void GetFailedPaths(wxArrayString &aPathArray)
bool HasDirectoryOpenFailures()
LIBRARY_TRAVERSER(std::vector< std::string > aSearchExtensions, wxString aInitialDir)
std::unordered_map< wxString, int > m_foundDirs
virtual wxDirTraverseResult OnDir(const wxString &aDirName) override
virtual wxDirTraverseResult OnFile(const wxString &aFileName) override
static unsigned FindIllegalLibraryNameChar(const UTF8 &aLibraryName)
Looks for characters that are illegal in library nicknames.
static UTF8 FixIllegalChars(const UTF8 &aLibItemName, bool aLib)
Replace illegal LIB_ID item name characters with underscores '_'.
This abstract base class mixes any object derived from LIB_TABLE into wxGridTableBase so the result c...
void SetValue(int aRow, int aCol, const wxString &aValue) override
bool AppendRows(size_t aNumRows=1) override
int GetNumberRows() override
Hold a record identifying a library accessed by the appropriate plug in object in the LIB_TABLE.
const wxString & GetOptions() const
Return the options string, which may hold a password or anything else needed to instantiate the under...
virtual const wxString GetType() const =0
Return the type of library represented by this row.
const wxString & GetNickName() const
const wxString GetFullURI(bool aSubstituted=false) const
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
LIB_TABLE_ROW * clone() const
void SetOptions(const wxString &aOptions)
Change the library options strings.
static std::map< std::string, UTF8 > * ParseOptions(const std::string &aOptionsList)
Parses aOptionsList and places the result into a #PROPERTIES object which is returned.
LIB_TABLE_ROW & At(unsigned aIndex)
Get the 'n'th LIB_TABLE_ROW object.
void TransferRows(LIB_TABLE_ROWS &aRowsList)
Takes ownership of another list of rows; the original list will be freed.
LIB_TABLE_ROWS m_rows
Owning set of rows.
unsigned GetCount() const
Get the number of rows contained in the table.
void Save(const wxString &aFileName) const
Write this library table to aFileName in s-expression form.
Class PANEL_FP_LIB_TABLE_BASE.
STD_BITMAP_BUTTON * m_move_up_button
WX_GRID * m_path_subs_grid
STD_BITMAP_BUTTON * m_append_button
STD_BITMAP_BUTTON * m_move_down_button
STD_BITMAP_BUTTON * m_delete_button
SPLIT_BUTTON * m_browseButton
Dialog to show and edit symbol library tables.
FP_LIB_TABLE * m_globalTable
bool verifyTables()
Trim important fields, removes blank row entries, and checks for duplicates.
std::map< PCB_IO_MGR::PCB_FILE_T, IO_BASE::IO_FILE_DESC > m_supportedFpFiles
void onSizeGrid(wxSizeEvent &event) override
void moveUpHandler(wxCommandEvent &event) override
void adjustPathSubsGridColumns(int aWidth)
FP_LIB_TABLE_GRID * cur_model() const
FP_LIB_TABLE_GRID * project_model() const
void moveDownHandler(wxCommandEvent &event) override
wxArrayString m_pluginChoices
void setupGrid(WX_GRID *aGrid)
FP_LIB_TABLE_GRID * global_model() const
wxString m_lastProjectLibDir
void populateEnvironReadOnlyTable()
Populate the readonly environment variable table with names and values by examining all the full_uri ...
~PANEL_FP_LIB_TABLE() override
FP_LIB_TABLE * m_projectTable
void deleteRowHandler(wxCommandEvent &event) override
void populatePluginList()
void onReset(wxCommandEvent &event) override
void onMigrateLibraries(wxCommandEvent &event) override
void browseLibrariesHandler(wxCommandEvent &event)
bool TransferDataFromWindow() override
PANEL_FP_LIB_TABLE(DIALOG_EDIT_LIBRARY_TABLES *aParent, PROJECT *aProject, FP_LIB_TABLE *aGlobalTable, const wxString &aGlobalTblPath, FP_LIB_TABLE *aProjectTable, const wxString &aProjectTblPath, const wxString &aProjectBasePath)
wxString m_projectBasePath
DIALOG_EDIT_LIBRARY_TABLES * m_parent
void OnUpdateUI(wxUpdateUIEvent &event) override
void onPageChange(wxBookCtrlEvent &event) override
void appendRowHandler(wxCommandEvent &event) override
static wxString GetDefaultUserFootprintsPath()
Gets the default path we point users to create projects.
wxString m_lastFootprintLibDir
static PLUGIN_REGISTRY * Instance()
static PCB_IO * PluginFind(PCB_FILE_T aFileType)
Return a #PLUGIN which the caller can use to import, export, save, or load design documents.
static PCB_FILE_T EnumFromStr(const wxString &aFileType)
Return the PCB_FILE_T from the corresponding plugin type name: "kicad", "legacy", etc.
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.
static bool ConvertLibrary(std::map< std::string, UTF8 > *aOldFileProps, const wxString &aOldFilePath, const wxString &aNewFilePath, REPORTER *aReporter)
Convert a schematic symbol library to the latest KiCad format.
static PCB_FILE_T GuessPluginTypeFromLibPath(const wxString &aLibPath, int aCtl=0)
Return a plugin type given a footprint library's libPath.
static const wxString ShowType(PCB_FILE_T aFileType)
Return a brief name for a plugin given aFileType enum.
virtual ENV_VAR_MAP & GetLocalEnvVariables() const
virtual SETTINGS_MANAGER & GetSettingsManager() const
static FP_LIB_TABLE * PcbFootprintLibs(PROJECT *aProject)
Return the table of footprint libraries without Kiway.
Container for project specific data.
virtual const wxString GetProjectPath() const
Return the full path of the project.
virtual const wxString FootprintLibTblName() const
Returns the path and filename of this project's footprint library table.
virtual bool IsNullProject() const
Check if this project is a null project (i.e.
T * GetAppSettings()
Returns a handle to the a given settings by type If the settings have already been loaded,...
Is a LINE_READER that reads from a multiline 8 bit wide std::string.
void SetTable(wxGridTableBase *table, bool aTakeOwnership=false)
Hide wxGrid's SetTable() method with one which doesn't mess up the grid column widths when setting th...
void DestroyTable(wxGridTableBase *aTable)
Work-around for a bug in wxGrid which crashes when deleting the table if the cell edit control was no...
void ClearRows()
wxWidgets recently added an ASSERT which fires if the position is greater than or equal to the number...
bool CommitPendingChanges(bool aQuietMode=false)
Close any open cell edit controls.
void Flush()
Build the HTML messages page.
bool HasMessage() const override
Returns true if the reporter client is non-empty.
const wxString ExpandEnvVarSubstitutions(const wxString &aString, const PROJECT *aProject)
Replace any environment variable & text variable references with their values.
int OKOrCancelDialog(wxWindow *aParent, const wxString &aWarning, const wxString &aMessage, const wxString &aDetailedMessage, const wxString &aOKLabel, const wxString &aCancelLabel, bool *aApplyToAll)
Display a warning dialog with aMessage and returns the user response.
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
FP_LIB_TABLE GFootprintTable
The global footprint library table.
Declaration of the eda_3d_viewer class.
wxString NormalizePath(const wxFileName &aFilePath, const ENV_VAR_MAP *aEnvVars, const wxString &aProjectPath)
Normalize a file path to an environmental variable, if possible.
Functions related to environment variables, including help functions.
static const std::string KiCadFootprintLibPathExtension
std::map< wxString, ENV_VAR_ITEM > ENV_VAR_MAP
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
LIB_TABLE_ROWS::iterator LIB_TABLE_ROWS_ITER
This file contains miscellaneous commonly used macros and functions.
KICOMMON_API wxString GetVersionedEnvVarName(const wxString &aBaseName)
Constructs a versioned environment variable based on this KiCad major version.
void InvokePcbLibTableEditor(KIWAY *aKiway, wxWindow *aCaller)
Function InvokePcbLibTableEditor shows the modal DIALOG_FP_LIB_TABLE for purposes of editing the glob...
PGM_BASE & Pgm()
The global Program "get" accessor.
#define PROJECT_VAR_NAME
A variable name whose value holds the current project directory.
MODEL3D_FORMAT_TYPE fileType(const char *aFileName)
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
Container that describes file type info.
bool m_IsFile
Whether the library is a folder or a file.
wxString FileFilter() const
A filename or source description, a problem input line, a line number, a byte offset,...
Container that describes file type info for the add a library options.
bool m_IsFile
Whether the library is a folder or a file.
PCB_IO_MGR::PCB_FILE_T m_Plugin
wxString m_Description
Description shown in the file picker dialog.
wxString m_FileFilter
Filter used for file pickers if m_IsFile is true.
wxString m_FolderSearchExtension
In case of folders it stands for extensions of files stored inside.
Definition of file extensions used in Kicad.