KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_pin.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 (C) 2015 Jean-Pierre Charras, jaen-pierre.charras at wanadoo.fr
5 * Copyright (C) 2015 Wayne Stambaugh <stambaughw@gmail.com>
6 * Copyright (C) 2018 CERN
7 * Copyright The KiCad Developers, see AUTHOR.txt for contributors.
8 * @author Jon Evans <jon@craftyjon.com>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24#pragma once
25
26#include <memory>
27
28#include <pin_type.h>
29#include <sch_item.h>
30
31class LIB_SYMBOL;
32class SCH_SYMBOL;
34
35// Circle diameter drawn at the active end of pins:
36#define TARGET_PIN_RADIUS schIUScale.MilsToIU( 15 )
37
38
39class SCH_PIN : public SCH_ITEM
40{
41public:
42 struct ALT
43 {
44 wxString m_Name;
45 GRAPHIC_PINSHAPE m_Shape; // Shape drawn around pin
46 ELECTRICAL_PINTYPE m_Type; // Electrical type of the pin.
47 };
48
49 SCH_PIN( LIB_SYMBOL* aParentSymbol );
50
51 SCH_PIN( LIB_SYMBOL* aParentSymbol, const wxString& aName, const wxString& aNumber,
52 PIN_ORIENTATION aOrientation, ELECTRICAL_PINTYPE aPinType, int aLength,
53 int aNameTextSize, int aNumTextSize, int aBodyStyle, const VECTOR2I& aPos, int aUnit );
54
55 SCH_PIN( SCH_SYMBOL* aParentSymbol, SCH_PIN* aLibPin );
56
64 SCH_PIN( SCH_SYMBOL* aParentSymbol, const wxString& aNumber, const wxString& aAlt,
65 const KIID& aUuid );
66
67 SCH_PIN( const SCH_PIN& aPin );
68
69 ~SCH_PIN();
70
71 SCH_PIN& operator=( const SCH_PIN& aPin );
72
73 wxString GetClass() const override
74 {
75 return wxT( "SCH_PIN" );
76 }
77
78 static bool ClassOf( const EDA_ITEM* aItem )
79 {
80 return aItem && aItem->Type() == SCH_PIN_T;
81 }
82
83 wxString GetFriendlyName() const override
84 {
85 return _( "Pin" );
86 }
87
88 SCH_PIN* GetLibPin() const { return m_libPin; }
89 void SetLibPin( SCH_PIN* aLibPin ) { m_libPin = aLibPin; }
90
92 void SetOrientation( PIN_ORIENTATION aOrientation ) { m_orientation = aOrientation; }
93
95 void SetShape( GRAPHIC_PINSHAPE aShape ) { m_shape = aShape; }
96
97 int GetLength() const;
98 void SetLength( int aLength ) { m_length = aLength; }
99
105 void ChangeLength( int aLength );
106
108 void SetType( ELECTRICAL_PINTYPE aType );
109 wxString GetCanonicalElectricalTypeName() const;
110 wxString GetElectricalTypeName() const;
111
112 bool IsVisible() const;
113 void SetVisible( bool aVisible ) { m_hidden = !aVisible; }
114
115 const wxString& GetName() const;
116 wxString GetShownName() const;
117 void SetName( const wxString& aName );
121 const wxString& GetBaseName() const;
122
123 const wxString& GetNumber() const { return m_number; }
124 wxString GetShownNumber() const;
125 void SetNumber( const wxString& aNumber );
126
127 int GetNameTextSize() const;
128 void SetNameTextSize( int aSize );
129
130 int GetNumberTextSize() const;
131 void SetNumberTextSize( int aSize );
132
133 const std::map<wxString, ALT>& GetAlternates() const
134 {
135 if( m_libPin )
136 return m_libPin->GetAlternates();
137
138 return m_alternates;
139 }
140
141 std::map<wxString, ALT>& GetAlternates()
142 {
143 return const_cast<std::map<wxString, ALT>&>(
144 static_cast<const SCH_PIN*>( this )->GetAlternates() );
145 }
146
147 ALT GetAlt( const wxString& aAlt )
148 {
149 return GetAlternates()[ aAlt ];
150 }
151
152 wxString GetAlt() const { return m_alt; }
153 void SetAlt( const wxString& aAlt ) { m_alt = aAlt; }
154
161 PIN_ORIENTATION PinDrawOrient( const TRANSFORM& aTransform ) const;
162
163#if defined(DEBUG)
164 void Show( int nestLevel, std::ostream& os ) const override;
165#endif
166
167 bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
168
169 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
170
171 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
172
173 const BOX2I ViewBBox() const override;
174
175 std::vector<int> ViewGetLayers() const override;
176
177 /* Cannot use a default parameter here as it will not be compatible with the virtual. */
178 const BOX2I GetBoundingBox() const override
179 {
180 return GetBoundingBox( false, true, m_flags & SHOW_ELEC_TYPE );
181 }
182
187 BOX2I GetBoundingBox( bool aIncludeLabelsOnInvisiblePins, bool aIncludeNameAndNumber,
188 bool aIncludeElectricalType ) const;
189
194 bool IsGlobalPower() const;
195
200 bool IsLocalPower() const;
201
206 bool IsPower() const;
207
208 int GetPenWidth() const override { return 0; }
209
210 void Move( const VECTOR2I& aOffset ) override;
211
212 VECTOR2I GetPosition() const override;
214 void SetPosition( const VECTOR2I& aPos ) override { m_position = aPos; }
215
216 // For properties system
217 int GetX() const { return m_position.x; }
218 void SetX( int aX ) { m_position.x = aX; }
219 int GetY() const { return m_position.y; }
220 void SetY( int aY ) { m_position.y = aY; }
221
222 VECTOR2I GetPinRoot() const;
223
227 void MirrorHorizontally( int aCenter ) override;
228 void MirrorVertically( int aCenter ) override;
229 void Rotate( const VECTOR2I& aCenter, bool aRotateCCW = true ) override;
230
234 void MirrorHorizontallyPin( int aCenter );
235 void MirrorVerticallyPin( int aCenter );
236 void RotatePin( const VECTOR2I& aCenter, bool aRotateCCW = true );
237
244 void PlotPinTexts( PLOTTER *aPlotter, const VECTOR2I &aPinPos, PIN_ORIENTATION aPinOrient,
245 int aTextInside, bool aDrawPinNum, bool aDrawPinName, bool aDimmed ) const;
246
247 void PlotPinType( PLOTTER *aPlotter, const VECTOR2I &aPosition, PIN_ORIENTATION aOrientation,
248 bool aDimmed ) const;
249
250 void Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
251 int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed ) override;
252
253 BITMAPS GetMenuImage() const override;
254
255 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
256 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, ALT* aAlt ) const;
257
258 EDA_ITEM* Clone() const override;
259
260 void CalcEdit( const VECTOR2I& aPosition ) override;
261
262 bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const override;
263
264 bool Replace( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) override;
265
274 static wxString GetCanonicalElectricalTypeName( ELECTRICAL_PINTYPE aType );
275
276 bool IsConnectable() const override { return true; }
277
278 bool HasConnectivityChanges( const SCH_ITEM* aItem,
279 const SCH_SHEET_PATH* aInstance = nullptr ) const override;
280
281 void ClearDefaultNetName( const SCH_SHEET_PATH* aPath );
282 wxString GetDefaultNetName( const SCH_SHEET_PATH& aPath, bool aForceNoConnect = false );
283
284 bool IsDangling() const override;
285 void SetIsDangling( bool aIsDangling );
286
291 bool IsStacked( const SCH_PIN* aPin ) const;
292
293 bool IsPointClickableAnchor( const VECTOR2I& aPos ) const override
294 {
295 return m_isDangling && GetPosition() == aPos;
296 }
297
298 bool ConnectionPropagatesTo( const EDA_ITEM* aItem ) const override;
299
300 const wxString& GetOperatingPoint() const { return m_operatingPoint; }
301 void SetOperatingPoint( const wxString& aText ) { m_operatingPoint = aText; }
302
303 double Similarity( const SCH_ITEM& aOther ) const override;
304
305 bool operator>( const SCH_ITEM& aRhs ) const { return compare( aRhs, EQUALITY ) > 0; }
306
315
316protected:
317 wxString getItemDescription( ALT* aAlt ) const;
318
320 {
322 int m_FontSize = 0;
324 };
325
326 void validateExtentsCache( KIFONT::FONT* aFont, int aSize, const wxString& aText,
327 EXTENTS_CACHE* aCache ) const;
328
329 std::ostream& operator<<( std::ostream& aStream );
330
331private:
348 int compare( const SCH_ITEM& aOther, int aCompareFlags = 0 ) const override;
349
350protected:
351 SCH_PIN* m_libPin; // The corresponding pin in the LIB_SYMBOL
352 // (nullptr for a pin *in* the LIB_SYMBOL)
353
354 std::map<wxString, ALT> m_alternates; // Map of alternate name to ALT structure
355 // (only valid for pins in LIB_SYMBOLS)
356
357 VECTOR2I m_position; // Position of the pin.
358 std::optional<int> m_length; // Length of the pin.
359 PIN_ORIENTATION m_orientation; // Pin orientation (Up, Down, Left, Right)
360 GRAPHIC_PINSHAPE m_shape; // Shape drawn around pin
361 ELECTRICAL_PINTYPE m_type; // Electrical type of the pin.
362 std::optional<bool> m_hidden;
363 wxString m_name;
364 wxString m_number;
365 std::optional<int> m_numTextSize; // Pin num and Pin name sizes
366 std::optional<int> m_nameTextSize;
367 wxString m_alt; // The current alternate for an instance
368
370
372
378 mutable std::unique_ptr<PIN_LAYOUT_CACHE> m_layoutCache;
379
381 std::recursive_mutex m_netmap_mutex;
382 std::map<const SCH_SHEET_PATH, std::pair<wxString, bool>> m_net_name_map;
383};
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
The base class for create windows for drawing purpose.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:96
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:108
EDA_ITEM_FLAGS m_flags
Definition: eda_item.h:509
FONT is an abstract base class for both outline and stroke fonts.
Definition: font.h:131
Definition: kiid.h:49
Define a library symbol object.
Definition: lib_symbol.h:85
A pin layout helper is a class that manages the layout of the parts of a pin on a schematic symbol:
Base plotter engine class.
Definition: plotter.h:105
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
@ EQUALITY
Definition: sch_item.h:634
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW=true) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
Definition: sch_pin.cpp:1117
std::ostream & operator<<(std::ostream &aStream)
Definition: sch_pin.cpp:1632
void SetAlt(const wxString &aAlt)
Definition: sch_pin.h:153
void PlotPinTexts(PLOTTER *aPlotter, const VECTOR2I &aPinPos, PIN_ORIENTATION aPinOrient, int aTextInside, bool aDrawPinNum, bool aDrawPinName, bool aDimmed) const
Plot the pin name and number.
Definition: sch_pin.cpp:776
VECTOR2I GetLocalPosition() const
Definition: sch_pin.h:213
int GetNumberTextSize() const
Definition: sch_pin.cpp:582
int GetLength() const
Definition: sch_pin.cpp:291
std::optional< bool > m_hidden
Definition: sch_pin.h:362
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const override
Compare the item against the search criteria in aSearchData.
Definition: sch_pin.cpp:458
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.
Definition: sch_pin.cpp:1145
std::unique_ptr< PIN_LAYOUT_CACHE > m_layoutCache
The layout cache for this pin.
Definition: sch_pin.h:378
void MirrorVerticallyPin(int aCenter)
Definition: sch_pin.cpp:1066
void validateExtentsCache(KIFONT::FONT *aFont, int aSize, const wxString &aText, EXTENTS_CACHE *aCache) const
Definition: sch_pin.cpp:1332
wxString GetAlt() const
Definition: sch_pin.h:152
bool operator>(const SCH_ITEM &aRhs) const
Definition: sch_pin.h:305
const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
Definition: sch_pin.cpp:1319
std::vector< int > ViewGetLayers() const override
Return the layers the item is drawn on (which may be more than its "home" layer)
Definition: sch_pin.cpp:1325
const std::map< wxString, ALT > & GetAlternates() const
Definition: sch_pin.h:133
void CalcEdit(const VECTOR2I &aPosition) override
Calculate the attributes of an item at aPosition when it is being edited.
Definition: sch_pin.cpp:1661
void SetNumber(const wxString &aNumber)
Definition: sch_pin.cpp:545
std::optional< int > m_nameTextSize
Definition: sch_pin.h:366
PIN_ORIENTATION PinDrawOrient(const TRANSFORM &aTransform) const
Return the pin real orientation (PIN_UP, PIN_DOWN, PIN_RIGHT, PIN_LEFT), according to its orientation...
Definition: sch_pin.cpp:968
void SetVisible(bool aVisible)
Definition: sch_pin.h:113
int GetX() const
Definition: sch_pin.h:217
void ChangeLength(int aLength)
Change the length of a pin and adjust its position based on orientation.
Definition: sch_pin.cpp:1012
ALT GetAlt(const wxString &aAlt)
Definition: sch_pin.h:147
void SetX(int aX)
Definition: sch_pin.h:218
bool HasConnectivityChanges(const SCH_ITEM *aItem, const SCH_SHEET_PATH *aInstance=nullptr) const override
Check if aItem has connectivity changes against this object.
Definition: sch_pin.cpp:1362
SCH_PIN & operator=(const SCH_PIN &aPin)
Definition: sch_pin.cpp:225
wxString GetShownNumber() const
Definition: sch_pin.cpp:539
SCH_PIN * m_libPin
Definition: sch_pin.h:351
void Move(const VECTOR2I &aOffset) override
Move the item by aMoveVector to a new position.
Definition: sch_pin.cpp:1040
std::map< const SCH_SHEET_PATH, std::pair< wxString, bool > > m_net_name_map
Definition: sch_pin.h:382
PIN_ORIENTATION m_orientation
Definition: sch_pin.h:359
const wxString & GetOperatingPoint() const
Definition: sch_pin.h:300
void SetOrientation(PIN_ORIENTATION aOrientation)
Definition: sch_pin.h:92
void SetName(const wxString &aName)
Definition: sch_pin.cpp:415
bool IsGlobalPower() const
Return whether this pin forms a global power connection: i.e., is part of a power symbol and of type ...
Definition: sch_pin.cpp:363
wxString getItemDescription(ALT *aAlt) const
Definition: sch_pin.cpp:1436
bool IsVisible() const
Definition: sch_pin.cpp:383
bool ConnectionPropagatesTo(const EDA_ITEM *aItem) const override
Return true if this item should propagate connection info to aItem.
Definition: sch_pin.cpp:1384
std::optional< int > m_numTextSize
Definition: sch_pin.h:365
VECTOR2I GetPinRoot() const
Definition: sch_pin.cpp:606
bool IsLocalPower() const
Local power pin is the same except that it is sheet-local and it does not support the legacy hidden p...
Definition: sch_pin.cpp:370
ELECTRICAL_PINTYPE m_type
Definition: sch_pin.h:361
void SetLibPin(SCH_PIN *aLibPin)
Definition: sch_pin.h:89
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
Definition: sch_pin.cpp:1079
SCH_PIN * GetLibPin() const
Definition: sch_pin.h:88
void SetPosition(const VECTOR2I &aPos) override
Definition: sch_pin.h:214
double Similarity(const SCH_ITEM &aOther) const override
Return a measure of how likely the other object is to represent the same object.
Definition: sch_pin.cpp:1572
bool m_isDangling
Definition: sch_pin.h:371
bool IsConnectable() const override
Definition: sch_pin.h:276
void SetIsDangling(bool aIsDangling)
Definition: sch_pin.cpp:438
wxString GetElectricalTypeName() const
Definition: sch_pin.cpp:349
int GetPenWidth() const override
Definition: sch_pin.h:208
std::map< wxString, ALT > m_alternates
Definition: sch_pin.h:354
const wxString & GetName() const
Definition: sch_pin.cpp:397
wxString GetFriendlyName() const override
Definition: sch_pin.h:83
void SetLength(int aLength)
Definition: sch_pin.h:98
bool IsDangling() const override
Definition: sch_pin.cpp:429
void Plot(PLOTTER *aPlotter, bool aBackground, const SCH_PLOT_OPTS &aPlotOpts, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aDimmed) override
Plot the item to aPlotter.
Definition: sch_pin.cpp:1124
void MirrorHorizontally(int aCenter) override
These transforms have effect only if the pin has a LIB_SYMBOL as parent.
Definition: sch_pin.cpp:1059
std::recursive_mutex m_netmap_mutex
The name that this pin connection will drive onto a net.
Definition: sch_pin.h:381
PIN_ORIENTATION GetOrientation() const
Definition: sch_pin.cpp:256
wxString GetClass() const override
Return the class name.
Definition: sch_pin.h:73
void SetNumberTextSize(int aSize)
Definition: sch_pin.cpp:596
void SetShape(GRAPHIC_PINSHAPE aShape)
Definition: sch_pin.h:95
void RotatePin(const VECTOR2I &aCenter, bool aRotateCCW=true)
Definition: sch_pin.cpp:1086
std::map< wxString, ALT > & GetAlternates()
Definition: sch_pin.h:141
VECTOR2I GetPosition() const override
Definition: sch_pin.cpp:248
wxString GetCanonicalElectricalTypeName() const
Definition: sch_pin.cpp:335
bool Replace(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) override
Perform a text replace using the find and replace criteria in aSearchData on items that support text ...
Definition: sch_pin.cpp:485
int GetNameTextSize() const
Definition: sch_pin.cpp:558
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
Definition: sch_pin.cpp:1409
VECTOR2I m_position
Definition: sch_pin.h:357
wxString m_operatingPoint
Definition: sch_pin.h:369
GRAPHIC_PINSHAPE m_shape
Definition: sch_pin.h:360
int compare(const SCH_ITEM &aOther, int aCompareFlags=0) const override
The pin specific sort order is as follows:
Definition: sch_pin.cpp:1481
wxString GetShownName() const
Definition: sch_pin.cpp:528
static bool ClassOf(const EDA_ITEM *aItem)
Definition: sch_pin.h:78
void MirrorHorizontallyPin(int aCenter)
These transforms have always effects.
Definition: sch_pin.cpp:1046
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
Definition: sch_pin.cpp:498
PIN_LAYOUT_CACHE & GetLayoutCache() const
Get the layout cache associated with this pin.
Definition: sch_pin.h:314
wxString m_name
Definition: sch_pin.h:363
wxString m_alt
Definition: sch_pin.h:367
void SetOperatingPoint(const wxString &aText)
Definition: sch_pin.h:301
void SetType(ELECTRICAL_PINTYPE aType)
Definition: sch_pin.cpp:325
const wxString & GetBaseName() const
Get the name without any alternates.
Definition: sch_pin.cpp:406
~SCH_PIN()
Definition: sch_pin.cpp:220
void ClearDefaultNetName(const SCH_SHEET_PATH *aPath)
Definition: sch_pin.cpp:1213
void SetY(int aY)
Definition: sch_pin.h:220
bool IsPointClickableAnchor(const VECTOR2I &aPos) const override
Definition: sch_pin.h:293
bool IsStacked(const SCH_PIN *aPin) const
Definition: sch_pin.cpp:444
const wxString & GetNumber() const
Definition: sch_pin.h:123
wxString m_number
Definition: sch_pin.h:364
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition: sch_pin.cpp:1003
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: sch_pin.h:178
wxString GetDefaultNetName(const SCH_SHEET_PATH &aPath, bool aForceNoConnect=false)
Definition: sch_pin.cpp:1224
std::optional< int > m_length
Definition: sch_pin.h:358
GRAPHIC_PINSHAPE GetShape() const
Definition: sch_pin.cpp:270
void PlotPinType(PLOTTER *aPlotter, const VECTOR2I &aPosition, PIN_ORIENTATION aOrientation, bool aDimmed) const
Definition: sch_pin.cpp:629
int GetY() const
Definition: sch_pin.h:219
bool IsPower() const
Check if the pin is either a global or local power pin.
Definition: sch_pin.cpp:377
ELECTRICAL_PINTYPE GetType() const
Definition: sch_pin.cpp:305
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
Definition: sch_pin.cpp:1394
void SetNameTextSize(int aSize)
Definition: sch_pin.cpp:572
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
for transforming drawing coordinates for a wxDC device context.
Definition: transform.h:46
#define _(s)
#define SHOW_ELEC_TYPE
Show pin electrical type.
ELECTRICAL_PINTYPE
The symbol library pin object electrical types used in ERC tests.
Definition: pin_type.h:36
PIN_ORIENTATION
The symbol library pin object orientations.
Definition: pin_type.h:80
GRAPHIC_PINSHAPE
Definition: pin_type.h:59
wxString m_Name
Definition: sch_pin.h:44
GRAPHIC_PINSHAPE m_Shape
Definition: sch_pin.h:45
ELECTRICAL_PINTYPE m_Type
Definition: sch_pin.h:46
KIFONT::FONT * m_Font
Definition: sch_pin.h:321
@ SCH_PIN_T
Definition: typeinfo.h:153