KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_design_block_lib_table.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20
21#include <set>
22#include <wx/dir.h>
23#include <wx/regex.h>
24#include <wx/dirdlg.h>
25#include <wx/filedlg.h>
26#include <wx/msgdlg.h>
27
28#include <common.h>
29#include <project.h>
30#include <env_vars.h>
31#include <lib_id.h>
32#include <bitmaps.h>
34#include <widgets/wx_grid.h>
37#include <confirm.h>
40#include <pgm_base.h>
41#include <env_paths.h>
46#include <kiway.h>
47#include <kiplatform/ui.h>
48#include <kiway_mail.h>
51#include <paths.h>
52#include <macros.h>
56
69
70
75class LIBRARY_TRAVERSER : public wxDirTraverser
76{
77public:
78 LIBRARY_TRAVERSER( std::vector<std::string> aSearchExtensions, wxString aInitialDir ) :
79 m_searchExtensions( aSearchExtensions ), m_currentDir( aInitialDir )
80 {
81 }
82
83 virtual wxDirTraverseResult OnFile( const wxString& aFileName ) override
84 {
85 wxFileName file( aFileName );
86
87 for( const std::string& ext : m_searchExtensions )
88 {
89 if( file.GetExt().IsSameAs( ext, false ) )
90 m_foundDirs.insert( { m_currentDir, 1 } );
91 }
92
93 return wxDIR_CONTINUE;
94 }
95
96 virtual wxDirTraverseResult OnOpenError( const wxString& aOpenErrorName ) override
97 {
98 m_failedDirs.insert( { aOpenErrorName, 1 } );
99 return wxDIR_IGNORE;
100 }
101
102 bool HasDirectoryOpenFailures() { return m_failedDirs.size() > 0; }
103
104 virtual wxDirTraverseResult OnDir( const wxString& aDirName ) override
105 {
106 m_currentDir = aDirName;
107 return wxDIR_CONTINUE;
108 }
109
110 void GetPaths( wxArrayString& aPathArray )
111 {
112 for( std::pair<const wxString, int>& foundDirsPair : m_foundDirs )
113 aPathArray.Add( foundDirsPair.first );
114 }
115
116 void GetFailedPaths( wxArrayString& aPathArray )
117 {
118 for( std::pair<const wxString, int>& failedDirsPair : m_failedDirs )
119 aPathArray.Add( failedDirsPair.first );
120 }
121
122private:
123 std::vector<std::string> m_searchExtensions;
124 wxString m_currentDir;
125 std::unordered_map<wxString, int> m_foundDirs;
126 std::unordered_map<wxString, int> m_failedDirs;
127};
128
129
134{
135public:
137 LIBRARY_MANAGER_ADAPTER* aAdapter, const wxArrayString& aPluginChoices,
138 wxString* aMRUDirectory, const wxString& aProjectPath,
140 IO_BASE::IO_FILE_DESC>& aSupportedFiles ) :
141 LIB_TABLE_GRID_DATA_MODEL( aParent, aGrid, aTableToEdit, aAdapter, aPluginChoices, aMRUDirectory,
142 aProjectPath ),
143 m_supportedDesignBlockFiles( aSupportedFiles )
144 {
145 }
146
147 void SetValue( int aRow, int aCol, const wxString& aValue ) override
148 {
149 wxCHECK( aRow < (int) size(), /* void */ );
150
151 LIB_TABLE_GRID_DATA_MODEL::SetValue( aRow, aCol, aValue );
152
153 // If setting a filepath, attempt to auto-detect the format
154 if( aCol == COL_URI )
155 {
156 LIBRARY_TABLE_ROW& row = at( static_cast<size_t>( aRow ) );
157 wxString uri = LIBRARY_MANAGER::ExpandURI( row.URI(), Pgm().GetSettingsManager().Prj() );
158
161
162 if( pluginType != DESIGN_BLOCK_IO_MGR::FILE_TYPE_NONE )
163 SetValue( aRow, COL_TYPE, DESIGN_BLOCK_IO_MGR::ShowType( pluginType ) );
164 }
165 }
166
167protected:
168 wxString getFileTypes( WX_GRID* aGrid, int aRow ) override
169 {
170 auto* table = static_cast<DESIGN_BLOCK_LIB_TABLE_GRID_DATA_MODEL*>( aGrid->GetTable() );
171 LIBRARY_TABLE_ROW& tableRow = table->at( aRow );
172
173 if( tableRow.Type() == LIBRARY_TABLE_ROW::TABLE_TYPE_NAME )
174 {
175 wxString filter = _( "Design Block Library Tables" );
176#ifndef __WXOSX__
177 filter << wxString::Format( _( " (%s)|%s" ), FILEEXT::DesignBlockLibraryTableFileName,
179#else
180 filter << wxString::Format( _( " (%s)|%s" ), wxFileSelectorDefaultWildcardStr,
181 wxFileSelectorDefaultWildcardStr );
182#endif
183 return filter;
184 }
185
186 if( tableRow.Type().IsEmpty() )
187 return wxEmptyString;
188
191 return wxEmptyString;
192
194
195 if( pluginDesc.m_IsFile )
196 return pluginDesc.FileFilter();
197
198 return wxEmptyString;
199 }
200
201private:
202 const std::map<DESIGN_BLOCK_IO_MGR::DESIGN_BLOCK_FILE_T, IO_BASE::IO_FILE_DESC>& m_supportedDesignBlockFiles;
203};
204
205
207{
208public:
215
216 static bool SupportsVisibilityColumn() { return true; }
217
218protected:
219 void optionsEditor( int aRow ) override
220 {
221 LIB_TABLE_GRID_DATA_MODEL* tbl = static_cast<LIB_TABLE_GRID_DATA_MODEL*>( m_grid->GetTable() );
222
223 if( tbl->GetNumberRows() > aRow )
224 {
225 LIBRARY_TABLE_ROW& row = tbl->At( static_cast<size_t>( aRow ) );
226 const wxString& options = row.Options();
227 wxString result = options;
228 std::map<std::string, UTF8> choices;
229
232 pi->GetLibraryOptions( &choices );
233
234 DIALOG_PLUGIN_OPTIONS dlg( wxGetTopLevelParent( m_grid ), row.Nickname(), choices, options, &result );
235 dlg.ShowModal();
236
237 if( options != result )
238 {
239 row.SetOptions( result );
240 m_grid->Refresh();
241 }
242 }
243 }
244
245 void openTable( const LIBRARY_TABLE_ROW& aRow ) override
246 {
247 wxFileName fn( LIBRARY_MANAGER::ExpandURI( aRow.URI(), Pgm().GetSettingsManager().Prj() ) );
248 std::shared_ptr<LIBRARY_TABLE> child = std::make_shared<LIBRARY_TABLE>( fn, LIBRARY_TABLE_SCOPE::GLOBAL,
250
251 if( !child->IsOk() )
252 {
253 wxMessageBox( _( "Unable to load library table." ) );
254 }
255 else
256 {
258
259 m_panel->OpenTable( child, aRow.Nickname() );
260 }
261 }
262
263 wxString getTablePreamble() override
264 {
265 return wxT( "(design_block_lib_table" );
266 }
267
272
273protected:
275};
276
277
278void PANEL_DESIGN_BLOCK_LIB_TABLE::OpenTable( const std::shared_ptr<LIBRARY_TABLE>& aTable, const wxString& aTitle )
279{
280 wxString tabTitle = aTitle;
281
282 if( aTable->IsReadOnly() )
283 tabTitle += wxS( " " ) + _( "(read-only)" );
284
285 for( int ii = 2; ii < (int) m_notebook->GetPageCount(); ++ii )
286 {
287 wxString candidate = m_notebook->GetPageText( ii );
288
289 if( candidate.EndsWith( " *" ) )
290 candidate = candidate.Left( candidate.Length() - 2 );
291
292 if( candidate == tabTitle )
293 {
294 // Something is pretty fishy with wxAuiNotebook::ChangeSelection(); on Mac at least it
295 // results in a re-entrant call where the second call is one page behind.
296 for( int attempts = 0; attempts < 3; ++attempts )
297 m_notebook->ChangeSelection( ii );
298
299 return;
300 }
301 }
302
303 m_nestedTables.push_back( aTable );
304 AddTable( aTable.get(), tabTitle, true );
305
306 // Something is pretty fishy with wxAuiNotebook::ChangeSelection(); on Mac at least it
307 // results in a re-entrant call where the second call is one page behind.
308 for( int attempts = 0; attempts < 3; ++attempts )
309 m_notebook->ChangeSelection( m_notebook->GetPageCount() - 1 );
310}
311
312
313void PANEL_DESIGN_BLOCK_LIB_TABLE::AddTable( LIBRARY_TABLE* table, const wxString& aTitle, bool aClosable )
314{
315 DESIGN_BLOCK_LIBRARY_ADAPTER* adapter = m_project->DesignBlockLibs();
316 wxString projectPath = m_project->GetProjectPath();
317
319
320 WX_GRID* grid = get_grid( (int) m_notebook->GetPageCount() - 1 );
321
322 if( table->Path().StartsWith( projectPath ) )
323 {
325 &m_lastProjectLibDir, projectPath,
327 true /* take ownership */ );
328 }
329 else
330 {
331 wxString* lastGlobalLibDir = nullptr;
332
333 if( KICAD_SETTINGS* cfg = GetAppSettings<KICAD_SETTINGS>( "kicad" ) )
334 {
335 if( cfg->m_lastDesignBlockLibDir.IsEmpty() )
336 cfg->m_lastDesignBlockLibDir = PATHS::GetDefaultUserDesignBlocksPath();
337
338 lastGlobalLibDir = &cfg->m_lastDesignBlockLibDir;
339 }
340
342 lastGlobalLibDir, wxEmptyString,
344 true /* take ownership */ );
345 }
346
347 static_cast<LIB_TABLE_GRID_DATA_MODEL*>( grid->GetTable() )->RecheckRows();
348
349 LIB_TABLE_NOTEBOOK_PANEL* notebookPanel =
350 static_cast<LIB_TABLE_NOTEBOOK_PANEL*>( m_notebook->GetPage( m_notebook->GetPageCount() - 1 ) );
351
352 static_cast<LIB_TABLE_GRID_DATA_MODEL*>( grid->GetTable() )
354 [notebookPanel]()
355 {
356 notebookPanel->MarkDirty();
357 } );
358
359 // add Cut, Copy, and Paste to wxGrids
360 grid->PushEventHandler( new DESIGN_BLOCK_GRID_TRICKS( this, grid ) );
361
362 auto autoSizeCol =
363 [&]( int aCol )
364 {
365 int prevWidth = grid->GetColSize( aCol );
366
367 grid->AutoSizeColumn( aCol, false );
368 grid->SetColSize( aCol, std::max( prevWidth, grid->GetColSize( aCol ) ) );
369 };
370
371 // all but COL_OPTIONS, which is edited with Option Editor anyways.
372 autoSizeCol( COL_NICKNAME );
373 autoSizeCol( COL_TYPE );
374 autoSizeCol( COL_URI );
375 autoSizeCol( COL_DESCR );
376
377 if( grid->GetNumberRows() > 0 )
378 {
379 grid->SetGridCursor( 0, COL_NICKNAME );
380 grid->SelectRow( 0 );
381 }
382}
383
384
386 PROJECT* aProject ) :
388 m_project( aProject ),
389 m_parent( aParent ),
391{
392 m_notebook->SetArtProvider( new WX_AUI_TAB_ART() );
393
394 m_lastProjectLibDir = m_project->GetProjectPath();
395
397
398 for( auto& [fileType, desc] : m_supportedDesignBlockFiles )
400
401 std::optional<LIBRARY_TABLE*> table = Pgm().GetLibraryManager().Table( LIBRARY_TABLE_TYPE::DESIGN_BLOCK,
403 wxASSERT( table.has_value() );
404
405 AddTable( table.value(), _( "Global Libraries" ), false /* closable */ );
406
407 std::optional<LIBRARY_TABLE*> projectTable = Pgm().GetLibraryManager().Table( LIBRARY_TABLE_TYPE::DESIGN_BLOCK,
409
410 if( projectTable.has_value() )
411 AddTable( projectTable.value(), _( "Project Specific Libraries" ), false /* closable */ );
412
413 // There aren't (yet) any legacy DesignBlock libraries to migrate
414 m_migrate_libs_button->Hide();
415
416 // add Cut, Copy, and Paste to wxGrids
417 m_path_subs_grid->PushEventHandler( new GRID_TRICKS( m_path_subs_grid ) );
418
420
421 m_path_subs_grid->SetColLabelValue( 0, _( "Name" ) );
422 m_path_subs_grid->SetColLabelValue( 1, _( "Value" ) );
423
424 // Configure button logos
430
431 // For aesthetic reasons, we must set the size of m_browseButton to match the other bitmaps
432 // manually (for instance m_append_button)
433 Layout(); // Needed at least on MSW to compute the actual buttons sizes, after initializing
434 // their bitmaps
435 wxSize buttonSize = m_append_button->GetSize();
436
437 m_browseButton->SetWidthPadding( 4 );
438 m_browseButton->SetMinSize( buttonSize );
439
440 // Populate the browse library options
441 wxMenu* browseMenu = m_browseButton->GetSplitButtonMenu();
442
443 for( auto& [type, desc] : m_supportedDesignBlockFiles )
444 {
445 wxString entryStr = DESIGN_BLOCK_IO_MGR::ShowType( type );
446 wxString midPart;
447
448 if( desc.m_IsFile && !desc.m_FileExtensions.empty() )
449 {
450 entryStr << wxString::Format( wxS( " (%s)" ), JoinExtensions( desc.m_FileExtensions ) );
451 }
452 else if( !desc.m_IsFile && !desc.m_ExtensionsInDir.empty() )
453 {
454 midPart = wxString::Format( _( "folder with %s files" ), JoinExtensions( desc.m_ExtensionsInDir ) );
455 entryStr << wxString::Format( wxS( " (%s)" ), midPart );
456 }
457
458 browseMenu->Append( type, entryStr );
459 browseMenu->Bind( wxEVT_COMMAND_MENU_SELECTED, &PANEL_DESIGN_BLOCK_LIB_TABLE::browseLibrariesHandler,
460 this, type );
461 }
462
463 Layout();
464
465 m_notebook->Bind( wxEVT_AUINOTEBOOK_PAGE_CLOSE, &PANEL_DESIGN_BLOCK_LIB_TABLE::onNotebookPageCloseRequest, this );
466 m_notebook->Bind( wxEVT_AUINOTEBOOK_PAGE_CHANGING, &PANEL_DESIGN_BLOCK_LIB_TABLE::onNotebookPageChangeRequest, this );
467 // This is the button only press for the browse button instead of the menu
469}
470
471
473{
474 wxMenu* browseMenu = m_browseButton->GetSplitButtonMenu();
475
476 for( auto& [type, desc] : m_supportedDesignBlockFiles )
477 {
478 browseMenu->Unbind( wxEVT_COMMAND_MENU_SELECTED, &PANEL_DESIGN_BLOCK_LIB_TABLE::browseLibrariesHandler,
479 this, type );
480 }
481
483
484 // Delete the GRID_TRICKS.
485 // (Notebook page GRID_TRICKS are deleted by LIB_TABLE_NOTEBOOK_PANEL.)
486 m_path_subs_grid->PopEventHandler( true );
487}
488
489
491{
493 {
495 {
497 continue;
498 }
499
501
502 if( !pi )
503 continue;
504
505 if( const IO_BASE::IO_FILE_DESC& desc = pi->GetLibraryDesc() )
506 m_supportedDesignBlockFiles.emplace( type, desc );
507 }
508}
509
510
515
516
518{
519 return static_cast<LIB_TABLE_NOTEBOOK_PANEL*>( m_notebook->GetPage( aPage ) )->GetGrid();
520}
521
522
524{
525 for( int page = 0 ; page < (int) m_notebook->GetPageCount(); ++page )
526 {
527 WX_GRID* grid = get_grid( page );
528
530 [&]( int aRow, int aCol )
531 {
532 // show the tabbed panel holding the grid we have flunked:
533 if( m_notebook->GetSelection() != page )
534 m_notebook->SetSelection( page );
535
536 grid->MakeCellVisible( aRow, 0 );
537 grid->SetGridCursor( aRow, aCol );
538 } ) )
539 {
540 return false;
541 }
542 }
543
544 return true;
545}
546
547
553
554
559
560
565
566
571
572
574{
576 aEvent.Veto();
577 else
578 aEvent.Skip();
579}
580
581
583{
584 wxAuiNotebook* notebook = (wxAuiNotebook*) aEvent.GetEventObject();
585 wxWindow* page = notebook->GetPage( aEvent.GetSelection() );
586
587 if( LIB_TABLE_NOTEBOOK_PANEL* panel = dynamic_cast<LIB_TABLE_NOTEBOOK_PANEL*>( page ) )
588 {
589 if( panel->GetClosable() )
590 {
591 if( !panel->GetCanClose() )
592 aEvent.Veto();
593 }
594 else
595 {
596 aEvent.Veto();
597 }
598 }
599}
600
601
602// @todo refactor this function into single location shared with PANEL_SYM_LIB_TABLE
604{
605 if( !cur_grid()->CommitPendingChanges() )
606 return;
607
608 wxArrayInt selectedRows = cur_grid()->GetSelectedRows();
609
610 if( selectedRows.empty() && cur_grid()->GetGridCursorRow() >= 0 )
611 selectedRows.push_back( cur_grid()->GetGridCursorRow() );
612
613 wxArrayInt rowsToMigrate;
615 wxString nestedTableType = LIBRARY_TABLE_ROW::TABLE_TYPE_NAME;
616 wxString msg;
617
618 for( int row : selectedRows )
619 {
620 const wxString& type = cur_grid()->GetCellValue( row, COL_TYPE );
621
622 // Nested library tables are not design block libraries and cannot be migrated.
623 if( type != kicadType && type != nestedTableType )
624 rowsToMigrate.push_back( row );
625 }
626
627 if( rowsToMigrate.size() <= 0 )
628 {
629 wxMessageBox( _( "Select one or more rows containing libraries to save as current KiCad format." ) );
630 return;
631 }
632 else
633 {
634 if( rowsToMigrate.size() == 1 )
635 {
636 msg.Printf( _( "Save '%s' as current KiCad format and replace entry in table?" ),
637 cur_grid()->GetCellValue( rowsToMigrate[0], COL_NICKNAME ) );
638 }
639 else
640 {
641 msg.Printf( _( "Save %d libraries as current KiCad format and replace entries in table?" ),
642 (int) rowsToMigrate.size() );
643 }
644
645 if( !IsOK( m_parent, msg ) )
646 return;
647 }
648
649 for( int row : rowsToMigrate )
650 {
651 wxString relPath = cur_grid()->GetCellValue( row, COL_URI );
652 wxString resolvedPath = ExpandEnvVarSubstitutions( relPath, m_project );
653 wxFileName legacyLib( resolvedPath );
654
655 if( !legacyLib.Exists() )
656 {
657 msg.Printf( _( "Library '%s' not found." ), relPath );
658 DisplayErrorMessage( wxGetTopLevelParent( this ), msg );
659 continue;
660 }
661
662 wxFileName newLib( resolvedPath );
663 newLib.AppendDir( newLib.GetName() + "." + FILEEXT::KiCadDesignBlockLibPathExtension );
664 newLib.SetName( "" );
665 newLib.ClearExt();
666
667 if( newLib.DirExists() )
668 {
669 msg.Printf( _( "Folder '%s' already exists. Do you want overwrite any existing design blocks?" ),
670 newLib.GetFullPath() );
671
672 switch( wxMessageBox( msg, _( "Migrate Library" ), wxYES_NO | wxCANCEL | wxICON_QUESTION, m_parent ) )
673 {
674 case wxYES: break;
675 case wxNO: continue;
676 case wxCANCEL: return;
677 }
678 }
679
680 wxString options = cur_grid()->GetCellValue( row, COL_OPTIONS );
681 std::map<std::string, UTF8> props( LIBRARY_TABLE::ParseOptions( options.ToStdString() ) );
682
683 if( DESIGN_BLOCK_IO_MGR::ConvertLibrary( &props, legacyLib.GetFullPath(), newLib.GetFullPath() ) )
684 {
685 relPath = NormalizePath( newLib.GetFullPath(), &Pgm().GetLocalEnvVariables(), m_project );
686
687 cur_grid()->SetCellValue( row, COL_URI, relPath );
688 cur_grid()->SetCellValue( row, COL_TYPE, kicadType );
689 }
690 else
691 {
692 DisplayErrorMessage( m_parent, wxString::Format( _( "Failed to save design block library file '%s'." ),
693 newLib.GetFullPath() ) );
694 }
695 }
696}
697
698
700{
701 if( !cur_grid()->CommitPendingChanges() )
702 return;
703
705
706 // We are bound both to the menu and button with this one handler
707 // So we must set the file type based on it
708 if( event.GetEventType() == wxEVT_BUTTON )
709 {
710 // Let's default to adding a kicad design block file for just the design block
712 }
713 else
714 {
715 fileType = static_cast<DESIGN_BLOCK_IO_MGR::DESIGN_BLOCK_FILE_T>( event.GetId() );
716 }
717
719 return;
720
723
724 wxString title = wxString::Format( _( "Select %s Library" ), DESIGN_BLOCK_IO_MGR::ShowType( fileType ) );
725 wxString dummy;
726 wxString* lastDir;
727
728 if( m_notebook->GetSelection() == 0 )
729 lastDir = cfg ? &cfg->m_lastDesignBlockLibDir : &dummy;
730 else
731 lastDir = &m_lastProjectLibDir;
732
733 wxArrayString files;
734 wxWindow* topLevelParent = wxGetTopLevelParent( this );
735
736 if( fileDesc.m_IsFile )
737 {
738 wxFileDialog dlg( topLevelParent, title, *lastDir, wxEmptyString, fileDesc.FileFilter(),
739 wxFD_OPEN | wxFD_FILE_MUST_EXIST | wxFD_MULTIPLE );
740
742
743 if( dlg.ShowModal() == wxID_CANCEL )
744 return;
745
746 dlg.GetPaths( files );
747 *lastDir = dlg.GetDirectory();
748 }
749 else
750 {
751 wxDirDialog dlg( topLevelParent, title, *lastDir,
752 wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST | wxDD_MULTIPLE );
753
754 if( dlg.ShowModal() == wxID_CANCEL )
755 return;
756
757 dlg.GetPaths( files );
758
759 if( !files.IsEmpty() )
760 {
761 wxFileName first( files.front() );
762 *lastDir = first.GetPath();
763 }
764 }
765
766 // Drop the last directory if the path is a .pretty folder
768 cfg->m_lastDesignBlockLibDir = cfg->m_lastDesignBlockLibDir.BeforeLast( wxFileName::GetPathSeparator() );
769
770 const ENV_VAR_MAP& envVars = Pgm().GetLocalEnvVariables();
771 bool addDuplicates = false;
772 bool applyToAll = false;
773 wxString warning = _( "Warning: Duplicate Nicknames" );
774 wxString msg = _( "An item nicknamed '%s' already exists." );
775 wxString detailedMsg = _( "One of the nicknames will need to be changed." );
776
777 for( const wxString& filePath : files )
778 {
779 wxFileName fn( filePath );
780 wxString nickname = LIB_ID::FixIllegalChars( fn.GetName(), true );
781 bool doAdd = true;
782
784 nickname = LIB_ID::FixIllegalChars( fn.GetFullName(), true ).wx_str();
785
786 if( cur_model()->ContainsNickname( nickname ) )
787 {
788 if( !applyToAll )
789 {
790 // The cancel button adds the library to the table anyway
791 addDuplicates = OKOrCancelDialog( m_parent, warning, wxString::Format( msg, nickname ), detailedMsg,
792 _( "Skip" ), _( "Add Anyway" ), &applyToAll ) == wxID_CANCEL;
793 }
794
795 doAdd = addDuplicates;
796 }
797
798 if( doAdd && cur_grid()->AppendRows( 1 ) )
799 {
800 int last_row = cur_grid()->GetNumberRows() - 1;
801
802 cur_grid()->SetCellValue( last_row, COL_NICKNAME, nickname );
803 cur_grid()->SetCellValue( last_row, COL_TYPE, DESIGN_BLOCK_IO_MGR::ShowType( fileType ) );
804
805 // try to use path normalized to an environmental variable or project path
806 wxString path = NormalizePath( filePath, &envVars, m_project->GetProjectPath() );
807
808 // Do not use the project path in the global library table. This will almost
809 // assuredly be wrong for a different project.
810 if( m_notebook->GetSelection() == 0 && path.Contains( wxT( "${KIPRJMOD}" ) ) )
811 path = fn.GetFullPath();
812
813 cur_grid()->SetCellValue( last_row, COL_URI, path );
814 }
815 }
816
817 if( !files.IsEmpty() )
818 {
819 cur_grid()->MakeCellVisible( cur_grid()->GetNumberRows() - 1, COL_ENABLED );
820 cur_grid()->SetGridCursor( cur_grid()->GetNumberRows() - 1, COL_NICKNAME );
821 }
822}
823
824
826{
827 // Account for scroll bars
828 aWidth -= ( m_path_subs_grid->GetSize().x - m_path_subs_grid->GetClientSize().x );
829
830 m_path_subs_grid->AutoSizeColumn( 0 );
831 m_path_subs_grid->SetColSize( 0, std::max( 72, m_path_subs_grid->GetColSize( 0 ) ) );
832 m_path_subs_grid->SetColSize( 1, std::max( 120, aWidth - m_path_subs_grid->GetColSize( 0 ) ) );
833}
834
835
837{
838 adjustPathSubsGridColumns( event.GetSize().GetX() );
839
840 event.Skip();
841}
842
843
845{
846 if( !cur_grid()->CommitPendingChanges() )
847 return false;
848
849 if( !verifyTables() )
850 return false;
851
852 bool success = true;
854 int firstNestedTable = 1;
855 std::optional<LIBRARY_TABLE*> globalTable = manager.Table( LIBRARY_TABLE_TYPE::DESIGN_BLOCK,
857
858 if( globalTable.has_value() && get_model( 0 )->Table() != *globalTable.value() )
859 {
860 m_parent->m_GlobalTableChanged = true;
861 *globalTable.value() = get_model( 0 )->Table();
862
863 globalTable.value()->Save().map_error(
864 [&success]( const LIBRARY_ERROR& aError )
865 {
866 wxMessageBox( _( "Error saving global library table:\n\n" ) + aError.message,
867 _( "File Save Error" ), wxOK | wxICON_ERROR );
868 success = false;
869 } );
870 }
871
872 std::optional<LIBRARY_TABLE*> projectTable = manager.Table( LIBRARY_TABLE_TYPE::DESIGN_BLOCK,
874
875 if( projectTable.has_value() && get_model( 1 )->Table().Path() == projectTable.value()->Path() )
876 {
877 firstNestedTable = 2;
878
879 if( get_model( 1 )->Table() != *projectTable.value() )
880 {
881 m_parent->m_ProjectTableChanged = true;
882 *projectTable.value() = get_model( 1 )->Table();
883
884 projectTable.value()->Save().map_error(
885 [&success]( const LIBRARY_ERROR& aError )
886 {
887 wxMessageBox( _( "Error saving project library table:\n\n" ) + aError.message,
888 _( "File Save Error" ), wxOK | wxICON_ERROR );
889 success = false;
890 } );
891 }
892 }
893
894 for( int ii = firstNestedTable; ii < (int) m_notebook->GetPageCount(); ++ii )
895 {
896 LIB_TABLE_NOTEBOOK_PANEL* panel = static_cast<LIB_TABLE_NOTEBOOK_PANEL*>( m_notebook->GetPage( ii ) );
897
898 if( panel->TableModified() )
899 success &= panel->SaveTable();
900 }
901
903 return success;
904}
905
906
910{
911 wxRegEx re( ".*?(\\$\\{(.+?)\\})|(\\$\\((.+?)\\)).*?", wxRE_ADVANCED );
912 wxASSERT( re.IsValid() ); // wxRE_ADVANCED is required.
913
914 std::set<wxString> unique;
915
916 // clear the table
917 m_path_subs_grid->ClearRows();
918
919 for( int page = 0 ; page < (int) m_notebook->GetPageCount(); ++page )
920 {
922
923 for( int row = 0; row < model->GetNumberRows(); ++row )
924 {
925 wxString uri = model->GetValue( row, COL_URI );
926
927 while( re.Matches( uri ) )
928 {
929 wxString envvar = re.GetMatch( uri, 2 );
930
931 // if not ${...} form then must be $(...)
932 if( envvar.IsEmpty() )
933 envvar = re.GetMatch( uri, 4 );
934
935 // ignore duplicates
936 unique.insert( envvar );
937
938 // delete the last match and search again
939 uri.Replace( re.GetMatch( uri, 0 ), wxEmptyString );
940 }
941 }
942 }
943
944 // Make sure this special environment variable shows up even if it was
945 // not used yet. It is automatically set by KiCad to the directory holding
946 // the current project.
947 unique.insert( PROJECT_VAR_NAME );
949
950 // This special environment variable is used to locate 3d shapes
951 unique.insert( ENV_VAR::GetVersionedEnvVarName( wxS( "3DMODEL_DIR" ) ) );
952
953 for( const wxString& evName : unique )
954 {
955 int row = m_path_subs_grid->GetNumberRows();
956 m_path_subs_grid->AppendRows( 1 );
957
958 m_path_subs_grid->SetCellValue( row, 0, wxT( "${" ) + evName + wxT( "}" ) );
959 m_path_subs_grid->SetCellEditor( row, 0, new GRID_CELL_READONLY_TEXT_EDITOR() );
960
961 wxString evValue;
962 wxGetEnv( evName, &evValue );
963 m_path_subs_grid->SetCellValue( row, 1, evValue );
964 m_path_subs_grid->SetCellEditor( row, 1, new GRID_CELL_READONLY_TEXT_EDITOR() );
965 }
966
967 adjustPathSubsGridColumns( m_path_subs_grid->GetRect().GetWidth() );
968}
969
970//-----</event handlers>---------------------------------
971
972void InvokeEditDesignBlockLibTable( KIWAY* aKiway, wxWindow *aParent )
973{
974 DIALOG_EDIT_LIBRARY_TABLES dlg( aParent, _( "Design Block Libraries" ) );
975 PANEL_DESIGN_BLOCK_LIB_TABLE* panel = new PANEL_DESIGN_BLOCK_LIB_TABLE( &dlg, &aKiway->Prj() );
976
977 dlg.InstallPanel( panel, panel->GetNotebook() );
978
979 // User can choose to save changes on a Cancel, so don't exit on wxID_CANCEL.
980 dlg.ShowModal();
981
982 if( dlg.m_GlobalTableChanged )
984
985 if( dlg.m_ProjectTableChanged )
986 {
987 // Trigger a reload of the table and cancel an in-progress background load
989 }
990
991 // Trigger a load of any new block libraries
993
994 std::string payload = "";
995 aKiway->ExpressMail( FRAME_SCH, MAIL_RELOAD_LIB, payload );
996 aKiway->ExpressMail( FRAME_PCB_EDITOR, MAIL_RELOAD_LIB, payload );
997}
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition bitmap.cpp:106
void openTable(const LIBRARY_TABLE_ROW &aRow) override
DESIGN_BLOCK_GRID_TRICKS(PANEL_DESIGN_BLOCK_LIB_TABLE *aPanel, WX_GRID *aGrid)
PANEL_DESIGN_BLOCK_LIB_TABLE * m_panel
@ KICAD_SEXP
S-expression KiCad file format.
@ DESIGN_BLOCK_FILE_UNKNOWN
0 is not a legal menu id on Mac
static const wxString ShowType(DESIGN_BLOCK_FILE_T aFileType)
static DESIGN_BLOCK_FILE_T GuessPluginTypeFromLibPath(const wxString &aLibPath, int aCtl=0)
static DESIGN_BLOCK_FILE_T EnumFromStr(const wxString &aFileType)
static bool ConvertLibrary(std::map< std::string, UTF8 > *aOldFileProps, const wxString &aOldFilePath, const wxString &aNewFilePath)
Convert a design block library to the latest KiCad format.
static DESIGN_BLOCK_IO * FindPlugin(DESIGN_BLOCK_FILE_T aFileType)
This class builds a wxGridTableBase by wrapping an #DESIGN_BLOCK_LIB_TABLE object.
void SetValue(int aRow, int aCol, const wxString &aValue) override
wxString getFileTypes(WX_GRID *aGrid, int aRow) override
const std::map< DESIGN_BLOCK_IO_MGR::DESIGN_BLOCK_FILE_T, IO_BASE::IO_FILE_DESC > & m_supportedDesignBlockFiles
DESIGN_BLOCK_LIB_TABLE_GRID_DATA_MODEL(DIALOG_SHIM *aParent, WX_GRID *aGrid, const LIBRARY_TABLE &aTableToEdit, LIBRARY_MANAGER_ADAPTER *aAdapter, const wxArrayString &aPluginChoices, wxString *aMRUDirectory, const wxString &aProjectPath, const std::map< DESIGN_BLOCK_IO_MGR::DESIGN_BLOCK_FILE_T, IO_BASE::IO_FILE_DESC > &aSupportedFiles)
void InstallPanel(wxPanel *aPanel, wxAuiNotebook *aNotebook)
An options editor in the form of a two column name/value spreadsheet like (table) UI.
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
Definition dialog_shim.h:80
int ShowModal() override
Add mouse and command handling (such as cut, copy, and paste) to a WX_GRID instance.
Definition grid_tricks.h:57
WX_GRID * m_grid
I don't own the grid, but he owns me.
void SetTooltipEnable(int aCol, bool aEnable=true)
Enable the tooltip for a column.
Definition grid_tricks.h:71
wxString m_lastDesignBlockLibDir
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition kiway.h:340
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr, bool aFromOtherThread=false)
Send aPayload to aDestination from aSource.
Definition kiway.cpp:486
virtual PROJECT & Prj() const
Return the PROJECT associated with this KIWAY.
Definition kiway.cpp:201
The interface used by the classes that actually can load IO plugins for the different parts of KiCad ...
static wxString ExpandURI(const wxString &aShortURI, const PROJECT &aProject)
std::optional< LIBRARY_TABLE * > Table(LIBRARY_TABLE_TYPE aType, LIBRARY_TABLE_SCOPE aScope)
Retrieves a given table; creating a new empty project table if a valid project is loaded and the give...
void ApplyLibOverrides(LIBRARY_TABLE &aTable)
Applies stored user overrides (disabled/hidden) to rows of a read-only table.
void LoadGlobalTables(std::initializer_list< LIBRARY_TABLE_TYPE > aTablesToLoad={})
(Re)loads the global library tables in the given list, or all tables if no list is given
void ProjectChanged()
Notify all adapters that the project has changed.
void SetOptions(const wxString &aOptions)
const wxString & Type() const
static const wxString TABLE_TYPE_NAME
const wxString & URI() const
const wxString & Nickname() const
const wxString & Options() const
LIBRARY_RESULT< void > Save()
static std::map< std::string, UTF8 > ParseOptions(const std::string &aOptionsList)
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)
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 UTF8 FixIllegalChars(const UTF8 &aLibItemName, bool aLib)
Replace illegal LIB_ID item name characters with underscores '_'.
Definition lib_id.cpp:205
This abstract base class mixes any object derived from #LIB_TABLE into wxGridTableBase so the result ...
virtual LIBRARY_TABLE_ROW & at(size_t aIndex)
void SetChangeCallback(std::function< void()> aCallback)
LIBRARY_TABLE_ROW & At(size_t aIndex)
void SetValue(int aRow, int aCol, const wxString &aValue) override
LIB_TABLE_GRID_DATA_MODEL(DIALOG_SHIM *aParent, WX_GRID *aGrid, const LIBRARY_TABLE &aTableToEdit, LIBRARY_MANAGER_ADAPTER *aAdapter, const wxArrayString &aPluginChoices, wxString *aMRUDirectory, const wxString &aProjectPath)
static void MoveUpHandler(WX_GRID *aGrid)
LIB_TABLE_GRID_TRICKS(WX_GRID *aGrid)
static void DeleteRowHandler(WX_GRID *aGrid)
static void AppendRowHandler(WX_GRID *aGrid, const wxString &aType)
static bool VerifyTable(WX_GRID *aGrid, bool aSupportsVisibilityColumn, std::function< void(int aRow, int aCol)> aErrorHandler)
static void MoveDownHandler(WX_GRID *aGrid)
static void AddTable(wxAuiNotebook *aNotebook, const wxString &aTitle, bool aClosable)
PANEL_DESIGN_BLOCK_LIB_TABLE_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxTAB_TRAVERSAL, const wxString &name=wxEmptyString)
Dialog to show and edit symbol library tables.
void moveUpHandler(wxCommandEvent &event) override
void onMigrateLibraries(wxCommandEvent &event) override
void onNotebookPageCloseRequest(wxAuiNotebookEvent &aEvent)
std::vector< std::shared_ptr< LIBRARY_TABLE > > m_nestedTables
void browseLibrariesHandler(wxCommandEvent &event)
void populateEnvironReadOnlyTable()
Populate the readonly environment variable table with names and values by examining all the full_uri ...
std::map< DESIGN_BLOCK_IO_MGR::DESIGN_BLOCK_FILE_T, IO_BASE::IO_FILE_DESC > m_supportedDesignBlockFiles
void moveDownHandler(wxCommandEvent &event) override
DIALOG_EDIT_LIBRARY_TABLES * m_parent
void onNotebookPageChangeRequest(wxAuiNotebookEvent &aEvent)
DESIGN_BLOCK_LIB_TABLE_GRID_DATA_MODEL * get_model(int aPage) const
void appendRowHandler(wxCommandEvent &event) override
PANEL_DESIGN_BLOCK_LIB_TABLE(DIALOG_EDIT_LIBRARY_TABLES *aParent, PROJECT *aProject)
void onSizeGrid(wxSizeEvent &event) override
void deleteRowHandler(wxCommandEvent &event) override
void AddTable(LIBRARY_TABLE *table, const wxString &aTitle, bool aClosable)
void OpenTable(const std::shared_ptr< LIBRARY_TABLE > &table, const wxString &aTitle)
bool verifyTables()
Trim important fields, removes blank row entries, and checks for duplicates.
DESIGN_BLOCK_LIB_TABLE_GRID_DATA_MODEL * cur_model() const
static wxString GetDefaultUserDesignBlocksPath()
Gets the default path we point users to create projects.
Definition paths.cpp:104
void PreloadDesignBlockLibraries(KIWAY *aKiway)
Starts a background job to preload the global and project design block libraries.
Definition pgm_base.cpp:892
virtual ENV_VAR_MAP & GetLocalEnvVariables() const
Definition pgm_base.cpp:792
virtual LIBRARY_MANAGER & GetLibraryManager() const
Definition pgm_base.h:125
Container for project specific data.
Definition project.h:63
wxString wx_str() const
Definition utf8.cpp:41
const wxString ExpandEnvVarSubstitutions(const wxString &aString, const PROJECT *aProject)
Replace any environment variable & text variable references with their values.
Definition common.cpp:776
wxString JoinExtensions(const std::vector< std::string > &aExts)
Join a list of file extensions for use in a file dialog.
Definition common.cpp:867
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.
Definition confirm.cpp:165
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
Definition confirm.cpp:274
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
Definition confirm.cpp:217
This file is part of the common library.
#define _(s)
wxString NormalizePath(const wxFileName &aFilePath, const ENV_VAR_MAP *aEnvVars, const wxString &aProjectPath)
Normalize a file path to an environmental variable, if possible.
Definition env_paths.cpp:73
Helper functions to substitute paths with environmental variables.
Functions related to environment variables, including help functions.
@ FRAME_PCB_EDITOR
Definition frame_type.h:38
@ FRAME_SCH
Definition frame_type.h:30
static const std::string KiCadDesignBlockLibPathExtension
static const std::string DesignBlockLibraryTableFileName
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.
Definition io_mgr.h:33
PROJECT & Prj()
Definition kicad.cpp:727
This file contains miscellaneous commonly used macros and functions.
@ MAIL_RELOAD_LIB
Definition mail_type.h:53
KICOMMON_API wxString GetVersionedEnvVarName(const wxString &aBaseName)
Construct a versioned environment variable based on this KiCad major version.
Definition env_vars.cpp:78
void AllowNetworkFileSystems(wxDialog *aDialog)
Configure a file dialog to show network and virtual file systems.
Definition wxgtk/ui.cpp:521
void InvokeEditDesignBlockLibTable(KIWAY *aKiway, wxWindow *aParent)
PGM_BASE & Pgm()
The global program "get" accessor.
see class PGM_BASE
#define PROJECT_VAR_NAME
A variable name whose value holds the current project directory.
Definition project.h:38
T * GetAppSettings(const char *aFilename)
std::vector< FAB_LAYER_COLOR > dummy
MODEL3D_FORMAT_TYPE fileType(const char *aFileName)
Container that describes file type info.
Definition io_base.h:43
bool m_IsFile
Whether the library is a folder or a file.
Definition io_base.h:51
wxString FileFilter() const
Definition io_base.cpp:40
wxString message
Container that describes file type info for the add a library options.
bool m_IsFile
Whether the library is a folder or a file.
wxString m_Description
Description shown in the file picker dialog.
wxString m_FileFilter
Filter used for file pickers if m_IsFile is true.
DESIGN_BLOCK_IO_MGR::DESIGN_BLOCK_FILE_T m_Plugin
wxString m_FolderSearchExtension
In case of folders it stands for extensions of files stored inside.
std::string path
KIBIS_MODEL * model
wxString result
Test unit parsing edge cases and error handling.
Definition of file extensions used in Kicad.