KiCad PCB EDA Suite
Loading...
Searching...
No Matches
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 <[email protected]>
6 * Copyright (C) 2018 CERN
7 * Copyright (C) 2004-2024 KiCad Developers, see AUTHOR.txt for contributors.
8 * @author Jon Evans <[email protected]>
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#ifndef SCH_PIN_H
25#define SCH_PIN_H
26
27#include <pin_type.h>
28#include <sch_item.h>
29#include <symbol.h>
30
31class LIB_SYMBOL;
32class SCH_SYMBOL;
33
34// Circle diameter drawn at the active end of pins:
35#define TARGET_PIN_RADIUS schIUScale.MilsToIU( 15 )
36
37
38class SCH_PIN : public SCH_ITEM
39{
40public:
41 struct ALT
42 {
43 wxString m_Name;
44 GRAPHIC_PINSHAPE m_Shape; // Shape drawn around pin
45 ELECTRICAL_PINTYPE m_Type; // Electrical type of the pin.
46 };
47
48 SCH_PIN( LIB_SYMBOL* aParentSymbol );
49
50 SCH_PIN( LIB_SYMBOL* aParentSymbol, const wxString& aName, const wxString& aNumber,
51 PIN_ORIENTATION aOrientation, ELECTRICAL_PINTYPE aPinType, int aLength,
52 int aNameTextSize, int aNumTextSize, int aBodyStyle, const VECTOR2I& aPos, int aUnit );
53
54 SCH_PIN( SCH_SYMBOL* aParentSymbol, SCH_PIN* aLibPin );
55
56 SCH_PIN( SCH_SYMBOL* aParentSymbol, const wxString& aNumber, const wxString& aAlt,
57 const KIID& aUuid );
58
59 SCH_PIN( const SCH_PIN& aPin );
60
61 ~SCH_PIN() override { }
62
63 SCH_PIN& operator=( const SCH_PIN& aPin );
64
65 wxString GetClass() const override
66 {
67 return wxT( "SCH_PIN" );
68 }
69
70 static bool ClassOf( const EDA_ITEM* aItem )
71 {
72 return aItem && aItem->Type() == SCH_PIN_T;
73 }
74
75 wxString GetFriendlyName() const override
76 {
77 return _( "Pin" );
78 }
79
80 SCH_PIN* GetLibPin() const { return m_libPin; }
81 void SetLibPin( SCH_PIN* aLibPin ) { m_libPin = aLibPin; }
82
84 void SetOrientation( PIN_ORIENTATION aOrientation ) { m_orientation = aOrientation; }
85
87 void SetShape( GRAPHIC_PINSHAPE aShape ) { m_shape = aShape; }
88
89 int GetLength() const;
90 void SetLength( int aLength ) { m_length = aLength; }
91
97 void ChangeLength( int aLength );
98
100 void SetType( ELECTRICAL_PINTYPE aType ) { m_type = aType; }
101 wxString GetCanonicalElectricalTypeName() const;
102 wxString GetElectricalTypeName() const;
103
104 bool IsVisible() const;
105 void SetVisible( bool aVisible ) { m_hidden = !aVisible; }
106
107 const wxString& GetName() const;
108 wxString GetShownName() const;
109 void SetName( const wxString& aName );
113 const wxString& GetBaseName() const;
114
115 const wxString& GetNumber() const { return m_number; }
116 wxString GetShownNumber() const;
117 void SetNumber( const wxString& aNumber );
118
119 int GetNameTextSize() const;
120 void SetNameTextSize( int aSize );
121
122 int GetNumberTextSize() const;
123 void SetNumberTextSize( int aSize );
124
125 const std::map<wxString, ALT>& GetAlternates() const
126 {
127 if( m_libPin )
128 return m_libPin->GetAlternates();
129
130 return m_alternates;
131 }
132
133 std::map<wxString, ALT>& GetAlternates()
134 {
135 return const_cast<std::map<wxString, ALT>&>(
136 static_cast<const SCH_PIN*>( this )->GetAlternates() );
137 }
138
139 ALT GetAlt( const wxString& aAlt )
140 {
141 return GetAlternates()[ aAlt ];
142 }
143
144 wxString GetAlt() const { return m_alt; }
145 void SetAlt( const wxString& aAlt ) { m_alt = aAlt; }
146
147 void Print( const SCH_RENDER_SETTINGS* aSettings, int aUnit, int aBodyStyle,
148 const VECTOR2I& aOffset, bool aForceNoFill, bool aDimmed ) override;
149
156 PIN_ORIENTATION PinDrawOrient( const TRANSFORM& aTransform ) const;
157
158#if defined(DEBUG)
159 void Show( int nestLevel, std::ostream& os ) const override;
160#endif
161
162 bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
163
164 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
165
166 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
167
168 const BOX2I ViewBBox() const override;
169
170 void ViewGetLayers( int aLayers[], int& aCount ) const override;
171
172 /* Cannot use a default parameter here as it will not be compatible with the virtual. */
173 const BOX2I GetBoundingBox() const override
174 {
175 return GetBoundingBox( false, true, m_flags & SHOW_ELEC_TYPE );
176 }
177
182 BOX2I GetBoundingBox( bool aIncludeLabelsOnInvisiblePins, bool aIncludeNameAndNumber,
183 bool aIncludeElectricalType ) const;
184
189 bool IsGlobalPower() const
190 {
191 return GetType() == ELECTRICAL_PINTYPE::PT_POWER_IN
192 && ( !IsVisible() || GetParentSymbol()->IsPower() );
193 }
194
195 int GetPenWidth() const override { return 0; }
196
197 void Move( const VECTOR2I& aOffset ) override;
198
199 VECTOR2I GetPosition() const override;
201 void SetPosition( const VECTOR2I& aPos ) override { m_position = aPos; }
202
203 // For properties system
204 int GetX() const { return m_position.x; }
205 void SetX( int aX ) { m_position.x = aX; }
206 int GetY() const { return m_position.y; }
207 void SetY( int aY ) { m_position.y = aY; }
208
209 VECTOR2I GetPinRoot() const;
210
214 void MirrorHorizontally( int aCenter ) override;
215 void MirrorVertically( int aCenter ) override;
216 void Rotate( const VECTOR2I& aCenter, bool aRotateCCW = true ) override;
217
221 void MirrorHorizontallyPin( int aCenter );
222 void MirrorVerticallyPin( int aCenter );
223 void RotatePin( const VECTOR2I& aCenter, bool aRotateCCW = true );
224
230 void PlotPinTexts( PLOTTER *aPlotter, const VECTOR2I &aPinPos, PIN_ORIENTATION aPinOrient,
231 int aTextInside, bool aDrawPinNum, bool aDrawPinName, bool aDimmed ) const;
232
233 void PlotPinType( PLOTTER *aPlotter, const VECTOR2I &aPosition, PIN_ORIENTATION aOrientation,
234 bool aDimmed ) const;
235
236 void Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
237 int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed ) override;
238
239 BITMAPS GetMenuImage() const override;
240
241 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
242 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, ALT* aAlt ) const;
243
244 EDA_ITEM* Clone() const override;
245
246 void CalcEdit( const VECTOR2I& aPosition ) override;
247
248 bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const override;
249
250 bool Replace( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) override;
251
260 static wxString GetCanonicalElectricalTypeName( ELECTRICAL_PINTYPE aType );
261
262 bool IsConnectable() const override { return true; }
263
264 bool HasConnectivityChanges( const SCH_ITEM* aItem,
265 const SCH_SHEET_PATH* aInstance = nullptr ) const override;
266
267 void ClearDefaultNetName( const SCH_SHEET_PATH* aPath );
268 wxString GetDefaultNetName( const SCH_SHEET_PATH& aPath, bool aForceNoConnect = false );
269
270 bool IsDangling() const override
271 {
272 if( GetType() == ELECTRICAL_PINTYPE::PT_NC || GetType() == ELECTRICAL_PINTYPE::PT_NIC )
273 return false;
274
275 return m_isDangling;
276 }
277
278 void SetIsDangling( bool isDangling ) { m_isDangling = isDangling; }
279
284 bool IsStacked( const SCH_PIN* aPin ) const;
285
286 bool IsPointClickableAnchor( const VECTOR2I& aPos ) const override
287 {
288 return m_isDangling && GetPosition() == aPos;
289 }
290
291 bool ConnectionPropagatesTo( const EDA_ITEM* aItem ) const override;
292
293 const wxString& GetOperatingPoint() const { return m_operatingPoint; }
294 void SetOperatingPoint( const wxString& aText ) { m_operatingPoint = aText; }
295
296 double Similarity( const SCH_ITEM& aOther ) const override;
297
298 bool operator>( const SCH_ITEM& aRhs ) const { return compare( aRhs, EQUALITY ) > 0; }
299
300protected:
301 wxString getItemDescription( ALT* aAlt ) const;
302
304 {
306 int m_FontSize = 0;
308 };
309
310 void validateExtentsCache( KIFONT::FONT* aFont, int aSize, const wxString& aText,
311 EXTENTS_CACHE* aCache ) const;
312
317 void printPinSymbol( const SCH_RENDER_SETTINGS *aSettings, const VECTOR2I &aPos,
318 PIN_ORIENTATION aOrientation, bool aDimmed );
319
328 void printPinTexts( const RENDER_SETTINGS* aSettings, const VECTOR2I& aPinPos,
329 PIN_ORIENTATION aPinOrient, int aTextInside, bool aDrawPinNum,
330 bool aDrawPinName, bool aDimmed );
331
335 void printPinElectricalTypeName( const RENDER_SETTINGS* aSettings, const VECTOR2I& aPosition,
336 PIN_ORIENTATION aOrientation, bool aDimmed );
337 std::ostream& operator<<( std::ostream& aStream );
338
339private:
356 int compare( const SCH_ITEM& aOther, int aCompareFlags = 0 ) const override;
357
358protected:
359 SCH_PIN* m_libPin; // The corresponding pin in the LIB_SYMBOL
360 // (nullptr for a pin *in* the LIB_SYMBOL)
361
362 std::map<wxString, ALT> m_alternates; // Map of alternate name to ALT structure
363 // (only valid for pins in LIB_SYMBOLS)
364
365 VECTOR2I m_position; // Position of the pin.
366 std::optional<int> m_length; // Length of the pin.
367 PIN_ORIENTATION m_orientation; // Pin orientation (Up, Down, Left, Right)
368 GRAPHIC_PINSHAPE m_shape; // Shape drawn around pin
369 ELECTRICAL_PINTYPE m_type; // Electrical type of the pin.
370 std::optional<bool> m_hidden;
371 wxString m_name;
372 wxString m_number;
373 std::optional<int> m_numTextSize; // Pin num and Pin name sizes
374 std::optional<int> m_nameTextSize;
375 wxString m_alt; // The current alternate for an instance
376
378
381
383
385 std::recursive_mutex m_netmap_mutex;
386 std::map<const SCH_SHEET_PATH, std::pair<wxString, bool>> m_net_name_map;
387};
388
389
390#endif // SCH_PIN_H
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:89
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:101
EDA_ITEM_FLAGS m_flags
Definition: eda_item.h:499
FONT is an abstract base class for both outline and stroke fonts.
Definition: font.h:131
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
Definition: kiid.h:49
Define a library symbol object.
Definition: lib_symbol.h:78
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:166
const SYMBOL * GetParentSymbol() const
Definition: sch_item.cpp:166
@ EQUALITY
Definition: sch_item.h:660
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW=true) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
Definition: sch_pin.cpp:1461
std::ostream & operator<<(std::ostream &aStream)
Definition: sch_pin.cpp:2182
void SetAlt(const wxString &aAlt)
Definition: sch_pin.h:145
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:1122
VECTOR2I GetLocalPosition() const
Definition: sch_pin.h:200
int GetNumberTextSize() const
Definition: sch_pin.cpp:507
int GetLength() const
Definition: sch_pin.cpp:279
std::optional< bool > m_hidden
Definition: sch_pin.h:370
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const override
Compare the item against the search criteria in aSearchData.
Definition: sch_pin.cpp:396
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:1489
void MirrorVerticallyPin(int aCenter)
Definition: sch_pin.cpp:1410
void validateExtentsCache(KIFONT::FONT *aFont, int aSize, const wxString &aText, EXTENTS_CACHE *aCache) const
Definition: sch_pin.cpp:1679
wxString GetAlt() const
Definition: sch_pin.h:144
bool operator>(const SCH_ITEM &aRhs) const
Definition: sch_pin.h:298
const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
Definition: sch_pin.cpp:1661
const std::map< wxString, ALT > & GetAlternates() const
Definition: sch_pin.h:125
void CalcEdit(const VECTOR2I &aPosition) override
Calculate the attributes of an item at aPosition when it is being edited.
Definition: sch_pin.cpp:2212
void SetNumber(const wxString &aNumber)
Definition: sch_pin.cpp:475
std::optional< int > m_nameTextSize
Definition: sch_pin.h:374
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:1312
void SetVisible(bool aVisible)
Definition: sch_pin.h:105
int GetX() const
Definition: sch_pin.h:204
void ChangeLength(int aLength)
Change the length of a pin and adjust its position based on orientation.
Definition: sch_pin.cpp:1356
ALT GetAlt(const wxString &aAlt)
Definition: sch_pin.h:139
void SetX(int aX)
Definition: sch_pin.h:205
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:1847
SCH_PIN & operator=(const SCH_PIN &aPin)
Definition: sch_pin.cpp:215
wxString GetShownNumber() const
Definition: sch_pin.cpp:466
SCH_PIN * m_libPin
Definition: sch_pin.h:359
void Move(const VECTOR2I &aOffset) override
Move the item by aMoveVector to a new position.
Definition: sch_pin.cpp:1384
std::map< const SCH_SHEET_PATH, std::pair< wxString, bool > > m_net_name_map
Definition: sch_pin.h:386
PIN_ORIENTATION m_orientation
Definition: sch_pin.h:367
const wxString & GetOperatingPoint() const
Definition: sch_pin.h:293
void SetOrientation(PIN_ORIENTATION aOrientation)
Definition: sch_pin.h:84
void SetName(const wxString &aName)
Definition: sch_pin.cpp:372
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.h:189
wxString getItemDescription(ALT *aAlt) const
Definition: sch_pin.cpp:1917
bool IsVisible() const
Definition: sch_pin.cpp:341
bool ConnectionPropagatesTo(const EDA_ITEM *aItem) const override
Return true if this item should propagate connection info to aItem.
Definition: sch_pin.cpp:1869
std::optional< int > m_numTextSize
Definition: sch_pin.h:373
VECTOR2I GetPinRoot() const
Definition: sch_pin.cpp:529
~SCH_PIN() override
Definition: sch_pin.h:61
ELECTRICAL_PINTYPE m_type
Definition: sch_pin.h:369
void SetLibPin(SCH_PIN *aLibPin)
Definition: sch_pin.h:81
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
Definition: sch_pin.cpp:1423
SCH_PIN * GetLibPin() const
Definition: sch_pin.h:80
void SetPosition(const VECTOR2I &aPos) override
Definition: sch_pin.h:201
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:2122
bool m_isDangling
Definition: sch_pin.h:382
bool IsConnectable() const override
Definition: sch_pin.h:262
wxString GetElectricalTypeName() const
Definition: sch_pin.cpp:327
int GetPenWidth() const override
Definition: sch_pin.h:195
std::map< wxString, ALT > m_alternates
Definition: sch_pin.h:362
void ViewGetLayers(int aLayers[], int &aCount) const override
Return the layers the item is drawn on (which may be more than its "home" layer)
Definition: sch_pin.cpp:1667
const wxString & GetName() const
Definition: sch_pin.cpp:354
wxString GetFriendlyName() const override
Definition: sch_pin.h:75
void SetLength(int aLength)
Definition: sch_pin.h:90
bool IsDangling() const override
Definition: sch_pin.h:270
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:1468
void MirrorHorizontally(int aCenter) override
these transforms have effect only if the pin has a LIB_SYMBOL as parent
Definition: sch_pin.cpp:1403
std::recursive_mutex m_netmap_mutex
The name that this pin connection will drive onto a net.
Definition: sch_pin.h:385
PIN_ORIENTATION GetOrientation() const
Definition: sch_pin.cpp:246
wxString GetClass() const override
Return the class name.
Definition: sch_pin.h:65
void SetNumberTextSize(int aSize)
Definition: sch_pin.cpp:522
void printPinTexts(const RENDER_SETTINGS *aSettings, const VECTOR2I &aPinPos, PIN_ORIENTATION aPinOrient, int aTextInside, bool aDrawPinNum, bool aDrawPinName, bool aDimmed)
Put the pin number and pin text info, given the pin line coordinates.
Definition: sch_pin.cpp:726
void SetShape(GRAPHIC_PINSHAPE aShape)
Definition: sch_pin.h:87
void RotatePin(const VECTOR2I &aCenter, bool aRotateCCW=true)
Definition: sch_pin.cpp:1430
std::map< wxString, ALT > & GetAlternates()
Definition: sch_pin.h:133
VECTOR2I GetPosition() const override
Definition: sch_pin.cpp:238
EXTENTS_CACHE m_numExtentsCache
Definition: sch_pin.h:379
wxString GetCanonicalElectricalTypeName() const
Definition: sch_pin.cpp:313
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:409
int GetNameTextSize() const
Definition: sch_pin.cpp:485
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
Definition: sch_pin.cpp:1890
VECTOR2I m_position
Definition: sch_pin.h:365
void printPinSymbol(const SCH_RENDER_SETTINGS *aSettings, const VECTOR2I &aPos, PIN_ORIENTATION aOrientation, bool aDimmed)
Print the pin symbol without text.
Definition: sch_pin.cpp:598
wxString m_operatingPoint
Definition: sch_pin.h:377
GRAPHIC_PINSHAPE m_shape
Definition: sch_pin.h:368
int compare(const SCH_ITEM &aOther, int aCompareFlags=0) const override
The pin specific sort order is as follows:
Definition: sch_pin.cpp:1969
wxString GetShownName() const
Definition: sch_pin.cpp:452
static bool ClassOf(const EDA_ITEM *aItem)
Definition: sch_pin.h:70
void MirrorHorizontallyPin(int aCenter)
these transforms have always effects
Definition: sch_pin.cpp:1390
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:422
wxString m_name
Definition: sch_pin.h:371
wxString m_alt
Definition: sch_pin.h:375
void SetOperatingPoint(const wxString &aText)
Definition: sch_pin.h:294
void SetType(ELECTRICAL_PINTYPE aType)
Definition: sch_pin.h:100
const wxString & GetBaseName() const
Get the name without any alternates.
Definition: sch_pin.cpp:363
void ClearDefaultNetName(const SCH_SHEET_PATH *aPath)
Definition: sch_pin.cpp:1557
void SetY(int aY)
Definition: sch_pin.h:207
void printPinElectricalTypeName(const RENDER_SETTINGS *aSettings, const VECTOR2I &aPosition, PIN_ORIENTATION aOrientation, bool aDimmed)
Draw the electrical type text of the pin (only for the footprint editor)
Definition: sch_pin.cpp:903
EXTENTS_CACHE m_nameExtentsCache
Definition: sch_pin.h:380
void SetIsDangling(bool isDangling)
Definition: sch_pin.h:278
bool IsPointClickableAnchor(const VECTOR2I &aPos) const override
Definition: sch_pin.h:286
bool IsStacked(const SCH_PIN *aPin) const
Definition: sch_pin.cpp:382
const wxString & GetNumber() const
Definition: sch_pin.h:115
wxString m_number
Definition: sch_pin.h:372
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition: sch_pin.cpp:1347
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: sch_pin.h:173
void Print(const SCH_RENDER_SETTINGS *aSettings, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aForceNoFill, bool aDimmed) override
Print an item.
Definition: sch_pin.cpp:549
wxString GetDefaultNetName(const SCH_SHEET_PATH &aPath, bool aForceNoConnect=false)
Definition: sch_pin.cpp:1568
std::optional< int > m_length
Definition: sch_pin.h:366
GRAPHIC_PINSHAPE GetShape() const
Definition: sch_pin.cpp:259
void PlotPinType(PLOTTER *aPlotter, const VECTOR2I &aPosition, PIN_ORIENTATION aOrientation, bool aDimmed) const
Definition: sch_pin.cpp:975
int GetY() const
Definition: sch_pin.h:206
ELECTRICAL_PINTYPE GetType() const
Definition: sch_pin.cpp:292
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
Definition: sch_pin.cpp:1878
void SetNameTextSize(int aSize)
Definition: sch_pin.cpp:500
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:104
virtual bool IsPower() const =0
for transforming drawing coordinates for a wxDC device context.
Definition: transform.h:46
#define _(s)
#define SHOW_ELEC_TYPE
Show pin electrical type. Shared with IS_ROLLOVER.
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:78
GRAPHIC_PINSHAPE
Definition: pin_type.h:57
wxString m_Name
Definition: sch_pin.h:43
GRAPHIC_PINSHAPE m_Shape
Definition: sch_pin.h:44
ELECTRICAL_PINTYPE m_Type
Definition: sch_pin.h:45
KIFONT::FONT * m_Font
Definition: sch_pin.h:305
@ SCH_PIN_T
Definition: typeinfo.h:153