102 static const std::vector<KICAD_T> pinTypes = {
SCH_PIN_T };
130 if( !aPin->
IsNew() &&
m_frame->SynchronizePins() && parentSymbol )
135 std::vector<bool> got_unit( parentSymbol->
GetUnitCount() + 1 );
137 got_unit[
static_cast<size_t>(aPin->
GetUnit())] =
true;
147 if( got_unit[
static_cast<size_t>( other->GetUnit() )] )
150 if( other->GetPosition() == original_pin.
GetPosition()
152 && other->GetType() == original_pin.
GetType()
153 && other->IsVisible() == original_pin.
IsVisible()
154 && other->GetName() == original_pin.
GetName() )
164 other->ChangeLength( aPin->
GetLength() );
169 other->SetShape( aPin->
GetShape() );
179 other->SetType( aPin->
GetType() );
181 other->SetName( aPin->
GetName() );
185 got_unit[
static_cast<size_t>( other->GetUnit() )] =
true;
190 commit.
Push(
_(
"Edit Pin Properties" ) );
192 std::vector<MSG_PANEL_ITEM> items;
214 bool ask_for_pin =
true;
216 std::vector<SCH_PIN*> pins = symbol->
GetPins();
227 if( ask_for_pin &&
m_frame->SynchronizePins() )
230 msg.Printf(
_(
"This position is already occupied by another pin, in unit %d." ),
233 KIDIALOG dlg(
m_frame, msg,
_(
"Confirmation" ), wxOK | wxCANCEL | wxICON_WARNING );
234 dlg.SetExtendedMessage(
_(
"Disable the 'Synchronized Pins Mode' option to avoid this message." ) );
235 dlg.SetOKLabel(
_(
"Place Pin Anyway" ) );
238 bool status = dlg.
ShowModal() == wxID_OK;
260 if(
m_frame->SynchronizePins() )
296 if(
m_frame->SynchronizePins() )
299 pin->SetPosition( aPosition );
327 if( !
m_frame->SynchronizePins() )
351 unknownNum.Printf(
"%s-U%c", aPin->
GetNumber(), wxChar(
'A' + ii - 1 ) );
361 catch(
const boost::bad_pointer& e )
363 wxFAIL_MSG( wxString::Format( wxT(
"Boost pointer exception occurred: %s" ), e.what() ));
386 if(
pin == sourcePin )
391 if( !
pin->GetBodyStyle() ||
pin->GetBodyStyle() ==
m_frame->GetBodyStyle() )
428 switch(
pin->GetOrientation() )
439 wxString nextName =
pin->GetName();
441 pin->SetName( nextName );
443 wxString nextNumber =
pin->GetNumber();
445 pin->SetNumber( nextNumber );
448 if(
m_frame->SynchronizePins() )
453 commit.
Push(
_(
"Repeat Pin" ) );
constexpr EDA_IU_SCALE schIUScale
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Modify a given item in the model.
EDA_ITEM_FLAGS GetEditFlags() const
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
bool HasFlag(EDA_ITEM_FLAGS aFlag) const
Helper class to create more flexible dialogs, including 'do not show again' checkbox handling.
void DoNotShowCheckbox(wxString file, int line)
Shows the 'do not show again' checkbox.
Define a library symbol object.
void ClearTempFlags() override
Clears the status flag all draw objects in this symbol.
void RemoveDrawItem(SCH_ITEM *aItem)
Remove draw aItem from list.
std::vector< SCH_PIN * > GetPins() const override
int GetUnitCount() const override
void AddDrawItem(SCH_ITEM *aItem, bool aSort=true)
Add a new draw aItem to the draw object list and sort according to aSort.
static TOOL_ACTION pushPinLength
static TOOL_ACTION pushPinNameSize
static TOOL_ACTION pushPinNumSize
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
SCH_ITEM * Duplicate(bool addToParentGroup, SCH_COMMIT *aCommit=nullptr, bool doClone=false) const
Routine to create a new copy of given item.
const SYMBOL * GetParentSymbol() const
virtual void SetUnit(int aUnit)
int GetNumberTextSize() const
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
void SetNumber(const wxString &aNumber)
const wxString & GetName() const
PIN_ORIENTATION GetOrientation() const
VECTOR2I GetPosition() const override
int GetNameTextSize() const
const wxString & GetNumber() const
GRAPHIC_PINSHAPE GetShape() const
ELECTRICAL_PINTYPE GetType() const
static SELECTION_CONDITION Count(int aNumber)
Create a functor that tests if the number of selected items is equal to the value given as parameter.
static SELECTION_CONDITION OnlyTypes(std::vector< KICAD_T > aTypes)
Create a functor that tests if the selected items are only of given types.
The symbol library editor main window.
#define IS_PASTED
Modifier on IS_NEW which indicates it came from clipboard.
#define IS_NEW
New item, just created.
#define IS_LINKED
Used in calculation to mark linked items (temporary use)
KICOMMON_API bool IncrementString(wxString &name, int aIncrement)
Generic string incrementer.
ELECTRICAL_PINTYPE
The symbol library pin object electrical types used in ERC tests.
@ PT_INPUT
usual pin input: must be connected
PIN_ORIENTATION
The symbol library pin object orientations.
@ PIN_UP
The pin extends upwards from the connection point: Probably on the bottom side of the symbol.
@ PIN_RIGHT
The pin extends rightwards from the connection point.
@ PIN_LEFT
The pin extends leftwards from the connection point: Probably on the right side of the symbol.
@ PIN_DOWN
The pin extends downwards from the connection: Probably on the top side of the symbol.
T * GetAppSettings(const char *aFilename)
std::vector< FAB_LAYER_COLOR > dummy
VECTOR2< int32_t > VECTOR2I