37#include <wx/filename.h>
90 auto libSelectedCondition =
100 auto libInferredCondition =
107 auto fpSelectedCondition =
114 auto fpExportCondition =
118 return fp !=
nullptr;
121 auto canOpenExternally =
126 bool ret = !
m_frame->IsContentModified();
134 ctxMenu.AddSeparator( 10 );
136 ctxMenu.AddItem(
ACTIONS::saveAs, libSelectedCondition || fpSelectedCondition, 10 );
137 ctxMenu.AddItem(
ACTIONS::revert, libSelectedCondition || libInferredCondition, 10 );
139 ctxMenu.AddSeparator( 10 );
148 ctxMenu.AddSeparator( 100 );
154 ctxMenu.AddSeparator( 200 );
160 ctxMenu.AddSeparator( 200 );
161 ctxMenu.AddItem(
ACTIONS::openDirectory, canOpenExternally && ( libSelectedCondition || fpSelectedCondition ), 200 );
176 const LIB_ID& aTargetLib )
194 _(
"The footprint could not be added to the selected library ('%s'). "
195 "This library is read-only." ),
206 m_frame->SaveFootprint( &aFootprint );
218 if( !
m_frame->BeginNewFootprint( libraryName ) )
221 FOOTPRINT* newFootprint =
m_frame->CreateNewFootprint( wxEmptyString, libraryName );
228 if(
m_frame->GetTabsPanel() && !libraryName.IsEmpty() )
232 m_frame->AddFootprintToBoard( newFootprint );
240 m_frame->Zoom_Automatique(
false );
241 m_frame->GetScreen()->SetContentModified();
246 m_frame->GetCanvas()->ForceRefresh();
247 m_frame->Update3DView(
true,
true );
249 m_frame->SyncLibraryTree(
false );
258 if(
m_frame->IsContentModified() )
286 m_frame->AddFootprintToBoard( newFootprint );
294 m_frame->Zoom_Automatique(
false );
295 m_frame->GetScreen()->SetContentModified();
302 m_frame->Update3DView(
true,
true );
304 m_frame->SyncLibraryTree(
false );
339 if(
m_frame->GetTargetFPID().GetLibItemName().empty() )
344 const wxString& src_libNickname =
m_frame->GetTargetFPID().GetLibNickname();
346 wxCHECK( optUri, 0 );
348 if(
m_frame->SaveLibraryAs( *optUri ) )
349 m_frame->SyncLibraryTree(
true );
366 m_frame->SyncLibraryTree(
true );
376 m_frame->SyncLibraryTree(
true );
397 if( fpID ==
m_frame->GetLoadedFPID() )
418 wxString newLib =
m_frame->GetLibTree()->GetSelectedLibId().GetLibNickname();
422 newName +=
_(
"_copy" );
427 m_frame->SyncLibraryTree(
true );
442 if( fpID ==
m_frame->GetLoadedFPID() )
449 m_frame->SyncLibraryTree(
true );
470 if( !libTool->
RenameLibrary(
_(
"Change Footprint Name" ), oldName,
471 [&](
const wxString& aNewName )
475 if( newName.IsEmpty() )
477 wxMessageBox(
_(
"Footprint must have a name." ) );
482 if( oldName != newName && adapter->FootprintExists( libraryName, newName ) )
484 msg = wxString::Format(
_(
"Footprint '%s' already exists in library '%s'." ),
485 newName, libraryName );
488 wxOK | wxCANCEL | wxICON_WARNING );
489 errorDlg.SetOKLabel(
_(
"Overwrite" ) );
500 if( newName == oldName )
505 if( fpID ==
m_frame->GetLoadedFPID() )
535 adapter->DeleteFootprint( libraryName, oldName );
549 m_frame->RenameFootprintTab( fpID,
LIB_ID( libraryName, newName ) );
551 wxDataViewItem treeItem =
m_frame->GetLibTreeAdapter()->FindItem( fpID );
568 if(
frame->DeleteFootprintFromLibrary( fpID,
true ) )
572 if(
frame->GetTabsPanel() )
573 frame->CloseFootprintTab( fpID );
574 else if( fpID ==
frame->GetLoadedFPID() )
575 frame->Clear_Pcb(
false );
577 frame->SyncLibraryTree(
true );
586 bool is_last_fp_from_brd =
m_frame->IsCurrentFPFromBoard();
588 if( !
m_frame->Clear_Pcb(
true ) )
594 if(
m_frame->GetBoard()->GetFirstFootprint() )
595 m_frame->GetBoard()->GetFirstFootprint()->ClearFlags();
597 frame()->ClearUndoRedoList();
600 if( is_last_fp_from_brd )
615 m_frame->ExportFootprint( fp );
625 const wxString libNickname =
m_frame->GetTargetFPID().GetUniStringLibNickname();
627 if( libNickname.IsEmpty() )
629 m_frame->ShowInfoBarError(
_(
"Select a library to compare against another." ) );
635 wxCHECK( adapter, 0 );
637 std::optional<LIBRARY_TABLE_ROW*> row = adapter->
GetRow( libNickname );
641 m_frame->ShowInfoBarError( wxString::Format(
_(
"Library '%s' is not in the footprint "
649 wxFileName currentFn = wxFileName::DirName(
651 currentFn.MakeAbsolute();
652 const wxString currentPath = currentFn.GetPath();
654 wxDirDialog dlg(
m_frame,
_(
"Choose .pretty Folder to Compare With" ), wxEmptyString,
655 wxDD_DIR_MUST_EXIST );
657 if( dlg.ShowModal() != wxID_OK )
660 wxFileName otherFn = wxFileName::DirName( dlg.GetPath() );
661 otherFn.MakeAbsolute();
663 if( otherFn.GetDirs().IsEmpty()
664 || !otherFn.GetDirs().Last().EndsWith( wxS(
".pretty" ) ) )
667 _(
"Select a KiCad footprint library folder (ends with .pretty)." ) );
671 if( otherFn.SameAs( currentFn ) )
674 _(
"Select a different .pretty folder than the active library." ) );
678 const wxString otherPath = otherFn.GetPath();
680 std::vector<std::unique_ptr<FOOTPRINT>> beforeStorage;
681 std::vector<std::unique_ptr<FOOTPRINT>> afterStorage;
686 [&](
const wxString& aPath,
687 std::vector<std::unique_ptr<FOOTPRINT>>& aOwners,
693 aOwners = std::move( loaded.first );
694 aMap = std::move( loaded.second );
700 wxString::Format(
_(
"Failed to load %s: %s" ), aPath, ioe.
What() ) );
702 catch(
const std::exception& e )
705 wxString::Format(
_(
"Failed to load %s: %s" ), aPath,
706 wxString::FromUTF8( e.what() ) ) );
712 if( !load( currentPath, beforeStorage, beforeMap ) )
715 if( !load( otherPath, afterStorage, afterMap ) )
735 wxString
path = wxEmptyString;
745 wxString fileExt = wxEmptyString;
748 if( !libItemName.IsEmpty() )
751 wxFileName fileName(
path, libItemName, fileExt );
752 wxString explorerCommand;
755 explorerCommand = cfg->m_System.file_explorer;
757 if( explorerCommand.IsEmpty() )
759 path = fileName.GetFullPath().BeforeLast( wxFileName::GetPathSeparator() );
761 if( !
path.IsEmpty() && wxDirExists(
path ) )
767 if( !explorerCommand.EndsWith(
"%F" ) )
769 wxMessageBox(
_(
"Missing/malformed file explorer argument '%F' in common settings." ) );
773 wxString escapedFilePath = fileName.GetFullPath();
774 escapedFilePath.Replace( wxS(
"\"" ), wxS(
"_" ) );
776 wxString fileArg = wxEmptyString;
777 fileArg <<
'"' << escapedFilePath <<
'"';
779 explorerCommand.Replace( wxT(
"%F" ), fileArg );
781 if( !explorerCommand.IsEmpty() )
782 wxExecute( explorerCommand );
792 if( fullEditorName.IsEmpty() )
794 wxMessageBox(
_(
"No text editor selected in KiCad. Please choose one." ) );
804 wxString libItemName = wxEmptyString;
811 libItemName = *optUri;
812 libItemName << wxFileName::GetPathSeparator();
816 if( !wxFileName::FileExists( libItemName ) )
819 ExecuteFile( fullEditorName, libItemName.wc_str(),
nullptr,
false );
831 if( !url.has_value() )
833 frame()->ShowInfoBarMsg(
_(
"No datasheet found in the footprint." ) );
840 { m_frame->GetBoard(), footprint } );
849 m_frame->LoadFootprintFromLibrary(
m_frame->GetLibTree()->GetSelectedLibId() );
866 if( !
m_frame->IsLibraryTreeShown() )
875 m_frame->ToggleLayersManager();
892 LIB_ID treeLibId =
m_frame->GetLibTree()->GetSelectedLibId();
896 && ( !
m_frame->GetBoard()->GetFirstFootprint()
897 ||
m_frame->GetBoard()->GetFirstFootprint()->GetFPID() != treeLibId ) )
908 m_frame->GetCanvas()->Refresh();
920 if( !libraryFootprint )
924 std::unique_ptr<BOARD> tempBoard(
new BOARD() );
928 tempBoard->SetDesignSettings(
m_frame->GetBoard()->GetDesignSettings() );
929 tempBoard->SetProject( &
m_frame->Prj(),
true );
931 tempBoard->SynchronizeProperties();
935 delete libraryFootprint;
937 tempBoard->Add( tempFootprint );
938 tempFootprint->
SetParent( tempBoard.get() );
949 tempBoard->Remove( tempFootprint );
960 wxDataViewItem treeItem =
m_frame->GetLibTreeAdapter()->FindItem( oldFPID );
961 m_frame->UpdateLibraryTree( treeItem, tempFootprint );
962 m_frame->SyncLibraryTree(
true );
965 delete tempFootprint;
969 delete tempFootprint;
1043 if( ids.count( aItem->m_Uuid ) )
1047 boardItem->ResetUuid();
1050 ids.insert( aItem->m_Uuid );
1069 processItem( item );
1072 processItem( zone );
1075 processItem(
group );
1079 errors += duplicates;
1080 details += wxString::Format(
_(
"%d duplicate IDs replaced.\n" ), duplicates );
1087 wxString msg = wxString::Format(
_(
"%d potential problems repaired." ), errors );
1107 for( wxWindow* focus = wxWindow::FindFocus(); focus; focus = focus->GetParent() )
1109 if( focus == appearance )
1122 m_frame->AdvanceFootprintTab(
true );
1132 m_frame->AdvanceFootprintTab(
false );
1139 m_frame->CloseActiveFootprintTab();
static TOOL_ACTION openWithTextEditor
static TOOL_ACTION revert
static TOOL_ACTION saveAs
static TOOL_ACTION openDirectory
static TOOL_ACTION showDatasheet
static TOOL_ACTION zoomFitScreen
static TOOL_ACTION showProperties
static TOOL_ACTION refreshPreview
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
const FOOTPRINTS & Footprints() const
File-compare dialog (Phase 7).
void SelectToolbarAction(const TOOL_ACTION &aAction)
Select the given action in the toolbar group which contains it, if any.
KIGFX::VIEW_CONTROLS * GetViewControls() const
Return a pointer to the #VIEW_CONTROLS instance used in the panel.
void ForceRefresh()
Force a redraw.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A base class for most all the KiCad significant classes used in schematics and boards.
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
virtual void SetParent(EDA_ITEM *aParent)
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()
Diff two .pretty footprint library directories.
static std::pair< std::vector< std::unique_ptr< FOOTPRINT > >, FOOTPRINT_MAP > LoadLibrary(const wxString &aPrettyPath)
Load a .pretty directory into a FOOTPRINT_MAP.
DOCUMENT_DIFF Diff() override
Produce a DOCUMENT_DIFF of the inputs the concrete differ was constructed with.
std::map< wxString, const FOOTPRINT * > FOOTPRINT_MAP
Helper class to create more flexible dialogs, including 'do not show again' checkbox handling.
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const override
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
virtual void SetCrossHairCursorPosition(const VECTOR2D &aPosition, bool aWarpView=true)=0
Move the graphic crosshair cursor to the requested position expressed in world coordinates.
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
virtual bool ShowModal(wxString *aResult=nullptr, wxWindow *aResultantFocusWindow=nullptr)
Show this wxFrame as if it were a modal dialog, with all other instantiated wxFrames disabled until t...
bool Destroy() override
Our version of Destroy() which is virtual from wxWidgets.
Module editor specific tools.
bool RenameLibrary(const wxString &aTitle, const wxString &aName, std::function< bool(const wxString &aNewName)> aValidator)
void AddContextMenuItems(CONDITIONAL_MENU *aMenu)
std::optional< LIBRARY_TABLE_ROW * > GetRow(const wxString &aNickname, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH) const
Like LIBRARY_MANAGER::GetRow but filtered to the LIBRARY_TABLE_TYPE of this adapter.
std::optional< wxString > GetFullURI(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, bool aSubstituted=false)
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
A logical library item identifier and consists of various portions much like a URI.
bool IsValid() const
Check if this LID_ID is valid.
int SetLibNickname(const UTF8 &aLibNickname)
Override the logical library name portion of the LIB_ID to aLibNickname.
const wxString GetUniStringLibNickname() const
const UTF8 & GetLibItemName() const
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
static TOOL_ACTION lineModeFree
Unconstrained angle mode (icon lines_any)
static TOOL_ACTION deleteFootprint
static TOOL_ACTION renameFootprint
static TOOL_ACTION showLayersManager
static TOOL_ACTION createFootprint
static TOOL_ACTION editFootprint
static TOOL_ACTION exportFootprint
static TOOL_ACTION editTextAndGraphics
static TOOL_ACTION lineMode45
45-degree-or-orthogonal mode (icon hv45mode)
static TOOL_ACTION angleSnapModeChanged
Notification event when angle mode changes.
static TOOL_ACTION newFootprint
static TOOL_ACTION defaultPadProperties
static TOOL_ACTION prevFootprintTab
static TOOL_ACTION importFootprint
static TOOL_ACTION pasteFootprint
static TOOL_ACTION footprintProperties
static TOOL_ACTION lineMode90
90-degree-only mode (icon lines90)
static TOOL_ACTION closeFootprintTab
static TOOL_ACTION nextFootprintTab
static TOOL_ACTION checkFootprint
static TOOL_ACTION editLibFpInFpEditor
static TOOL_ACTION duplicateFootprint
static TOOL_ACTION cutFootprint
static TOOL_ACTION repairFootprint
static TOOL_ACTION compareFpLibraryWithFile
static TOOL_ACTION copyFootprint
static TOOL_ACTION cleanupGraphics
APPEARANCE_CONTROLS * GetAppearancePanel()
A set of BOARD_ITEMs (i.e., without duplicates).
virtual const wxString & GetTextEditor(bool aCanShowFileChooser=true)
Return the path to the preferred text editor application.
virtual LIBRARY_MANAGER & GetLibraryManager() const
static FOOTPRINT_LIBRARY_ADAPTER * FootprintLibAdapter(PROJECT *aProject)
Look for files in a number of paths.
static bool ShowAlways(const SELECTION &aSelection)
The default condition function (always returns true).
A modified version of the wxInfoBar class that allows us to:
bool HasCloseButton() const
void Dismiss() override
Dismisses the infobar and updates the containing layout and AUI manager (if one is provided).
Handle a list of polygons defining a copper zone.
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.
bool GetAssociatedDocument(wxWindow *aParent, const wxString &aDocName, PROJECT *aProject, SEARCH_STACK *aPaths, std::vector< EMBEDDED_FILES * > aFilesStack)
Open a document (file) with the suitable browser.
This file is part of the common library.
LEADER_MODE
The kind of the leader line.
@ DIRECT
Unconstrained point-to-point.
int ExecuteFile(const wxString &aEditorName, const wxString &aFileName, wxProcess *aCallback, bool aFileForKicad)
Call the executable file aEditorName with the parameter aFileName.
static const std::string KiCadFootprintFileExtension
bool LaunchExternal(const wxString &aPath)
Launches the given file or folder in the host OS.
Class to handle a set of BOARD_ITEMs.
PGM_BASE & Pgm()
The global program "get" accessor.
T * GetAppSettings(const char *aFilename)
The full set of changes between two parsed documents of one type.
wxString result
Test unit parsing edge cases and error handling.
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D
Definition of file extensions used in Kicad.