KiCad PCB EDA Suite
Loading...
Searching...
No Matches
picksymbol.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 (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2008 Wayne Stambaugh <[email protected]>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22#include <pgm_base.h>
26#include <confirm.h>
27#include <sch_tool_utils.h>
28#include <eeschema_id.h>
29#include <general.h>
30#include <kidialog.h>
31#include <kiway.h>
32#include <symbol_viewer_frame.h>
35#include <algorithm>
36#include <sch_symbol.h>
37#include <sch_commit.h>
38#include <sch_edit_frame.h>
39#include <tool/tool_manager.h>
40#include <tools/sch_actions.h>
41#include <project_sch.h>
42
45
47 std::vector<PICKED_SYMBOL>& aHistoryList,
48 std::vector<PICKED_SYMBOL>& aAlreadyPlaced,
49 bool aShowFootprints, const LIB_ID* aHighlight,
50 bool aAllowFields, SYMBOL_COMPAT_FUNC aCompatFunc )
51{
52 std::unique_lock<std::mutex> dialogLock( DIALOG_SYMBOL_CHOOSER::g_Mutex, std::defer_lock );
53
54 // One DIALOG_SYMBOL_CHOOSER dialog at a time. User probably can't handle more anyway.
55 if( !dialogLock.try_lock() )
56 return PICKED_SYMBOL();
57
58 bool aCancelled = false;
59
60 DIALOG_SYMBOL_CHOOSER dlg( this, aHighlight, aFilter, aHistoryList, aAlreadyPlaced,
61 aAllowFields, aShowFootprints, aCancelled );
62
63 if( aCompatFunc )
64 dlg.GetChooserPanel()->SetCompatibilityCallback( std::move( aCompatFunc ) );
65
66 if( aCancelled || dlg.ShowModal() == wxID_CANCEL )
67 return PICKED_SYMBOL();
68
69 PICKED_SYMBOL sel;
70 LIB_ID id = dlg.GetSelectedLibId( &sel.Unit, &sel.BodyStyle );
71
72 if( !id.IsValid() )
73 return PICKED_SYMBOL();
74
75 if( sel.Unit == 0 )
76 sel.Unit = 1;
77
78 if( sel.BodyStyle == 0 )
79 sel.BodyStyle = 1;
80
81 sel.Fields = dlg.GetFields();
82 sel.LibId = id;
83
84 if( sel.LibId.IsValid() )
85 {
86 std::erase_if( aHistoryList, [&sel]( PICKED_SYMBOL const& i )
87 {
88 return i.LibId == sel.LibId;
89 } );
90
91 aHistoryList.insert( aHistoryList.begin(), sel );
92 }
93
94 sel.KeepSymbol = dlg.GetKeepSymbol();
96 return sel;
97}
98
99
100void SCH_EDIT_FRAME::SelectUnit( SCH_SYMBOL* aSymbol, int aUnit )
101{
102 SCH_COMMIT commit( m_toolManager );
103 LIB_SYMBOL* symbol = GetLibSymbol( aSymbol->GetLibId() );
104
105 if( !symbol )
106 return;
107
108 const int unitCount = symbol->GetUnitCount();
109 const int currentUnit = aSymbol->GetUnit();
110
111 if( unitCount <= 1 || currentUnit == aUnit )
112 return;
113
114 if( aUnit > unitCount )
115 aUnit = unitCount;
116
117 const SCH_SHEET_PATH& sheetPath = GetCurrentSheet();
118 bool swapWithOther = false;
119 std::optional<SCH_REFERENCE> otherSymbolRef = FindSymbolByRefAndUnit( *aSymbol->Schematic(),
120 aSymbol->GetRef( &sheetPath, false ),
121 aUnit );
122
123 if( otherSymbolRef )
124 {
125 const wxString targetUnitName = symbol->GetUnitDisplayName( aUnit, false );
126 const wxString currUnitName = symbol->GetUnitDisplayName( currentUnit, false );
127 wxString otherSheetName = otherSymbolRef->GetSheetPath().PathHumanReadable( true, true );
128
129 if( otherSheetName.IsEmpty() )
130 otherSheetName = _( "Root" );
131
132 const wxString msg = wxString::Format( _( "Symbol unit '%s' is already placed (on sheet '%s')" ),
133 targetUnitName, otherSheetName );
134
135 KIDIALOG dlg( this, msg, _( "Unit Already Placed" ), wxYES_NO | wxCANCEL | wxICON_WARNING );
136 dlg.SetYesNoLabels( wxString::Format( _( "&Swap '%s' and '%s'" ), targetUnitName, currUnitName ),
137 wxString::Format( _( "&Duplicate '%s'" ), targetUnitName ) );
138 dlg.DoNotShowCheckbox( __FILE__, __LINE__ );
139
140 int ret = dlg.ShowModal();
141
142 if( ret == wxID_CANCEL )
143 return;
144
145 if( ret == wxID_YES )
146 swapWithOther = true;
147 }
148
149 if( swapWithOther )
150 {
151 // We were reliably informed this would exist.
152 wxASSERT( otherSymbolRef );
153
154 SCH_SYMBOL* otherSymbol = otherSymbolRef->GetSymbol();
155
156 if( !otherSymbol->GetEditFlags() )
157 commit.Modify( otherSymbol, otherSymbolRef->GetSheetPath().LastScreen() );
158
159 // Give that symbol the unit we used to have
160 otherSymbol->SetUnitSelection( &otherSymbolRef->GetSheetPath(), currentUnit );
161 otherSymbol->SetUnit( currentUnit );
162 }
163
164 if( !aSymbol->GetEditFlags() ) // No command in progress: save in undo list
165 commit.Modify( aSymbol, GetScreen() );
166
167 // Update the unit number.
168 aSymbol->SetUnit( aUnit );
169 aSymbol->SetUnitSelection( &sheetPath, aUnit );
170
171 if( !commit.Empty() )
172 {
173 if( eeconfig()->m_AutoplaceFields.enable )
174 {
175 AUTOPLACE_ALGO fieldsAutoplaced = aSymbol->GetFieldsAutoplaced();
176
177 if( fieldsAutoplaced == AUTOPLACE_AUTO || fieldsAutoplaced == AUTOPLACE_MANUAL )
178 aSymbol->AutoplaceFields( GetScreen(), fieldsAutoplaced );
179 }
180
181 if( swapWithOther )
182 commit.Push( _( "Swap Units" ) );
183 else
184 commit.Push( _( "Change Unit" ) );
185 }
186}
187
188
189void SCH_EDIT_FRAME::SelectBodyStyle( SCH_SYMBOL* aSymbol, int aBodyStyle )
190{
191 if( !aSymbol || !aSymbol->GetLibSymbolRef() )
192 return;
193
194 const int bodyStyleCount = aSymbol->GetLibSymbolRef()->GetBodyStyleCount();
195 const int currentBodyStyle = aSymbol->GetBodyStyle();
196
197 if( bodyStyleCount <= 1 || currentBodyStyle == aBodyStyle )
198 return;
199
200 if( aBodyStyle > bodyStyleCount )
201 aBodyStyle = bodyStyleCount;
202
203 SCH_COMMIT commit( m_toolManager );
204
205 commit.Modify( aSymbol, GetScreen() );
206
207 aSymbol->SetBodyStyle( aBodyStyle );
208
209 // If selected make sure all the now-included pins are selected
210 if( aSymbol->IsSelected() )
211 m_toolManager->RunAction<EDA_ITEM*>( ACTIONS::selectItem, aSymbol );
212
213 commit.Push( _( "Change Body Style" ) );
214}
215
216
217void SCH_EDIT_FRAME::SetAltPinFunction( SCH_PIN* aPin, const wxString& aFunction )
218{
219 if( !aPin )
220 return;
221
222 SCH_COMMIT commit( m_toolManager );
223 commit.Modify( aPin, GetScreen() );
224
225 if( aFunction == aPin->GetName() )
226 aPin->SetAlt( wxEmptyString );
227 else
228 aPin->SetAlt( aFunction );
229
230 commit.Push( _( "Set Pin Function" ) );
231}
static TOOL_ACTION selectItem
Select an item (specified as the event parameter).
Definition actions.h:223
bool Empty() const
Definition commit.h:142
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Modify a given item in the model.
Definition commit.h:102
int ShowModal() override
PANEL_SYMBOL_CHOOSER * GetChooserPanel() const
std::vector< std::pair< FIELD_T, wxString > > GetFields() const
Get a list of fields edited by the user.
LIB_ID GetSelectedLibId(int *aUnit=nullptr, int *aBodyStyle=nullptr) const
To be called after this dialog returns from ShowModal().
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
EDA_ITEM_FLAGS GetEditFlags() const
Definition eda_item.h:170
bool IsSelected() const
Definition eda_item.h:134
Helper class to create more flexible dialogs, including 'do not show again' checkbox handling.
Definition kidialog.h:38
void DoNotShowCheckbox(wxString file, int line)
Shows the 'do not show again' checkbox.
Definition kidialog.cpp:51
int ShowModal() override
Definition kidialog.cpp:89
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:45
bool IsValid() const
Check if this LID_ID is valid.
Definition lib_id.h:168
Define a library symbol object.
Definition lib_symbol.h:119
int GetBodyStyleCount() const override
The body styles are a property of the drawings, which a derived symbol inherits from its root symbol ...
int GetUnitCount() const override
wxString GetUnitDisplayName(int aUnit, bool aLabel) const override
Return the user-defined display name for aUnit for symbols with units.
void SetCompatibilityCallback(SYMBOL_COMPAT_FUNC aFunc)
PICKED_SYMBOL PickSymbolFromLibrary(const SYMBOL_LIBRARY_FILTER *aFilter, std::vector< PICKED_SYMBOL > &aHistoryList, std::vector< PICKED_SYMBOL > &aAlreadyPlaced, bool aShowFootprints, const LIB_ID *aHighlight=nullptr, bool aAllowFields=true, SYMBOL_COMPAT_FUNC aCompatFunc=nullptr)
Call the library viewer to select symbol to import into schematic.
EESCHEMA_SETTINGS * eeconfig() const
LIB_SYMBOL * GetLibSymbol(const LIB_ID &aLibId, bool aUseCacheLib=false, bool aShowErrorMsg=false)
Load symbol from symbol library table.
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
void SetAltPinFunction(SCH_PIN *aPin, const wxString &aFunction)
void SelectBodyStyle(SCH_SYMBOL *aSymbol, int aBodyStyle)
SCH_SHEET_PATH & GetCurrentSheet() const
void SelectUnit(SCH_SYMBOL *aSymbol, int aUnit)
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
Definition sch_item.cpp:281
int GetBodyStyle() const
Definition sch_item.h:247
int GetUnit() const
Definition sch_item.h:237
virtual void SetUnit(int aUnit)
Definition sch_item.h:236
AUTOPLACE_ALGO GetFieldsAutoplaced() const
Return whether the fields have been automatically placed.
Definition sch_item.h:636
void SetAlt(const wxString &aAlt)
Set the name of the alternate pin.
Definition sch_pin.cpp:536
const wxString & GetName() const
Definition sch_pin.cpp:503
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
Schematic symbol object.
Definition sch_symbol.h:75
void AutoplaceFields(SCH_SCREEN *aScreen, AUTOPLACE_ALGO aAlgo) override
Automatically orient all the fields in the symbol.
void SetBodyStyle(int aBodyStyle) override
const LIB_ID & GetLibId() const override
Definition sch_symbol.h:164
void SetUnitSelection(const SCH_SHEET_PATH *aSheet, int aUnitSelection)
Set the selected unit of this symbol on one sheet.
std::unique_ptr< LIB_SYMBOL > & GetLibSymbolRef()
Definition sch_symbol.h:183
const wxString GetRef(const SCH_SHEET_PATH *aSheet, bool aIncludeUnit=false) const override
Helper object to filter a list of libraries.
TOOL_MANAGER * m_toolManager
This file is part of the common library.
#define _(s)
see class PGM_BASE
AUTOPLACE_ALGO
Definition sch_item.h:68
@ AUTOPLACE_MANUAL
Definition sch_item.h:71
@ AUTOPLACE_AUTO
Definition sch_item.h:70
std::optional< SCH_REFERENCE > FindSymbolByRefAndUnit(const SCHEMATIC &aSchematic, const wxString &aRef, int aUnit)
Find a symbol by reference and unit.
bool PlaceAllUnits
Definition sch_screen.h:86
std::vector< std::pair< FIELD_T, wxString > > Fields
Definition sch_screen.h:88
std::function< std::vector< VARIANT_COMPAT_RESULT >(const LIB_ID &)> SYMBOL_COMPAT_FUNC
Callback that evaluates variant symbol compatibility for a given candidate LIB_ID.