KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_item.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) 2006 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#include <pgm_base.h>
27#include <eeschema_settings.h>
28#include <eda_item.h>
29#include <sch_connection.h>
30#include <sch_item.h>
31#include <sch_screen.h>
32#include <sch_sheet_path.h>
33#include <sch_draw_panel.h>
34#include <sch_edit_frame.h>
35#include <schematic.h>
36#include <symbol.h>
37#include <connection_graph.h>
38#include <trace_helpers.h>
39#include <general.h>
40#include <netclass.h>
43
44
45// Rendering fonts is expensive (particularly when using outline fonts). At small effective
46// sizes (ie: zoomed out) the visual differences between outline and/or stroke fonts and the
47// bitmap font becomes immaterial, and there's often more to draw when zoomed out so the
48// performance gain becomes more significant.
49#define BITMAP_FONT_SIZE_THRESHOLD 3
50
51
52wxString SCH_ITEM::GetUnitDescription( int aUnit )
53{
54 if( aUnit == 0 )
55 return _( "All" );
56 else
57 return LIB_SYMBOL::LetterSubReference( aUnit, 'A' );
58}
59
60
61wxString SCH_ITEM::GetBodyStyleDescription( int aBodyStyle )
62{
63 if( aBodyStyle == 0 )
64 return _( "All" );
65 else if( aBodyStyle == BODY_STYLE::DEMORGAN )
66 return _( "Alternate" );
67 else if( aBodyStyle == BODY_STYLE::BASE )
68 return _( "Standard" );
69 else
70 return wxT( "?" );
71}
72
73
74/* Constructor and destructor for SCH_ITEM */
75/* They are not inline because this creates problems with gcc at linking time in debug mode */
76
77SCH_ITEM::SCH_ITEM( EDA_ITEM* aParent, KICAD_T aType, int aUnit, int aBodyStyle ) :
78 EDA_ITEM( aParent, aType, true, false ),
79 m_unit( aUnit ),
80 m_bodyStyle( aBodyStyle ),
81 m_private( false )
82{
83 m_layer = LAYER_WIRE; // It's only a default, in fact
85 m_connectivity_dirty = false; // Item is unconnected until it is placed, so it's clean
86}
87
88
90 EDA_ITEM( aItem )
91{
92 m_layer = aItem.m_layer;
93 m_unit = aItem.m_unit;
95 m_private = aItem.m_private;
98}
99
100
102{
103 m_layer = aItem.m_layer;
104 m_unit = aItem.m_unit;
105 m_bodyStyle = aItem.m_bodyStyle;
106 m_private = aItem.m_private;
109
110 return *this;
111}
112
113
115{
116 for( const auto& it : m_connection_map )
117 delete it.second;
118
119 // Do not try to modify SCHEMATIC::ConnectionGraph()
120 // if the schematic does not exist
122 return;
123
124 SCHEMATIC* sch = Schematic();
125
126 if( sch != nullptr )
127 sch->ConnectionGraph()->RemoveItem( this );
128}
129
130
131SCH_ITEM* SCH_ITEM::Duplicate( bool doClone ) const
132{
133 SCH_ITEM* newItem = (SCH_ITEM*) Clone();
134
135 if( !doClone )
136 const_cast<KIID&>( newItem->m_Uuid ) = KIID();
137
138 newItem->ClearFlags( SELECTED | BRIGHTENED );
139
140 newItem->RunOnChildren(
141 []( SCH_ITEM* aChild )
142 {
143 aChild->ClearFlags( SELECTED | BRIGHTENED );
144 },
145 RECURSE_MODE::NO_RECURSE );
146
147 return newItem;
148}
149
150
152{
153 EDA_ITEM* parent = GetParent();
154
155 while( parent )
156 {
157 if( parent->Type() == SCHEMATIC_T )
158 return static_cast<SCHEMATIC*>( parent );
159 else
160 parent = parent->GetParent();
161 }
162
163 return nullptr;
164}
165
166
168{
169 const EDA_ITEM* parent = GetParent();
170
171 while( parent )
172 {
173 if( parent->Type() == SCH_SYMBOL_T )
174 return static_cast<const SCH_SYMBOL*>( parent );
175 else if( parent->Type() == LIB_SYMBOL_T )
176 return static_cast<const LIB_SYMBOL*>( parent );
177 else
178 parent = parent->GetParent();
179 }
180
181 return nullptr;
182}
183
184
186{
187 EDA_ITEM* parent = GetParent();
188
189 while( parent )
190 {
191 if( parent->Type() == SCH_SYMBOL_T )
192 return static_cast<SCH_SYMBOL*>( parent );
193 else if( parent->Type() == LIB_SYMBOL_T )
194 return static_cast<LIB_SYMBOL*>( parent );
195 else
196 parent = parent->GetParent();
197 }
198
199 return nullptr;
200}
201
202
203std::vector<int> SCH_ITEM::ViewGetLayers() const
204{
205 // Basic fallback
207}
208
209
210bool SCH_ITEM::IsConnected( const VECTOR2I& aPosition ) const
211{
212 if(( m_flags & STRUCT_DELETED ) || ( m_flags & SKIP_STRUCT ) )
213 return false;
214
215 return doIsConnected( aPosition );
216}
217
218
220{
221 if( !IsConnectable() )
222 return nullptr;
223
224 if( !aSheet )
225 aSheet = &Schematic()->CurrentSheet();
226
227 auto it = m_connection_map.find( *aSheet );
228
229 if( it == m_connection_map.end() )
230 return nullptr;
231 else
232 return it->second;
233}
234
235
237{
238 for( auto& [path, conn] : m_connection_map )
239 {
240 conn->SetGraph( aGraph );
241
242 for( auto& member : conn->AllMembers() )
243 member->SetGraph( aGraph );
244 }
245}
246
247
248std::shared_ptr<NETCLASS> SCH_ITEM::GetEffectiveNetClass( const SCH_SHEET_PATH* aSheet ) const
249{
250 static std::shared_ptr<NETCLASS> nullNetclass = std::make_shared<NETCLASS>( wxEmptyString );
251
252 SCHEMATIC* schematic = Schematic();
253
254 if( schematic )
255 {
256 std::shared_ptr<NET_SETTINGS>& netSettings =
257 schematic->Prj().GetProjectFile().m_NetSettings;
258 SCH_CONNECTION* connection = Connection( aSheet );
259
260 if( connection )
261 return netSettings->GetEffectiveNetClass( connection->Name() );
262 else
263 return netSettings->GetDefaultNetclass();
264 }
265
266 return nullNetclass;
267}
268
269
271{
272 auto it = m_connected_items.find( aSheet );
273
274 if( it != m_connected_items.end() )
275 it->second.clear();
276}
277
278
280{
281 return m_connected_items[ aSheet ];
282}
283
284
286{
287 SCH_ITEM_VEC& vec = m_connected_items[ aSheet ];
288
289 // The vector elements are small, so reserve 1k at a time to prevent re-allocations
290 if( vec.size() == vec.capacity() )
291 vec.reserve( vec.size() + 4096 );
292
293 // Add item to the correct place in the sorted vector if it is not already there
294 auto it = std::lower_bound( vec.begin(), vec.end(), aItem );
295
296 if( it == vec.end() || *it != aItem )
297 vec.insert( it, aItem );
298}
299
300
302 CONNECTION_GRAPH* aGraph )
303{
304 SCH_CONNECTION* connection = Connection( &aSheet );
305
306 // N.B. Do not clear the dirty connectivity flag here because we may need
307 // to create a connection for a different sheet, and we don't want to
308 // skip the connection creation because the flag is cleared.
309 if( connection )
310 {
311 connection->Reset();
312 }
313 else
314 {
315 connection = new SCH_CONNECTION( this );
316 m_connection_map.insert( std::make_pair( aSheet, connection ) );
317 }
318
319 connection->SetGraph( aGraph );
320 connection->SetSheet( aSheet );
321 return connection;
322}
323
324
326 CONNECTION_GRAPH* aGraph )
327{
328 if( !IsConnectable() )
329 return nullptr;
330
331 SCH_CONNECTION* connection = Connection( &aSheet );
332
333 if( connection )
334 return connection;
335 else
336 return InitializeConnection( aSheet, aGraph );
337}
338
339
340const wxString& SCH_ITEM::GetCachedDriverName() const
341{
342 static wxString s_empty;
343 return s_empty;
344}
345
346
348{
350}
351
352
354{
355 if( aImage == nullptr )
356 return;
357
358 EDA_ITEM* parent = GetParent();
360
361 SetParentGroup( nullptr );
362 aImage->SetParentGroup( nullptr );
363 swapData( aImage );
364
365 // Restore pointers to be sure they are not broken
366 SetParent( parent );
368}
369
370
372{
373 EDA_ITEM_FLAGS editFlags = GetEditFlags();
374 EDA_ITEM_FLAGS tempFlags = GetTempFlags();
375 EDA_ITEM_FLAGS aItem_editFlags = aItem->GetEditFlags();
376 EDA_ITEM_FLAGS aItem_tempFlags = aItem->GetTempFlags();
377
378 std::swap( m_flags, aItem->m_flags );
379
381 SetFlags( editFlags );
383 SetFlags( tempFlags );
384
385 aItem->ClearEditFlags();
386 aItem->SetFlags( aItem_editFlags );
387 aItem->ClearTempFlags();
388 aItem->SetFlags( aItem_tempFlags );
389}
390
391
393{
394 auto clearTextCaches =
395 []( SCH_ITEM* aItem )
396 {
397 EDA_TEXT* text = dynamic_cast<EDA_TEXT*>( aItem );
398
399 if( text )
400 {
401 text->ClearBoundingBoxCache();
402 text->ClearRenderCache();
403 }
404 };
405
406 clearTextCaches( this );
407
408 RunOnChildren( clearTextCaches, RECURSE_MODE::NO_RECURSE );
409}
410
411
412bool SCH_ITEM::operator==( const SCH_ITEM& aOther ) const
413{
414 if( Type() != aOther.Type() )
415 return false;
416
417 return compare( aOther, SCH_ITEM::COMPARE_FLAGS::EQUALITY ) == 0;
418}
419
420
421bool SCH_ITEM::operator<( const SCH_ITEM& aOther ) const
422{
423 if( Type() != aOther.Type() )
424 return Type() < aOther.Type();
425
426 return ( compare( aOther ) < 0 );
427}
428
429
430bool SCH_ITEM::cmp_items::operator()( const SCH_ITEM* aFirst, const SCH_ITEM* aSecond ) const
431{
432 return aFirst->compare( *aSecond, COMPARE_FLAGS::EQUALITY ) < 0;
433}
434
435
436int SCH_ITEM::compare( const SCH_ITEM& aOther, int aCompareFlags ) const
437{
438 if( Type() != aOther.Type() )
439 return Type() - aOther.Type();
440
441 if( !( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::UNIT ) && m_unit != aOther.m_unit )
442 return m_unit - aOther.m_unit;
443
444 if( !( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::UNIT ) && m_bodyStyle != aOther.m_bodyStyle )
445 return m_bodyStyle - aOther.m_bodyStyle;
446
447 if( IsPrivate() != aOther.IsPrivate() )
448 return IsPrivate() ? 1 : -1;
449
450 if( !( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::SKIP_TST_POS ) )
451 {
452 if( GetPosition().x != aOther.GetPosition().x )
453 return GetPosition().x - aOther.GetPosition().x;
454
455 if( GetPosition().y != aOther.GetPosition().y )
456 return GetPosition().y - aOther.GetPosition().y;
457 }
458
459 if( ( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::EQUALITY )
460 || ( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::ERC ) )
461 {
462 return 0;
463 }
464
465 if( m_Uuid < aOther.m_Uuid )
466 return -1;
467
468 if( m_Uuid > aOther.m_Uuid )
469 return 1;
470
471 return 0;
472}
473
474
475const wxString& SCH_ITEM::GetDefaultFont() const
476{
478 EESCHEMA_SETTINGS* cfg = mgr.GetAppSettings<EESCHEMA_SETTINGS>( "eeschema" );
479
480 return cfg->m_Appearance.default_font;
481}
482
483
485{
486 if( SCHEMATIC* schematic = Schematic() )
487 return schematic->Settings().m_FontMetrics;
488
490}
491
492
494{
495 // For historical reasons, a stored value of 0 means "default width" and negative
496 // numbers meant "don't stroke".
497
498 if( GetPenWidth() < 0 )
499 return 0;
500 else if( GetPenWidth() == 0 )
501 return std::max( aSettings->GetDefaultPenWidth(), aSettings->GetMinPenWidth() );
502 else
503 return std::max( GetPenWidth(), aSettings->GetMinPenWidth() );
504}
505
506
507bool SCH_ITEM::RenderAsBitmap( double aWorldScale ) const
508{
509 if( IsHypertext() )
510 return false;
511
512 if( const EDA_TEXT* text = dynamic_cast<const EDA_TEXT*>( this ) )
513 return text->GetTextHeight() * aWorldScale < BITMAP_FONT_SIZE_THRESHOLD;
514
515 return false;
516}
517
518
520 std::vector<MSG_PANEL_ITEM>& aList )
521{
522 wxString msg;
523
524 aList.emplace_back( _( "Type" ), GetFriendlyName() );
525
526 if( const SYMBOL* parent = GetParentSymbol() )
527 {
528 if( parent->GetUnitCount() )
529 aList.emplace_back( _( "Unit" ), GetUnitDescription( m_unit ) );
530
531 if( parent->HasAlternateBodyStyle() )
532 aList.emplace_back( _( "Body Style" ), GetBodyStyleDescription( m_bodyStyle ) );
533 }
534
535 if( IsPrivate() )
536 aList.emplace_back( _( "Private" ), wxEmptyString );
537}
538
539
540static struct SCH_ITEM_DESC
541{
543 {
547
548#ifdef NOTYET
549 // Not yet functional in UI
550 propMgr.AddProperty( new PROPERTY<SCH_ITEM, bool>( _HKI( "Locked" ),
552#endif
553
554 auto multiUnit =
555 [=]( INSPECTABLE* aItem ) -> bool
556 {
557 if( SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( aItem ) )
558 {
559 if( const SYMBOL* symbol = schItem->GetParentSymbol() )
560 return symbol->IsMulti();
561 }
562
563 return false;
564 };
565
566 auto multiBodyStyle =
567 [=]( INSPECTABLE* aItem ) -> bool
568 {
569 if( SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( aItem ) )
570 {
571 if( const SYMBOL* symbol = schItem->GetParentSymbol() )
572 return symbol->HasAlternateBodyStyle();
573 }
574
575 return false;
576 };
577
578 propMgr.AddProperty( new PROPERTY<SCH_ITEM, int>( _HKI( "Unit" ),
580 .SetAvailableFunc( multiUnit )
582
583 propMgr.AddProperty( new PROPERTY<SCH_ITEM, int>( _HKI( "Body Style" ),
585 .SetAvailableFunc( multiBodyStyle )
587
588 propMgr.AddProperty( new PROPERTY<SCH_ITEM, bool>( _HKI( "Private" ),
591 }
593
595
596
597static bool lessYX( const DANGLING_END_ITEM& a, const DANGLING_END_ITEM& b )
598{
599 const auto aPos = a.GetPosition();
600 const auto bPos = b.GetPosition();
601 return aPos.y < bPos.y ? true : ( aPos.y > bPos.y ? false : aPos.x < bPos.x );
602};
603
604
605static bool lessType( const DANGLING_END_ITEM& a, const DANGLING_END_ITEM& b )
606{
607 return a.GetType() < b.GetType();
608};
609
610
611std::vector<DANGLING_END_ITEM>::iterator
612DANGLING_END_ITEM_HELPER::get_lower_pos( std::vector<DANGLING_END_ITEM>& aItemListByPos,
613 const VECTOR2I& aPos )
614{
615 DANGLING_END_ITEM needle = DANGLING_END_ITEM( PIN_END, nullptr, aPos );
616 auto start = aItemListByPos.begin();
617 auto end = aItemListByPos.end();
618 return std::lower_bound( start, end, needle, lessYX );
619}
620
621
622std::vector<DANGLING_END_ITEM>::iterator
623DANGLING_END_ITEM_HELPER::get_lower_type( std::vector<DANGLING_END_ITEM>& aItemListByType,
624 const DANGLING_END_T& aType )
625{
626 DANGLING_END_ITEM needle = DANGLING_END_ITEM( aType, nullptr, VECTOR2I{} );
627 auto start = aItemListByType.begin();
628 auto end = aItemListByType.end();
629 return std::lower_bound( start, end, needle, lessType );
630}
631
632
634 std::vector<DANGLING_END_ITEM>& aItemListByType,
635 std::vector<DANGLING_END_ITEM>& aItemListByPos )
636{
637 // WIRE_END pairs must be kept together. Hence stable sort.
638 std::stable_sort( aItemListByType.begin(), aItemListByType.end(), lessType );
639
640 // Sort by y first, pins are more likely to share x than y.
641 std::sort( aItemListByPos.begin(), aItemListByPos.end(), lessYX );
642}
Calculate the connectivity of a schematic and generates netlists.
void RemoveItem(SCH_ITEM *aItem)
static std::vector< DANGLING_END_ITEM >::iterator get_lower_type(std::vector< DANGLING_END_ITEM > &aItemListByType, const DANGLING_END_T &aType)
Definition: sch_item.cpp:623
static std::vector< DANGLING_END_ITEM >::iterator get_lower_pos(std::vector< DANGLING_END_ITEM > &aItemListByPos, const VECTOR2I &aPos)
Definition: sch_item.cpp:612
static void sort_dangling_end_items(std::vector< DANGLING_END_ITEM > &aItemListByType, std::vector< DANGLING_END_ITEM > &aItemListByPos)
Both contain the same information.
Definition: sch_item.cpp:633
Helper class used to store the state of schematic items that can be connected to other schematic item...
Definition: sch_item.h:96
DANGLING_END_T GetType() const
Definition: sch_item.h:132
The base class for create windows for drawing purpose.
A set of EDA_ITEMs (i.e., without duplicates).
Definition: eda_group.h:45
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:96
virtual VECTOR2I GetPosition() const
Definition: eda_item.h:252
virtual void ClearEditFlags()
Definition: eda_item.h:149
EDA_ITEM_FLAGS GetEditFlags() const
Definition: eda_item.h:141
void SetFlags(EDA_ITEM_FLAGS aMask)
Definition: eda_item.h:135
const KIID m_Uuid
Definition: eda_item.h:498
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:108
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
Definition: eda_item.h:137
EDA_ITEM_FLAGS m_flags
Definition: eda_item.h:509
EDA_ITEM_FLAGS GetTempFlags() const
Definition: eda_item.h:154
virtual void SetParentGroup(EDA_GROUP *aGroup)
Definition: eda_item.h:113
EDA_GROUP * GetParentGroup() const
Definition: eda_item.h:114
virtual void SetParent(EDA_ITEM *aParent)
Definition: eda_item.h:111
virtual wxString GetFriendlyName() const
Definition: eda_item.cpp:374
EDA_ITEM * GetParent() const
Definition: eda_item.h:110
virtual EDA_ITEM * Clone() const
Create a duplicate of this item with linked list members set to NULL.
Definition: eda_item.cpp:92
virtual void ClearTempFlags()
Definition: eda_item.h:161
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition: eda_text.h:80
Class that other classes need to inherit from, in order to be inspectable.
Definition: inspectable.h:37
static const METRICS & Default()
Definition: font.cpp:52
int GetDefaultPenWidth() const
Definition: kiid.h:49
Define a library symbol object.
Definition: lib_symbol.h:85
static wxString LetterSubReference(int aUnit, int aFirstId)
Definition: lib_symbol.cpp:515
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
std::shared_ptr< NET_SETTINGS > m_NetSettings
Net settings for this project (owned here)
Definition: project_file.h:189
virtual PROJECT_FILE & GetProjectFile() const
Definition: project.h:203
PROPERTY_BASE & SetAvailableFunc(std::function< bool(INSPECTABLE *)> aFunc)
Set a callback function to determine whether an object provides this property.
Definition: property.h:257
PROPERTY_BASE & SetIsHiddenFromDesignEditors(bool aIsHidden=true)
Definition: property.h:321
Provide class metadata.Helper macro to map type hashes to names.
Definition: property_mgr.h:85
void InheritsAfter(TYPE_ID aDerived, TYPE_ID aBase)
Declare an inheritance relationship between types.
static PROPERTY_MANAGER & Instance()
Definition: property_mgr.h:87
PROPERTY_BASE & AddProperty(PROPERTY_BASE *aProperty, const wxString &aGroup=wxEmptyString)
Register a property.
Holds all the data relating to one schematic.
Definition: schematic.h:69
PROJECT & Prj() const
Return a reference to the project this schematic is part of.
Definition: schematic.h:84
CONNECTION_GRAPH * ConnectionGraph() const
Definition: schematic.h:158
static bool m_IsSchematicExists
True if a SCHEMATIC exists, false if not.
Definition: schematic.h:352
SCH_SHEET_PATH & CurrentSheet() const
Definition: schematic.h:148
Each graphical item can have a SCH_CONNECTION describing its logical connection (to a bus or net).
void Reset()
Clears connectivity information.
wxString Name(bool aIgnoreSheet=false) const
void SetGraph(CONNECTION_GRAPH *aGraph)
void SetSheet(SCH_SHEET_PATH aSheet)
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
virtual void SetBodyStyle(int aBodyStyle)
Definition: sch_item.h:238
virtual bool IsConnectable() const
Definition: sch_item.h:462
int m_unit
Definition: sch_item.h:707
virtual bool IsLocked() const
Definition: sch_item.h:278
virtual int GetPenWidth() const
Definition: sch_item.h:302
const SCH_ITEM_VEC & ConnectedItems(const SCH_SHEET_PATH &aPath)
Retrieve the set of items connected to this item on the given sheet.
Definition: sch_item.cpp:279
SCH_ITEM & operator=(const SCH_ITEM &aPin)
Definition: sch_item.cpp:101
void ClearConnectedItems(const SCH_SHEET_PATH &aPath)
Clear all connections to this item.
Definition: sch_item.cpp:270
virtual bool doIsConnected(const VECTOR2I &aPosition) const
Provide the object specific test to see if it is connected to aPosition.
Definition: sch_item.h:703
virtual void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode)
Definition: sch_item.h:566
int m_bodyStyle
Definition: sch_item.h:708
const wxString & GetDefaultFont() const
Definition: sch_item.cpp:475
virtual ~SCH_ITEM()
Definition: sch_item.cpp:114
const SYMBOL * GetParentSymbol() const
Definition: sch_item.cpp:167
void SetPrivate(bool aPrivate)
Definition: sch_item.h:241
virtual void swapData(SCH_ITEM *aItem)
Swap the internal data structures aItem with the schematic item.
Definition: sch_item.cpp:347
virtual const wxString & GetCachedDriverName() const
Definition: sch_item.cpp:340
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
Definition: sch_item.cpp:151
int GetBodyStyle() const
Definition: sch_item.h:239
std::vector< int > ViewGetLayers() const override
Return the layers the item is drawn on (which may be more than its "home" layer)
Definition: sch_item.cpp:203
static wxString GetUnitDescription(int aUnit)
Definition: sch_item.cpp:52
SCH_CONNECTION * InitializeConnection(const SCH_SHEET_PATH &aPath, CONNECTION_GRAPH *aGraph)
Create a new connection object associated with this object.
Definition: sch_item.cpp:301
void AddConnectionTo(const SCH_SHEET_PATH &aPath, SCH_ITEM *aItem)
Add a connection link between this item and another.
Definition: sch_item.cpp:285
virtual void SetLocked(bool aLocked)
Definition: sch_item.h:279
@ SKIP_TST_POS
Definition: sch_item.h:636
@ EQUALITY
Definition: sch_item.h:634
int GetUnit() const
Definition: sch_item.h:236
std::shared_ptr< NETCLASS > GetEffectiveNetClass(const SCH_SHEET_PATH *aSheet=nullptr) const
Definition: sch_item.cpp:248
virtual bool operator==(const SCH_ITEM &aOther) const
Definition: sch_item.cpp:412
bool m_connectivity_dirty
Definition: sch_item.h:720
bool IsPrivate() const
Definition: sch_item.h:242
virtual void ClearCaches()
Definition: sch_item.cpp:392
virtual int compare(const SCH_ITEM &aOther, int aCompareFlags=0) const
Provide the draw object specific comparison called by the == and < operators.
Definition: sch_item.cpp:436
bool RenderAsBitmap(double aWorldScale) const override
Definition: sch_item.cpp:507
static wxString GetBodyStyleDescription(int aBodyStyle)
Definition: sch_item.cpp:61
void SetConnectionGraph(CONNECTION_GRAPH *aGraph)
Update the connection graph for all connections in this item.
Definition: sch_item.cpp:236
virtual void SetUnit(int aUnit)
Definition: sch_item.h:235
AUTOPLACE_ALGO m_fieldsAutoplaced
Definition: sch_item.h:710
void SwapFlags(SCH_ITEM *aItem)
Swap the non-temp and non-edit flags.
Definition: sch_item.cpp:371
bool IsConnected(const VECTOR2I &aPoint) const
Test the item to see if it is connected to aPoint.
Definition: sch_item.cpp:210
SCH_ITEM(EDA_ITEM *aParent, KICAD_T aType, int aUnit=0, int aBodyStyle=0)
Definition: sch_item.cpp:77
std::unordered_map< SCH_SHEET_PATH, SCH_CONNECTION * > m_connection_map
Store connectivity information, per sheet.
Definition: sch_item.h:718
virtual bool operator<(const SCH_ITEM &aItem) const
Definition: sch_item.cpp:421
bool m_private
Definition: sch_item.h:709
virtual bool IsHypertext() const
Allow items to support hypertext actions when hovered/clicked.
Definition: sch_item.h:284
SCH_CONNECTION * GetOrInitConnection(const SCH_SHEET_PATH &aPath, CONNECTION_GRAPH *aGraph)
Definition: sch_item.cpp:325
SCH_CONNECTION * Connection(const SCH_SHEET_PATH *aSheet=nullptr) const
Retrieve the connection associated with this object in the given sheet.
Definition: sch_item.cpp:219
wxString GetClass() const override
Return the class name.
Definition: sch_item.h:177
const KIFONT::METRICS & GetFontMetrics() const
Definition: sch_item.cpp:484
std::map< SCH_SHEET_PATH, SCH_ITEM_VEC, SHEET_PATH_CMP > m_connected_items
Store pointers to other items that are connected to this one, per sheet.
Definition: sch_item.h:715
int GetEffectivePenWidth(const SCH_RENDER_SETTINGS *aSettings) const
Definition: sch_item.cpp:493
void SwapItemData(SCH_ITEM *aImage)
Swap data between aItem and aImage.
Definition: sch_item.cpp:353
SCH_LAYER_ID m_layer
Definition: sch_item.h:706
SCH_ITEM * Duplicate(bool doClone=false) const
Routine to create a new copy of given item.
Definition: sch_item.cpp:131
void getSymbolEditorMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList)
Definition: sch_item.cpp:519
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
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
A base class for LIB_SYMBOL and SCH_SYMBOL.
Definition: symbol.h:63
#define _HKI(x)
#define _(s)
#define BRIGHTENED
item is drawn with a bright contour
#define SELECTED
Item was manually selected by the user.
#define STRUCT_DELETED
flag indication structures to be erased
#define SKIP_STRUCT
flag indicating that the structure should be ignored
std::uint32_t EDA_ITEM_FLAGS
SCH_LAYER_ID
Eeschema drawing layers.
Definition: layer_ids.h:438
@ LAYER_DEVICE
Definition: layer_ids.h:455
@ LAYER_WIRE
Definition: layer_ids.h:441
@ LAYER_DEVICE_BACKGROUND
Definition: layer_ids.h:473
@ LAYER_SELECTION_SHADOWS
Definition: layer_ids.h:483
#define UNIMPLEMENTED_FOR(type)
Definition: macros.h:96
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
#define TYPE_HASH(x)
Definition: property.h:71
#define IMPLEMENT_ENUM_TO_WXANY(type)
Definition: property.h:780
#define REGISTER_TYPE(x)
Definition: property_mgr.h:371
static bool lessYX(const DANGLING_END_ITEM &a, const DANGLING_END_ITEM &b)
Definition: sch_item.cpp:597
#define BITMAP_FONT_SIZE_THRESHOLD
Definition: sch_item.cpp:49
static bool lessType(const DANGLING_END_ITEM &a, const DANGLING_END_ITEM &b)
Definition: sch_item.cpp:605
static struct SCH_ITEM_DESC _SCH_ITEM_DESC
@ AUTOPLACE_NONE
Definition: sch_item.h:69
DANGLING_END_T
Definition: sch_item.h:77
@ PIN_END
Definition: sch_item.h:82
std::vector< SCH_ITEM * > SCH_ITEM_VEC
Definition: sch_item.h:156
Definition of the SCH_SHEET_PATH and SCH_SHEET_LIST classes for Eeschema.
bool operator()(const SCH_ITEM *aFirst, const SCH_ITEM *aSecond) const
Definition: sch_item.cpp:430
VECTOR2I end
wxLogTrace helper definitions.
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
@ LIB_SYMBOL_T
Definition: typeinfo.h:148
@ SCH_SYMBOL_T
Definition: typeinfo.h:172
@ SCHEMATIC_T
Definition: typeinfo.h:204