KiCad PCB EDA Suite
Loading...
Searching...
No Matches
footprint_edit_frame.h
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 modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * 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#ifndef FOOTPRINT_EDIT_FRAME_H
21#define FOOTPRINT_EDIT_FRAME_H
22
23#include <functional>
24#include <memory>
25#include <vector>
26
27#include <pcb_base_frame.h>
28#include <pcb_base_edit_frame.h>
29#include <pcb_io/pcb_io_mgr.h>
30#include <widgets/lib_tree.h>
31#include <footprint_tree_pane.h>
33
35class FP_LIB_TABLE;
39class EDA_LIST_DIALOG;
43
46
47namespace PCB { struct IFACE; } // A KIFACE coded in pcbnew.cpp
48
49
51{
52public:
54
59 static const wxChar* GetFootprintEditorFrameName();
60
73 std::vector<std::unique_ptr<FOOTPRINT_EDITOR_TAB_CONTEXT>>& aContexts, int aSlot,
74 std::unique_ptr<FOOTPRINT_EDITOR_TAB_CONTEXT> aNew,
75 const std::function<void( const FOOTPRINT_EDITOR_TAB_CONTEXT& )>& aInstallSuccessor );
76
89 static bool prepareFootprintTabHandoff( FOOTPRINT* aFootprint, bool aHasTabs );
90
100
112 static EDIT_NOTICE editNoticeFor( const FOOTPRINT* aFootprint, bool aIsFromBoard,
113 const std::function<bool( const wxString& )>& aIsLibWritable );
114
116 BOARD_ITEM_CONTAINER* GetModel() const override;
117 SELECTION& GetCurrentSelection() override;
118
124 bool IsContentModified() const override;
125
126 bool IsCurrentFPFromBoard() const;
127
128 bool CanCloseFPFromBoard( bool doClose );
129
131
135 EDA_ANGLE GetRotationAngle() const override;
136
137 APP_SETTINGS_BASE* config() const override;
138
140
141 const PCB_PLOT_PARAMS& GetPlotSettings() const override;
142 void SetPlotSettings( const PCB_PLOT_PARAMS& aSettings ) override;
143
145
146 void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
147 void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
148
149 COLOR_SETTINGS* GetColorSettings( bool aForceRefresh = false ) const override;
150
151 std::unique_ptr<GRID_HELPER> MakeGridHelper() override;
152
153 const BOX2I GetDocumentExtents( bool aIncludeAllVisible = true ) const override;
154
155 bool canCloseWindow( wxCloseEvent& Event ) override;
156 void doCloseWindow() override;
157 void CloseFootprintEditor( wxCommandEvent& Event );
158 void OnExitKiCad( wxCommandEvent& aEvent );
159
165 void SwitchCanvas( EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType ) override;
166
171 void UpdateUserInterface();
172
174 void UpdateMsgPanel() override;
175
179 void HardRedraw() override;
180
189 void ReCreateLayerBox( bool aForceResizeToolbar = true );
190
191 // The Tool Framework initialization, for GAL mode
192 void setupTools();
193
194 void OnSaveFootprintAsPng( wxCommandEvent& event );
195
196 bool IsLibraryTreeShown() const override;
197 void ToggleLibraryTree() override;
198 void FocusLibraryTreeInput() override;
199
200 void ToggleLayersManager();
201
209 bool SaveLibraryAs( const wxString& aLibraryPath );
210
212 void OnEditItemRequest( BOARD_ITEM* aItem ) override;
213
214 void LoadFootprintFromLibrary( LIB_ID aFPID );
215
222 bool BeginNewFootprint( const wxString& aLibrary );
223
228 void CloseFootprintTab( const LIB_ID& aFPID );
229
234 void RenameFootprintTab( const LIB_ID& aOldId, const LIB_ID& aNewId );
235
239 wxObjectDataPtr<LIB_TREE_MODEL_ADAPTER>& GetLibTreeAdapter() { return m_adapter; }
240
247 bool SaveFootprint( FOOTPRINT* aFootprint );
248 bool DuplicateFootprint( FOOTPRINT* aFootprint );
249 bool SaveFootprintAs( FOOTPRINT* aFootprint );
250 bool SaveFootprintToBoard( bool aAddNew );
251 bool SaveFootprintInLibrary( FOOTPRINT* aFootprint, const wxString& aLibraryName );
252 bool RevertFootprint();
253
260 void OnModify() override;
261
268 bool Clear_Pcb( bool doAskAboutUnsavedChanges );
269
271 LIB_ID GetLoadedFPID() const;
272
275 LIB_ID GetTargetFPID() const;
276
277 void ClearModify();
278
282 void ExportFootprint( FOOTPRINT* aFootprint );
283
290 FOOTPRINT* ImportFootprint( const wxString& aName = wxT( "" ) );
291
299 bool LoadFootprintFromBoard( FOOTPRINT* aFootprint );
300
307
311 bool DeleteFootprintFromLibrary( const LIB_ID& aFPID, bool aConfirm );
312
316 COLOR4D GetGridColor() override;
317
319 void SetActiveLayer( PCB_LAYER_ID aLayer ) override;
320
321 void OnDisplayOptionsChanged() override;
322
324 void ActivateGalCanvas() override;
325
335 bool OpenProjectFiles( const std::vector<wxString>& aFileSet, int aCtl = 0 ) override;
336
341 void AddFootprintToBoard( FOOTPRINT* aFootprint ) override;
342
347 void ReloadFootprint( FOOTPRINT* aFootprint ) override;
348
352 void ShowChangedLanguage() override;
353
357 void CommonSettingsChanged( int aFlags ) override;
358
359 LIB_TREE* GetLibTree() const override
360 {
361 return m_treePane->GetLibTree();
362 }
363
368 void SyncLibraryTree( [[maybe_unused]] bool aProgress );
369
373 void RefreshLibraryTree();
374
378 void UpdateLibraryTree( const wxDataViewItem& treeItem, FOOTPRINT* aFootprint );
379
381 void UpdateView();
382
383 void UpdateTitle();
384
385 void FocusOnLibID( const LIB_ID& aLibID );
386
387 void KiwayMailIn( KIWAY_MAIL_EVENT& mail ) override;
388
393
397 void AdvanceFootprintTab( bool aForward );
398
403
404 DECLARE_EVENT_TABLE()
405
406protected:
408 FOOTPRINT_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent );
409
413 void resolveCanvasType() override;
414
419 void initLibraryTree();
420
422 void retainLastFootprint();
423
424 void updateEnabledLayers();
425
429 void updateInfoBar();
430
434 void doReCreateMenuBar() override;
435
439 void editFootprintProperties( FOOTPRINT* aFootprint );
440
441 void setupUIConditions() override;
442
443 void centerItemIdleHandler( wxIdleEvent& aEvent );
444
451 void OnTabCharHook( wxKeyEvent& aEvent );
452
453protected:
455
456private:
457 friend struct PCB::IFACE;
458
462 FOOTPRINT_EDITOR_TAB_CONTEXT* findOrCreateFootprintTab( const LIB_ID& aLibId, bool aAsPreview );
463
473
482
489 void installFootprintOnActiveBoard( FOOTPRINT* aFootprint );
490
495
504
512
517 void borrowBoardNonDestructive( BOARD* aBoard );
518
522 bool promptAndCloseFootprintTab( int aIdx );
523
533
539
545
553
558
566 void detachTabsForFullClear( BOARD* aReplacement );
567
571 bool activeBoardOwnedByTab() const;
572
575
577
579
583
587
591
594
597
600};
601
602#endif // FOOTPRINT_EDIT_FRAME_H
BOX2< VECTOR2I > BOX2I
Definition box2.h:918
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Container for design settings for a BOARD object.
Abstract interface for BOARD_ITEMs capable of storing other items inside.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:83
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:373
Color settings are a bit different than most of the settings objects in that there can be more than o...
A dialog which shows:
The tab strip plus the single shared GAL canvas.
One open footprint tab owning its fp-holder board, lent to the frame by raw pointer while active.
EDITOR_TABS_PANEL * GetTabsPanel() const
Return the tabbed-document strip, or nullptr if the tabs UI is not mounted.
void CloseFootprintEditor(wxCommandEvent &Event)
BOARD_DESIGN_SETTINGS & GetDesignSettings() const override
Return the BOARD_DESIGN_SETTINGS for the open project.
void setupUIConditions() override
Setup the UI conditions for the various actions and their controls in this frame.
void ActivateGalCanvas() override
Use to start up the GAL drawing canvas.
void editFootprintProperties(FOOTPRINT *aFootprint)
Run the Footprint Properties dialog and handle changes made in it.
void detachTabsForFullClear(BOARD *aReplacement)
Install aReplacement as the active document non-destructively, then drop every tab context and free t...
FOOTPRINT_EDITOR_TAB_CONTEXT * createUnsavedFootprintTab()
Open a session-only tab for an imported footprint over a fresh fp-holder board and make it the active...
void HardRedraw() override
Refresh the library tree and redraw the window.
void UpdateLibraryTree(const wxDataViewItem &treeItem, FOOTPRINT *aFootprint)
Update a single node in the library tree.
void updateInfoBar()
Update the infobar for the currently-active tab.
static const wxChar * GetFootprintEditorFrameName()
void SyncLibraryTree(bool aProgress)
Synchronize the footprint library tree to the current state of the footprint library table.
BOARD * m_protectedBorrowedBoard
Board still owned by a displaced preview context while AddTab() synchronously installs its successor.
EDIT_NOTICE
The infobar notice that applies to the footprint being edited.
@ READ_ONLY_LIB
Editing a footprint whose library cannot be written.
@ FROM_BOARD
Editing a footprint pulled off a board, so saving updates the board only.
@ NONE
Nothing to report, so any existing notice is dismissed.
bool SaveFootprintInLibrary(FOOTPRINT *aFootprint, const wxString &aLibraryName)
FOOTPRINT_EDITOR_TAB_CONTEXT * m_activeTab
bool SaveLibraryAs(const wxString &aLibraryPath)
Save a library to a new name and/or library type.
void OnSaveFootprintAsPng(wxCommandEvent &event)
bool SaveFootprintAs(FOOTPRINT *aFootprint)
bool DuplicateFootprint(FOOTPRINT *aFootprint)
void FocusLibraryTreeInput() override
bool promptToSaveInactiveTransientTabs()
Prompt to save each dirty session-only tab that is not the active one, since the active tab's unsaved...
BOARD_ITEM_CONTAINER * GetModel() const override
void ReCreateLayerBox(bool aForceResizeToolbar=true)
Re create the layer Box by clearing the old list, and building a new one from the new layers names an...
LIB_TREE * GetLibTree() const override
bool canCloseWindow(wxCloseEvent &Event) override
void UpdateMsgPanel() override
Redraw the message panel.
void ExportFootprint(FOOTPRINT *aFootprint)
Create a file containing only one footprint.
LIB_ID GetTargetFPID() const
Return the LIB_ID of the part selected in the footprint tree, or the loaded part if there is no selec...
LIB_ID GetLoadedFPID() const
Return the LIB_ID of the part being edited.
APP_SETTINGS_BASE * config() const override
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
void refreshFootprintTabState()
Re-query and re-render the tab labels from the active context's modified state.
bool SaveFootprintToBoard(bool aAddNew)
EDITOR_TABS_PANEL * m_tabsPanel
FOOTPRINT_EDITOR_TAB_CONTEXT * findOrCreateFootprintInstanceTab(FOOTPRINT *aBoardFootprint)
Find or create the instance tab for a placed board footprint and make it the active tab.
void detachActiveFootprintTab()
Snapshot the active tab's view/selection, fold the dirty state back into it, and clear m_activeTab.
void SetPlotSettings(const PCB_PLOT_PARAMS &aSettings) override
bool SaveFootprint(FOOTPRINT *aFootprint)
Save in an existing library a given footprint.
void OnTabCharHook(wxKeyEvent &aEvent)
Cycle footprint tabs from the CHAR_HOOK stream, since GTK cannot register WXK_TAB as a menu accelerat...
void CloseFootprintTab(const LIB_ID &aFPID)
Close the open tab for aFPID, if any, without prompting and leaving the other tabs open.
std::unique_ptr< API_HANDLER_FOOTPRINT > m_apiHandler
void initLibraryTree()
Make sure the footprint info list is loaded (with a progress dialog) and then initialize the footprin...
void LoadFootprintFromLibrary(LIB_ID aFPID)
bool BeginNewFootprint(const wxString &aLibrary)
Prepare the editor for a new footprint, returning false if the user cancels.
wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > & GetLibTreeAdapter()
Return the adapter object that provides the stored data.
bool m_silentFootprintTabClose
While true, promptAndCloseFootprintTab() skips the unsaved-changes dialog.
static EDIT_NOTICE editNoticeFor(const FOOTPRINT *aFootprint, bool aIsFromBoard, const std::function< bool(const wxString &)> &aIsLibWritable)
Decide which infobar notice applies to aFootprint.
FOOTPRINT * ImportFootprint(const wxString &aName=wxT(""))
Read a file containing only one footprint.
std::map< KIID, KIID > m_boardFootprintUuids
void LoadSettings(APP_SETTINGS_BASE *aCfg) override
Load common frame parameters from a configuration file.
FOOTPRINT * SelectFootprintFromBoard(BOARD *aPcb)
Display the list of footprints currently existing on the BOARD.
std::unique_ptr< API_HANDLER_COMMON > m_apiHandlerCommon
void ShowChangedLanguage() override
Update visible items after a language change.
void resolveCanvasType() override
Determines the Canvas type to load (with prompt if required) and initializes m_canvasType.
void CommonSettingsChanged(int aFlags) override
Called after the preferences dialog is run.
bool IsContentModified() const override
Get if any footprints or libraries have been modified but not saved.
void UpdateUserInterface()
Update the layer manager and other widgets from the board setup (layer and items visibility,...
wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > m_adapter
bool IsLibraryTreeShown() const override
FOOTPRINT_EDITOR_SETTINGS * m_editorSettings
void centerItemIdleHandler(wxIdleEvent &aEvent)
const BOX2I GetDocumentExtents(bool aIncludeAllVisible=true) const override
Return bounding box of document with option to not include some items.
bool Clear_Pcb(bool doAskAboutUnsavedChanges)
Delete all and reinitialize the current board.
Definition initpcb.cpp:104
void RenameFootprintTab(const LIB_ID &aOldId, const LIB_ID &aNewId)
Update the open tab for aOldId, if any, to the renamed footprint aNewId so its label and key track th...
static FOOTPRINT_EDITOR_TAB_CONTEXT * placeReusedTabContext(std::vector< std::unique_ptr< FOOTPRINT_EDITOR_TAB_CONTEXT > > &aContexts, int aSlot, std::unique_ptr< FOOTPRINT_EDITOR_TAB_CONTEXT > aNew, const std::function< void(const FOOTPRINT_EDITOR_TAB_CONTEXT &)> &aInstallSuccessor)
Replace the tab context at aSlot with aNew, running aInstallSuccessor before the displaced context is...
void borrowBoardNonDestructive(BOARD *aBoard)
Swap the frame's borrowed board pointer to aBoard without deleting the previous board,...
FOOTPRINT_EDIT_FRAME(KIWAY *aKiway, wxWindow *aParent)
protected so only friend PCB::IFACE::CreateWindow() can act as sole factory.
void KiwayMailIn(KIWAY_MAIL_EVENT &mail) override
Receive #KIWAY_ROUTED_EVENT messages from other players.
void OnEditItemRequest(BOARD_ITEM *aItem) override
Install the corresponding dialog editor for the given item.
SELECTION & GetCurrentSelection() override
Get the current selection from the canvas area.
void AdvanceFootprintTab(bool aForward)
Advance the active tab forward or backward in MRU order.
bool CanCloseFPFromBoard(bool doClose)
void activateFootprintTab(FOOTPRINT_EDITOR_TAB_CONTEXT *aCtx)
Make aCtx the active tab, borrowing its board without deleting the outgoing one.
void freeFootprintTabUndoRedo(FOOTPRINT_EDITOR_TAB_CONTEXT &aCtx)
Free the transient board items a detached context's lists own before it is destroyed,...
void SetActiveLayer(PCB_LAYER_ID aLayer) override
void AddFootprintToBoard(FOOTPRINT *aFootprint) override
Override from PCB_BASE_EDIT_FRAME which adds a footprint to the editor's dummy board,...
bool DeleteFootprintFromLibrary(const LIB_ID &aFPID, bool aConfirm)
Delete the given footprint from its library.
bool activeBoardOwnedByTab() const
True when a tab context owns the frame's borrowed board, so the frame must not delete it.
void OnModify() override
Must be called after a footprint change in order to set the "modify" flag of the current screen and p...
std::vector< std::unique_ptr< FOOTPRINT_EDITOR_TAB_CONTEXT > > m_tabContexts
void CloseActiveFootprintTab()
Request closing the active tab, prompting to save if it is modified.
FOOTPRINT_TREE_PANE * m_treePane
std::unique_ptr< GRID_HELPER > MakeGridHelper() override
void OnDisplayOptionsChanged() override
void doReCreateMenuBar() override
(Re)Create the menubar for the Footprint Editor frame
void FocusOnLibID(const LIB_ID &aLibID)
const PCB_PLOT_PARAMS & GetPlotSettings() const override
Return the PCB_PLOT_PARAMS for the BOARD owned by this frame.
bool m_suppressTabActivation
Set while a full clear tears the tab strip down so the panel's close-driven re-activation does not re...
static bool prepareFootprintTabHandoff(FOOTPRINT *aFootprint, bool aHasTabs)
Decide whether aFootprint opens in its own tab and, if so, detach it from the board it arrived parent...
std::unique_ptr< FOOTPRINT > m_originalFootprintCopy
void ReloadFootprint(FOOTPRINT *aFootprint) override
Override from PCB_BASE_FRAME which reloads the footprint from the library without setting the footpri...
EDA_ANGLE GetRotationAngle() const override
Return the angle used for rotate operations.
void RefreshLibraryTree()
Redisplay the library tree.
void installFootprintTabBoard(FOOTPRINT_EDITOR_TAB_CONTEXT *aCtx, BOARD *aBoard)
Install aBoard as the active document non-destructively, wiring the tool environment and resetting th...
void OnExitKiCad(wxCommandEvent &aEvent)
bool OpenProjectFiles(const std::vector< wxString > &aFileSet, int aCtl=0) override
Load a KiCad board (.kicad_pcb) from aFileName.
bool promptAndCloseFootprintTab(int aIdx)
Prompt to save if needed, then drop the tab context at aIdx.
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
MAGNETIC_SETTINGS * GetMagneticItemsSettings() override
bool hasDirtyInactiveTransientTabs() const
True if any non-active session-only tab has unsaved edits.
FOOTPRINT_EDITOR_SETTINGS * GetSettings()
FOOTPRINT_EDITOR_TAB_CONTEXT * findOrCreateFootprintTab(const LIB_ID &aLibId, bool aAsPreview)
Find or create the tab for aLibId over its own fp-holder board and make it the active tab.
void SwitchCanvas(EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType) override
Switch the currently used canvas (Cairo / OpenGL).
void freeUndoRedoCommandsWithItems(UNDO_REDO_CONTAINER &aUndo, UNDO_REDO_CONTAINER &aRedo)
Free both the transient board items and the command wrappers in the given lists.
void installFootprintOnActiveBoard(FOOTPRINT *aFootprint)
Replace the active board's footprint with aFootprint and re-point the file watcher at it.
bool LoadFootprintFromBoard(FOOTPRINT *aFootprint)
Load a footprint from the main board into the Footprint Editor.
COLOR_SETTINGS * GetColorSettings(bool aForceRefresh=false) const override
Helper to retrieve the current color settings.
Footprint Editor pane with footprint library tree.
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
Definition kiid.h:46
Carry a payload from one KIWAY_PLAYER to another within a PROJECT.
Definition kiway_mail.h:34
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition kiway.h:311
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:45
Widget displaying a tree of symbols with optional search text control and description panel.
Definition lib_tree.h:46
PCB_BASE_EDIT_FRAME(KIWAY *aKiway, wxWindow *aParent, FRAME_T aFrameType, const wxString &aTitle, const wxPoint &aPos, const wxSize &aSize, long aStyle, const wxString &aFrameName)
Class to display a pcb layer list in a wxBitmapComboBox.
Parameters and options when plotting/printing a board.
Class to handle modifications to the symbol libraries.
A holder to handle a list of undo (or redo) commands.
STL class.
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
STL namespace.