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
44
46 std::vector<PICKED_SYMBOL>& aHistoryList,
47 std::vector<PICKED_SYMBOL>& aAlreadyPlaced,
48 bool aShowFootprints, const LIB_ID* aHighlight,
49 bool aAllowFields )
50{
51 std::unique_lock<std::mutex> dialogLock( DIALOG_SYMBOL_CHOOSER::g_Mutex, std::defer_lock );
52
53 // One DIALOG_SYMBOL_CHOOSER dialog at a time. User probably can't handle more anyway.
54 if( !dialogLock.try_lock() )
55 return PICKED_SYMBOL();
56
57 bool aCancelled = false;
58
59 DIALOG_SYMBOL_CHOOSER dlg( this, aHighlight, aFilter, aHistoryList, aAlreadyPlaced,
60 aAllowFields, aShowFootprints, aCancelled );
61
62 if( aCancelled || dlg.ShowModal() == wxID_CANCEL )
63 return PICKED_SYMBOL();
64
65 PICKED_SYMBOL sel;
66 LIB_ID id = dlg.GetSelectedLibId( &sel.Unit );
67
68 if( !id.IsValid() )
69 return PICKED_SYMBOL();
70
71 if( sel.Unit == 0 )
72 sel.Unit = 1;
73
74 sel.Fields = dlg.GetFields();
75 sel.LibId = id;
76
77 if( sel.LibId.IsValid() )
78 {
79 std::erase_if( aHistoryList, [&sel]( PICKED_SYMBOL const& i )
80 {
81 return i.LibId == sel.LibId;
82 } );
83
84 aHistoryList.insert( aHistoryList.begin(), sel );
85 }
86
87 sel.KeepSymbol = dlg.GetKeepSymbol();
89 return sel;
90}
91
92
93void SCH_EDIT_FRAME::SelectUnit( SCH_SYMBOL* aSymbol, int aUnit )
94{
95 SCH_COMMIT commit( m_toolManager );
96 LIB_SYMBOL* symbol = GetLibSymbol( aSymbol->GetLibId() );
97
98 if( !symbol )
99 return;
100
101 const int unitCount = symbol->GetUnitCount();
102 const int currentUnit = aSymbol->GetUnit();
103
104 if( unitCount <= 1 || currentUnit == aUnit )
105 return;
106
107 if( aUnit > unitCount )
108 aUnit = unitCount;
109
110 const SCH_SHEET_PATH& sheetPath = GetCurrentSheet();
111 bool swapWithOther = false;
112 std::optional<SCH_REFERENCE> otherSymbolRef = FindSymbolByRefAndUnit( *aSymbol->Schematic(),
113 aSymbol->GetRef( &sheetPath, false ),
114 aUnit );
115
116 if( otherSymbolRef )
117 {
118 const wxString targetUnitName = symbol->GetUnitDisplayName( aUnit, false );
119 const wxString currUnitName = symbol->GetUnitDisplayName( currentUnit, false );
120 wxString otherSheetName = otherSymbolRef->GetSheetPath().PathHumanReadable( true, true );
121
122 if( otherSheetName.IsEmpty() )
123 otherSheetName = _( "Root" );
124
125 const wxString msg = wxString::Format( _( "Symbol unit '%s' is already placed (on sheet '%s')" ),
126 targetUnitName, otherSheetName );
127
128 KIDIALOG dlg( this, msg, _( "Unit Already Placed" ), wxYES_NO | wxCANCEL | wxICON_WARNING );
129 dlg.SetYesNoLabels( wxString::Format( _( "&Swap '%s' and '%s'" ), targetUnitName, currUnitName ),
130 wxString::Format( _( "&Duplicate '%s'" ), targetUnitName ) );
131 dlg.DoNotShowCheckbox( __FILE__, __LINE__ );
132
133 int ret = dlg.ShowModal();
134
135 if( ret == wxID_CANCEL )
136 return;
137
138 if( ret == wxID_YES )
139 swapWithOther = true;
140 }
141
142 if( swapWithOther )
143 {
144 // We were reliably informed this would exist.
145 wxASSERT( otherSymbolRef );
146
147 SCH_SYMBOL* otherSymbol = otherSymbolRef->GetSymbol();
148
149 if( !otherSymbol->GetEditFlags() )
150 commit.Modify( otherSymbol, otherSymbolRef->GetSheetPath().LastScreen() );
151
152 // Give that symbol the unit we used to have
153 otherSymbol->SetUnitSelection( &otherSymbolRef->GetSheetPath(), currentUnit );
154 otherSymbol->SetUnit( currentUnit );
155 }
156
157 if( !aSymbol->GetEditFlags() ) // No command in progress: save in undo list
158 commit.Modify( aSymbol, GetScreen() );
159
160 // Update the unit number.
161 aSymbol->SetUnit( aUnit );
162 aSymbol->SetUnitSelection( &sheetPath, aUnit );
163
164 if( !commit.Empty() )
165 {
166 if( eeconfig()->m_AutoplaceFields.enable )
167 {
168 AUTOPLACE_ALGO fieldsAutoplaced = aSymbol->GetFieldsAutoplaced();
169
170 if( fieldsAutoplaced == AUTOPLACE_AUTO || fieldsAutoplaced == AUTOPLACE_MANUAL )
171 aSymbol->AutoplaceFields( GetScreen(), fieldsAutoplaced );
172 }
173
174 if( swapWithOther )
175 commit.Push( _( "Swap Units" ) );
176 else
177 commit.Push( _( "Change Unit" ) );
178 }
179}
180
181
182void SCH_EDIT_FRAME::SelectBodyStyle( SCH_SYMBOL* aSymbol, int aBodyStyle )
183{
184 if( !aSymbol || !aSymbol->GetLibSymbolRef() )
185 return;
186
187 const int bodyStyleCount = aSymbol->GetLibSymbolRef()->GetBodyStyleCount();
188 const int currentBodyStyle = aSymbol->GetBodyStyle();
189
190 if( bodyStyleCount <= 1 || currentBodyStyle == aBodyStyle )
191 return;
192
193 if( aBodyStyle > bodyStyleCount )
194 aBodyStyle = bodyStyleCount;
195
196 SCH_COMMIT commit( m_toolManager );
197
198 commit.Modify( aSymbol, GetScreen() );
199
200 aSymbol->SetBodyStyle( aBodyStyle );
201
202 // If selected make sure all the now-included pins are selected
203 if( aSymbol->IsSelected() )
204 m_toolManager->RunAction<EDA_ITEM*>( ACTIONS::selectItem, aSymbol );
205
206 commit.Push( _( "Change Body Style" ) );
207}
208
209
210void SCH_EDIT_FRAME::SetAltPinFunction( SCH_PIN* aPin, const wxString& aFunction )
211{
212 if( !aPin )
213 return;
214
215 SCH_COMMIT commit( m_toolManager );
216 commit.Modify( aPin, GetScreen() );
217
218 if( aFunction == aPin->GetName() )
219 aPin->SetAlt( wxEmptyString );
220 else
221 aPin->SetAlt( aFunction );
222
223 commit.Push( _( "Set Pin Function" ) );
224}
static TOOL_ACTION selectItem
Select an item (specified as the event parameter).
Definition actions.h:223
bool Empty() const
Definition commit.h:134
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
std::vector< std::pair< FIELD_T, wxString > > GetFields() const
Get a list of fields edited by the user.
LIB_ID GetSelectedLibId(int *aUnit=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:96
EDA_ITEM_FLAGS GetEditFlags() const
Definition eda_item.h:158
bool IsSelected() const
Definition eda_item.h:132
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:79
int GetBodyStyleCount() const override
Definition lib_symbol.h:773
int GetUnitCount() const override
wxString GetUnitDisplayName(int aUnit, bool aLabel) const override
Return the user-defined display name for aUnit for symbols with units.
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)
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:268
int GetBodyStyle() const
Definition sch_item.h:242
int GetUnit() const
Definition sch_item.h:233
virtual void SetUnit(int aUnit)
Definition sch_item.h:232
AUTOPLACE_ALGO GetFieldsAutoplaced() const
Return whether the fields have been automatically placed.
Definition sch_item.h:623
void SetAlt(const wxString &aAlt)
Set the name of the alternate pin.
Definition sch_pin.cpp:527
const wxString & GetName() const
Definition sch_pin.cpp:494
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:69
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:158
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:177
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:65
@ AUTOPLACE_MANUAL
Definition sch_item.h:68
@ AUTOPLACE_AUTO
Definition sch_item.h:67
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:83
std::vector< std::pair< FIELD_T, wxString > > Fields
Definition sch_screen.h:85