KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_sheet.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, jp.charras at wanadoo.fr
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, see <https://www.gnu.org/licenses/>.
19 */
20
21#ifndef SCH_SHEEET_H
22#define SCH_SHEEET_H
23
24#include <map>
25#include <memory>
26
27#include <sch_field.h>
28
29class KIID_PATH;
30class SCH_SCREEN;
32class SCH_SHEET_LIST;
33class SCH_SHEET_PIN;
34class SCH_SHEET_PATH;
35class EDA_DRAW_FRAME;
36class SCH_NO_CONNECT;
38
39
40#define MIN_SHEET_WIDTH 500 // Units are mils.
41#define MIN_SHEET_HEIGHT 150 // Units are mils.
42
43
47class SCH_SHEET : public SCH_ITEM
48{
49public:
50 SCH_SHEET( EDA_ITEM* aParent = nullptr, const VECTOR2I& aPos = VECTOR2I( 0, 0 ),
51 VECTOR2I aSize = VECTOR2I( schIUScale.MilsToIU( MIN_SHEET_WIDTH ),
52 schIUScale.MilsToIU( MIN_SHEET_HEIGHT ) ) );
53
54 void Serialize( google::protobuf::Any& aContainer ) const override;
55 bool Deserialize( const google::protobuf::Any& aContainer ) override;
56
63 SCH_SHEET( const SCH_SHEET& aSheet );
64
65 ~SCH_SHEET();
66
67 static inline bool ClassOf( const EDA_ITEM* aItem )
68 {
69 return aItem && SCH_SHEET_T == aItem->Type();
70 }
71
72 wxString GetClass() const override
73 {
74 return wxT( "SCH_SHEET" );
75 }
76
86 bool IsMovableFromAnchorPoint() const override { return false; }
87
91 std::vector<SCH_FIELD>& GetFields() { return m_fields; }
92 const std::vector<SCH_FIELD>& GetFields() const { return m_fields; }
93
98 SCH_FIELD* GetField( FIELD_T aFieldType );
99 const SCH_FIELD* GetField( FIELD_T aFieldNdx ) const;
100
108 SCH_FIELD* GetField( const wxString& aFieldName );
109 const SCH_FIELD* GetField( const wxString& aFieldName ) const;
110
111 std::vector<PROPERTY_BASE*> GetDynamicProperties() const override;
112
116 int GetNextFieldOrdinal() const;
117
123 void SetFields( const std::vector<SCH_FIELD>& aFields );
124
130 SCH_FIELD* AddField( const SCH_FIELD& aField );
131
132 void SetFieldText( const wxString& aFieldName, const wxString& aFieldText, const SCH_SHEET_PATH* aPath = nullptr,
133 const wxString& aVariantName = wxEmptyString );
134
135 wxString GetFieldText( const wxString& aFieldName, const SCH_SHEET_PATH* aPath = nullptr,
136 const wxString& aVariantName = wxEmptyString ) const;
137
138 wxString GetShownName( RESOLUTION_CONTEXT aContext ) const
139 {
140 return GetField( FIELD_T::SHEET_NAME )->GetShownText( aContext );
141 }
142 wxString GetName() const { return GetField( FIELD_T::SHEET_NAME )->GetText(); }
143 void SetName( const wxString& aName ) { GetField( FIELD_T::SHEET_NAME )->SetText( aName ); }
144
145 SCH_SCREEN* GetScreen() const { return m_screen; }
146
147 VECTOR2I GetSize() const { return m_size; }
148 void SetSize( const VECTOR2I& aSize ) { m_size = aSize; }
149
150 int GetBorderWidth() const { return m_borderWidth; }
151 void SetBorderWidth( int aWidth ) { m_borderWidth = aWidth; }
152
154 void SetBorderColor( KIGFX::COLOR4D aColor ) { m_borderColor = aColor; }
155
158
164 bool IsVirtualRootSheet() const;
165
173 bool IsTopLevelSheet() const;
174
186 void SetScreen( SCH_SCREEN* aScreen );
187
194 void SyncUuidToScreen();
195
201 int GetScreenCount() const;
202
206 void GetContextualTextVars( wxArrayString* aVars ) const;
207
213 bool ResolveTextVar( const SCH_SHEET_PATH* aPath, wxString* token, int aDepth = 0 ) const;
214
215 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
216
217 /* there is no member for orientation in sch_sheet, to preserve file
218 * format, we detect orientation based on pin edges
219 */
220 bool IsVerticalOrientation() const;
221
226 std::map<SCH_SHEET_PIN*, SCH_NO_CONNECT*> GetNoConnects() const;
227
228 void SetPositionIgnoringPins( const VECTOR2I& aPosition );
229
239 void AddPin( SCH_SHEET_PIN* aSheetPin );
240
241 std::vector<SCH_SHEET_PIN*>& GetPins() { return m_pins; }
242 const std::vector<SCH_SHEET_PIN*>& GetPins() const { return m_pins; }
243
249 void RemovePin( const SCH_SHEET_PIN* aSheetPin );
250
257 void CleanupSheet();
258
266 SCH_SHEET_PIN* GetPin( const VECTOR2I& aPosition );
267
274 bool HasPin( const wxString& aName ) const;
275
276 bool HasPins() const { return !m_pins.empty(); }
277
283 bool HasUndefinedPins() const;
284
296 int GetMinWidth( bool aFromLeft ) const;
297
308 int GetMinHeight( bool aFromTop ) const;
309
310 int GetPenWidth() const override;
311
315 const BOX2I GetBodyBoundingBox() const;
316
317 const BOX2I GetBoundingBox() const override;
318
326
327 void swapData( SCH_ITEM* aItem ) override;
328
332 int SymbolCount() const;
333
341 bool SearchHierarchy( const wxString& aFilename, SCH_SCREEN** aScreen );
342
353 bool LocatePathOfScreen( SCH_SCREEN* aScreen, SCH_SHEET_PATH* aList );
354
360 int CountSheets() const;
361
369 int CountActiveSheets() const;
370
377 int CountSheets( const wxString& aFileName ) const;
378
384 wxString GetFileName() const
385 {
387 }
388
389 // Set a new filename without changing anything else
390 void SetFileName( const wxString& aFilename )
391 {
392 // Filenames are stored using unix notation
393 wxString tmp = aFilename;
394 tmp.Replace( wxT( "\\" ), wxT( "/" ) );
396 }
397
398 // Geometric transforms (used in block operations):
399
400 void Move( const VECTOR2I& aMoveVector ) override;
401 void MirrorHorizontally( int aCenter ) override;
402 void MirrorVertically( int aCenter ) override;
403 void Rotate( const VECTOR2I& aCenter, bool aRotateCCW ) override;
404
405 bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const override;
406
407 bool IsReplaceable() const override { return true; }
408
414 void Resize( const VECTOR2I& aSize );
415
416 void AutoplaceFields( SCH_SCREEN* aScreen, AUTOPLACE_ALGO aAlgo ) override;
417
418 void GetEndPoints( std::vector <DANGLING_END_ITEM>& aItemList ) override;
419
420 bool UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemListByType,
421 std::vector<DANGLING_END_ITEM>& aItemListByPos,
422 const SCH_SHEET_PATH* aPath = nullptr ) override;
423
424 bool IsConnectable() const override { return true; }
425
426 bool HasConnectivityChanges( const SCH_ITEM* aItem,
427 const SCH_SHEET_PATH* aInstance = nullptr ) const override;
428
429 bool CanConnect( const SCH_ITEM* aItem ) const override
430 {
431 return ( aItem->Type() == SCH_LINE_T && aItem->GetLayer() == LAYER_WIRE )
432 || ( aItem->Type() == SCH_LINE_T && aItem->GetLayer() == LAYER_BUS )
433 || ( aItem->Type() == SCH_NO_CONNECT_T )
434 || ( aItem->Type() == SCH_SYMBOL_T );
435 }
436
437 std::vector<VECTOR2I> GetConnectionPoints() const override;
438
439 INSPECT_RESULT Visit( INSPECTOR inspector, void* testData,
440 const std::vector<KICAD_T>& aScanTypes ) override;
441
442 void RunOnChildren( const std::function<void( SCH_ITEM* )>& aFunction, RECURSE_MODE aMode ) override;
443
447 void SetExcludedFromSim( bool aExcludeFromSim, const SCH_SHEET_PATH* aInstance = nullptr,
448 const wxString& aVariantName = wxEmptyString ) override;
449 bool GetExcludedFromSim( const SCH_SHEET_PATH* aInstance = nullptr,
450 const wxString& aVariantName = wxEmptyString ) const override;
451
452 bool GetExcludedFromSimProp() const;
453 void SetExcludedFromSimProp( bool aEnable );
454
458 void SetExcludedFromBOM( bool aExcludeFromBOM, const SCH_SHEET_PATH* aInstance = nullptr,
459 const wxString& aVariantName = wxEmptyString ) override;
460 bool GetExcludedFromBOM( const SCH_SHEET_PATH* aInstance = nullptr,
461 const wxString& aVariantName = wxEmptyString ) const override;
462
463 bool GetExcludedFromBOMProp() const;
464 void SetExcludedFromBOMProp( bool aEnable );
465
469 void SetExcludedFromBoard( bool aExclude, const SCH_SHEET_PATH* aInstance = nullptr,
470 const wxString& aVariantName = wxEmptyString ) override
471 {
472 m_excludedFromBoard = aExclude;
473 }
474
475 bool GetExcludedFromBoard( const SCH_SHEET_PATH* aInstance = nullptr,
476 const wxString& aVariantName = wxEmptyString ) const override
477 {
478 return m_excludedFromBoard;
479 }
480
482 void SetExcludedFromBoardProp( bool aExclude ) { SetExcludedFromBoard( aExclude ); }
483
487 bool GetDNP( const SCH_SHEET_PATH* aInstance = nullptr,
488 const wxString& aVariantName = wxEmptyString ) const override;
489 void SetDNP( bool aDNP, const SCH_SHEET_PATH* aInstance = nullptr,
490 const wxString& aVariantName = wxEmptyString ) override;
491 bool GetDNPProp() const;
492 void SetDNPProp( bool aEnable );
493
494 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
495
496 BITMAPS GetMenuImage() const override;
497
498 SCH_SHEET& operator=( const SCH_ITEM& aSheet );
499
500 bool operator <( const SCH_ITEM& aItem ) const override;
501
502 std::vector<int> ViewGetLayers() const override;
503
504 VECTOR2I GetPosition() const override { return m_pos; }
505 void SetPosition( const VECTOR2I& aPosition ) override;
506
507 bool HitTest( const VECTOR2I& aPosition, int aAccuracy ) const override;
508 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
509 bool HitTest( const SHAPE_LINE_CHAIN& aPoly, bool aContained ) const override;
510
511 void Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
512 int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed ) override;
513
514 EDA_ITEM* Clone() const override;
515
519 const std::vector<SCH_SHEET_INSTANCE>& GetInstances() const { return m_instances; }
520
522 const SCH_SHEET_INSTANCE* GetInstance( const KIID_PATH& aParentPath ) const
523 {
524 return getInstance( aParentPath );
525 }
526
536 bool HasRootInstance() const;
537
546 const SCH_SHEET_INSTANCE& GetRootInstance() const;
547
548 void RemoveInstance( const KIID_PATH& aInstancePath );
549
550 void AddInstance( const SCH_SHEET_INSTANCE& aInstance );
551
552 void DeleteVariant( const KIID_PATH& aPath, const wxString& aVariantName );
553
554 // Remove a variant's override of one field
555 void ClearVariantField( const KIID_PATH& aPath, const wxString& aVariantName,
556 const wxString& aFieldName );
557
558 void RenameVariant( const KIID_PATH& aPath, const wxString& aOldName, const wxString& aNewName );
559
560 void CopyVariant( const KIID_PATH& aPath, const wxString& aSourceVariant,
561 const wxString& aNewVariant );
562
563 void AddVariant( const SCH_SHEET_PATH& aInstance, const SCH_SHEET_VARIANT& aVariant );
564 void DeleteVariant( const SCH_SHEET_PATH& aInstance, const wxString& aVariantName )
565 {
566 DeleteVariant( aInstance.Path(), aVariantName );
567 }
568
569 void RenameVariant( const SCH_SHEET_PATH& aInstance, const wxString& aOldName,
570 const wxString& aNewName )
571 {
572 RenameVariant( aInstance.Path(), aOldName, aNewName );
573 }
574
575 void CopyVariant( const SCH_SHEET_PATH& aInstance, const wxString& aSourceVariant,
576 const wxString& aNewVariant )
577 {
578 CopyVariant( aInstance.Path(), aSourceVariant, aNewVariant );
579 }
580
587 bool HasPageNumberChanges( const SCH_SHEET& aOther ) const;
588
589 bool HasHierarchyChanges( const SCH_SHEET& aOther ) const;
590
596 static int ComparePageNum( const wxString& aPageNumberA, const wxString& aPageNumberB );
597
598 double Similarity( const SCH_ITEM& aOther ) const override;
599
600 bool operator==( const SCH_ITEM& aOther ) const override;
601
602#if defined(DEBUG)
603 void Show( int nestLevel, std::ostream& os ) const override;
604#endif
605
606protected:
609 friend SCHEMATIC; // Only to swap a staged screen in, see SCHEMATIC::AdoptContent().
610
611 void setInstances( const std::vector<SCH_SHEET_INSTANCE>& aInstances )
612 {
613 m_instances = aInstances;
614 }
615
629 bool addInstance( const KIID_PATH& aInstance );
630
640 wxString getPageNumber( const KIID_PATH& aParentPath ) const;
641
651 void setPageNumber( const KIID_PATH& aInstance, const wxString& aPageNumber );
652
653 bool getInstance( SCH_SHEET_INSTANCE& aInstance, const KIID_PATH& aSheetPath,
654 bool aTestFromEnd = false ) const;
655
657 const SCH_SHEET_INSTANCE* getInstance( const KIID_PATH& aPath ) const;
658
659 SCH_SHEET_INSTANCE* getInstance( const SCH_SHEET_PATH& aPath ) { return getInstance( aPath.Path() ); }
660 const SCH_SHEET_INSTANCE* getInstance( const SCH_SHEET_PATH& aPath ) const { return getInstance( aPath.Path() ); }
661
669 void renumberPins();
670
678 SCH_SHEET_PATH findSelf() const;
679
680private:
681 bool doIsConnected( const VECTOR2I& aPosition ) const override;
682
683 friend class SCH_SHEET_PIN;
684 friend class SCH_SHEET_LIST;
685
686private:
687 SCH_SCREEN* m_screen; // Screen that contains the physical data for the
688 // sheet. In complex hierarchies multiple sheets
689 // can share a common screen.
690
691 std::vector<SCH_SHEET_PIN*> m_pins; // The list of sheet connection points.
692 std::vector<SCH_FIELD> m_fields;
693
697 bool m_DNP;
698
699 VECTOR2I m_pos; // The position of the sheet.
700 VECTOR2I m_size; // The size of the sheet.
704
705 std::vector<SCH_SHEET_INSTANCE> m_instances;
706
707 mutable std::map<wxString, std::unique_ptr<SCH_SHEET_FIELD_PROPERTY>> m_dynamicPropertyCache;
708};
709
710
711#endif // SCH_SHEEET_H
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:123
BITMAPS
A list of all bitmap identifiers.
BOX2< VECTOR2I > BOX2I
Definition box2.h:927
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:98
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:110
EDA_ITEM(EDA_ITEM *parent, KICAD_T idType, bool isSCH_ITEM=false, bool isBOARD_ITEM=false)
Definition eda_item.cpp:84
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
Base plotter engine class.
Definition plotter.h:136
virtual const wxString & GetText() const override
Return the string associated with the text object.
Definition sch_field.h:138
wxString GetShownText(const SCH_SHEET_PATH *aPath, RESOLUTION_CONTEXT aContext, const wxString &aVariantName=wxEmptyString, int aDepth=0) const
void SetText(const wxString &aText) override
Object to parser s-expression symbol library and schematic file formats.
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:165
SCH_LAYER_ID GetLayer() const
Return the layer this item is on.
Definition sch_item.h:345
SCH_ITEM(EDA_ITEM *aParent, KICAD_T aType, int aUnit=0, int aBodyStyle=0)
Definition sch_item.cpp:52
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
KIID_PATH Path() const
Get the sheet path as an KIID_PATH.
Define a sheet pin (label) used in sheets to create hierarchical schematics.
Variant information for a schematic sheet.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition sch_sheet.h:48
void GetEndPoints(std::vector< DANGLING_END_ITEM > &aItemList) override
Add the schematic item end points to aItemList if the item has end points.
void GetContextualTextVars(wxArrayString *aVars) const
Return the list of system text vars & fields for this sheet.
friend SCH_SHEET_PATH
Definition sch_sheet.h:607
void SetBorderColor(KIGFX::COLOR4D aColor)
Definition sch_sheet.h:154
const std::vector< SCH_SHEET_PIN * > & GetPins() const
Definition sch_sheet.h:242
friend class SCH_SHEET_PIN
Definition sch_sheet.h:683
void ClearVariantField(const KIID_PATH &aPath, const wxString &aVariantName, const wxString &aFieldName)
VECTOR2I m_size
Definition sch_sheet.h:700
void SetFileName(const wxString &aFilename)
Definition sch_sheet.h:390
bool HasConnectivityChanges(const SCH_ITEM *aItem, const SCH_SHEET_PATH *aInstance=nullptr) const override
Check if aItem has connectivity changes against this object.
wxString GetFileName() const
Return the filename corresponding to this sheet.
Definition sch_sheet.h:384
bool getInstance(SCH_SHEET_INSTANCE &aInstance, const KIID_PATH &aSheetPath, bool aTestFromEnd=false) const
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
void SetExcludedFromSim(bool aExcludeFromSim, const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) override
Set or clear the exclude from simulation flag.
void CopyVariant(const KIID_PATH &aPath, const wxString &aSourceVariant, const wxString &aNewVariant)
const SCH_SHEET_INSTANCE * GetInstance(const KIID_PATH &aParentPath) const
Return this sheet's placement record under aParentPath, or nullptr if it has none.
Definition sch_sheet.h:522
void SetSize(const VECTOR2I &aSize)
Definition sch_sheet.h:148
void RemoveInstance(const KIID_PATH &aInstancePath)
void SetDNP(bool aDNP, const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) override
bool addInstance(const KIID_PATH &aInstance)
Add a new instance aSheetPath to the instance list.
void AddPin(SCH_SHEET_PIN *aSheetPin)
Add aSheetPin to the sheet.
bool HasRootInstance() const
Check to see if this sheet has a root sheet instance.
void SyncUuidToScreen()
Take the identity of the screen this sheet owns.
wxString GetClass() const override
Return the class name.
Definition sch_sheet.h:72
wxString getPageNumber(const KIID_PATH &aParentPath) const
Return the sheet page number for aParentPath.
void SetExcludedFromBOM(bool aExcludeFromBOM, const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) override
Set or clear the exclude from schematic bill of materials flag.
int GetPenWidth() const override
std::map< SCH_SHEET_PIN *, SCH_NO_CONNECT * > GetNoConnects() const
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
bool IsConnectable() const override
Definition sch_sheet.h:424
bool IsTopLevelSheet() const
Check if this sheet is a top-level sheet.
SCH_SHEET_PATH findSelf() const
Get the sheetpath of this sheet.
bool GetDNPProp() const
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const override
Compare the item against the search criteria in aSearchData.
bool GetExcludedFromBoardProp() const
Definition sch_sheet.h:481
double Similarity(const SCH_ITEM &aOther) const override
Return a measure of how likely the other object is to represent the same object.
bool GetExcludedFromBOMProp() const
VECTOR2I m_pos
Definition sch_sheet.h:699
void CopyVariant(const SCH_SHEET_PATH &aInstance, const wxString &aSourceVariant, const wxString &aNewVariant)
Definition sch_sheet.h:575
std::vector< SCH_FIELD > & GetFields()
Return a reference to the vector holding the sheet's fields.
Definition sch_sheet.h:91
KIGFX::COLOR4D m_borderColor
Definition sch_sheet.h:702
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this sheet.
bool m_excludedFromBOM
Definition sch_sheet.h:695
wxString GetName() const
Definition sch_sheet.h:142
void renumberPins()
Renumber the sheet pins in the sheet.
VECTOR2I GetRotationCenter() const
Rotating around the boundingBox's center can cause walking when the sheetname or filename is longer t...
bool HasHierarchyChanges(const SCH_SHEET &aOther) const
SCH_SHEET_PIN * GetPin(const VECTOR2I &aPosition)
Return the sheet pin item found at aPosition in the sheet.
bool GetExcludedFromBOM(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
bool operator<(const SCH_ITEM &aItem) const override
void CleanupSheet()
Delete sheet label which do not have a corresponding hierarchical label.
void RemovePin(const SCH_SHEET_PIN *aSheetPin)
Remove aSheetPin from the sheet.
void SetPositionIgnoringPins(const VECTOR2I &aPosition)
friend SCHEMATIC
Definition sch_sheet.h:609
bool SearchHierarchy(const wxString &aFilename, SCH_SCREEN **aScreen)
Search the existing hierarchy for an instance of screen loaded from aFileName.
bool GetExcludedFromSim(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
bool LocatePathOfScreen(SCH_SCREEN *aScreen, SCH_SHEET_PATH *aList)
Search the existing hierarchy for an instance of screen loaded from aFileName.
std::vector< SCH_SHEET_INSTANCE > m_instances
Definition sch_sheet.h:705
bool HasUndefinedPins() const
Check all sheet labels against schematic for undefined hierarchical labels.
bool m_excludedFromSim
Definition sch_sheet.h:694
void SetPosition(const VECTOR2I &aPosition) override
wxString GetFieldText(const wxString &aFieldName, const SCH_SHEET_PATH *aPath=nullptr, const wxString &aVariantName=wxEmptyString) const
void SetBackgroundColor(KIGFX::COLOR4D aColor)
Definition sch_sheet.h:157
int SymbolCount() const
Count our own symbols, without the power symbols.
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.
bool IsReplaceable() const override
Override this method in any derived object that supports test find and replace.
Definition sch_sheet.h:407
void SetDNPProp(bool aEnable)
void AddInstance(const SCH_SHEET_INSTANCE &aInstance)
int GetMinWidth(bool aFromLeft) const
Return the minimum width of the sheet based on the widths of the sheet pin text.
bool operator==(const SCH_ITEM &aOther) const override
SCH_SCREEN * m_screen
Definition sch_sheet.h:687
std::vector< int > ViewGetLayers() const override
Return the layers the item is drawn on (which may be more than its "home" layer)
std::vector< SCH_FIELD > m_fields
Definition sch_sheet.h:692
void RenameVariant(const KIID_PATH &aPath, const wxString &aOldName, const wxString &aNewName)
VECTOR2I GetSize() const
Definition sch_sheet.h:147
KIGFX::COLOR4D m_backgroundColor
Definition sch_sheet.h:703
void SetExcludedFromBoard(bool aExclude, const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) override
Set or clear exclude from board netlist flag.
Definition sch_sheet.h:469
void DeleteVariant(const KIID_PATH &aPath, const wxString &aVariantName)
SCH_SHEET(EDA_ITEM *aParent=nullptr, const VECTOR2I &aPos=VECTOR2I(0, 0), VECTOR2I aSize=VECTOR2I(schIUScale.MilsToIU(MIN_SHEET_WIDTH), schIUScale.MilsToIU(MIN_SHEET_HEIGHT)))
void SetName(const wxString &aName)
Definition sch_sheet.h:143
int CountSheets() const
Count the number of sheets found in "this" sheet including all of the subsheets.
int GetNextFieldOrdinal() const
Return the next ordinal for a user field for this sheet.
SCH_SCREEN * GetScreen() const
Definition sch_sheet.h:145
void SetExcludedFromSimProp(bool aEnable)
bool HasPins() const
Definition sch_sheet.h:276
VECTOR2I GetPosition() const override
Definition sch_sheet.h:504
const BOX2I GetBodyBoundingBox() const
Return a bounding box for the sheet body but not the fields.
bool HasPin(const wxString &aName) const
Check if the sheet already has a sheet pin named aName.
static int ComparePageNum(const wxString &aPageNumberA, const wxString &aPageNumberB)
Compare page numbers of schematic sheets.
std::vector< PROPERTY_BASE * > GetDynamicProperties() const override
Return dynamically-computed properties specific to this object instance (e.g.
void SetFieldText(const wxString &aFieldName, const wxString &aFieldText, const SCH_SHEET_PATH *aPath=nullptr, const wxString &aVariantName=wxEmptyString)
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
void SetFields(const std::vector< SCH_FIELD > &aFields)
Set multiple schematic fields.
int CountActiveSheets() const
Count the number of sheets found in "this" sheet including all of the subsheets.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
wxString GetShownName(RESOLUTION_CONTEXT aContext) const
Definition sch_sheet.h:138
int GetScreenCount() const
Return the number of times the associated screen for the sheet is being used.
void SetScreen(SCH_SCREEN *aScreen)
Set the SCH_SCREEN associated with this sheet to aScreen.
SCH_SHEET & operator=(const SCH_ITEM &aSheet)
bool HasPageNumberChanges(const SCH_SHEET &aOther) const
Check if the instance data of this sheet has any changes compared to aOther.
const SCH_SHEET_INSTANCE & GetRootInstance() const
Return the root sheet instance data.
bool doIsConnected(const VECTOR2I &aPosition) const override
Provide the object specific test to see if it is connected to aPosition.
void swapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
bool m_excludedFromBoard
Definition sch_sheet.h:696
void setInstances(const std::vector< SCH_SHEET_INSTANCE > &aInstances)
Definition sch_sheet.h:611
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
const std::vector< SCH_FIELD > & GetFields() const
Definition sch_sheet.h:92
std::vector< VECTOR2I > GetConnectionPoints() const override
Add all the connection points for this item to aPoints.
KIGFX::COLOR4D GetBorderColor() const
Definition sch_sheet.h:153
std::vector< SCH_SHEET_PIN * > m_pins
Definition sch_sheet.h:691
bool IsMovableFromAnchorPoint() const override
Return true for items which are moved with the anchor point at mouse cursor and false for items moved...
Definition sch_sheet.h:86
bool CanConnect(const SCH_ITEM *aItem) const override
Definition sch_sheet.h:429
INSPECT_RESULT Visit(INSPECTOR inspector, void *testData, const std::vector< KICAD_T > &aScanTypes) override
May be re-implemented for each derived class in order to handle all the types given by its member dat...
friend class SCH_SHEET_LIST
Definition sch_sheet.h:684
void SetBorderWidth(int aWidth)
Definition sch_sheet.h:151
std::map< wxString, std::unique_ptr< SCH_SHEET_FIELD_PROPERTY > > m_dynamicPropertyCache
Definition sch_sheet.h:707
static bool ClassOf(const EDA_ITEM *aItem)
Definition sch_sheet.h:67
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
SCH_FIELD * AddField(const SCH_FIELD &aField)
Add a @aField to the list of fields.
void setPageNumber(const KIID_PATH &aInstance, const wxString &aPageNumber)
Set the page number for the sheet instance aInstance.
bool IsVirtualRootSheet() const
void AutoplaceFields(SCH_SCREEN *aScreen, AUTOPLACE_ALGO aAlgo) override
int GetMinHeight(bool aFromTop) const
Return the minimum height that the sheet can be resized based on the sheet pin positions.
bool GetDNP(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Set or clear the 'Do Not Populate' flags.
bool GetExcludedFromSimProp() const
void SetExcludedFromBoardProp(bool aExclude)
Definition sch_sheet.h:482
int m_borderWidth
Definition sch_sheet.h:701
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
bool UpdateDanglingState(std::vector< DANGLING_END_ITEM > &aItemListByType, std::vector< DANGLING_END_ITEM > &aItemListByPos, const SCH_SHEET_PATH *aPath=nullptr) override
Test the schematic item to aItemList to check if it's dangling state has changed.
bool GetExcludedFromBoard(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Definition sch_sheet.h:475
void Resize(const VECTOR2I &aSize)
Resize this sheet to aSize and adjust all of the labels accordingly.
void Move(const VECTOR2I &aMoveVector) override
Move the item by aMoveVector to a new position.
int GetBorderWidth() const
Definition sch_sheet.h:150
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.
bool m_DNP
Definition sch_sheet.h:697
std::vector< SCH_SHEET_PIN * > & GetPins()
Definition sch_sheet.h:241
void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode) override
void SetExcludedFromBOMProp(bool aEnable)
void DeleteVariant(const SCH_SHEET_PATH &aInstance, const wxString &aVariantName)
Definition sch_sheet.h:564
friend SCH_IO_KICAD_SEXPR_PARSER
Definition sch_sheet.h:608
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
void AddVariant(const SCH_SHEET_PATH &aInstance, const SCH_SHEET_VARIANT &aVariant)
bool ResolveTextVar(const SCH_SHEET_PATH *aPath, wxString *token, int aDepth=0) const
Resolve any references to system tokens supported by the sheet.
const std::vector< SCH_SHEET_INSTANCE > & GetInstances() const
Definition sch_sheet.h:519
void RenameVariant(const SCH_SHEET_PATH &aInstance, const wxString &aOldName, const wxString &aNewName)
Definition sch_sheet.h:569
SCH_SHEET_INSTANCE * getInstance(const SCH_SHEET_PATH &aPath)
Definition sch_sheet.h:659
bool IsVerticalOrientation() const
const SCH_SHEET_INSTANCE * getInstance(const SCH_SHEET_PATH &aPath) const
Definition sch_sheet.h:660
bool HitTest(const VECTOR2I &aPosition, int aAccuracy) const override
Test if aPosition is inside or on the boundary of this item.
KIGFX::COLOR4D GetBackgroundColor() const
Definition sch_sheet.h:156
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
RESOLUTION_CONTEXT
Definition common.h:87
RECURSE_MODE
Definition eda_item.h:50
INSPECT_RESULT
Definition eda_item.h:44
const INSPECTOR_FUNC & INSPECTOR
std::function passed to nested users by ref, avoids copying std::function.
Definition eda_item.h:91
@ LAYER_WIRE
Definition layer_ids.h:474
@ LAYER_BUS
Definition layer_ids.h:475
AUTOPLACE_ALGO
Definition sch_item.h:68
#define MIN_SHEET_HEIGHT
Definition sch_sheet.h:41
#define MIN_SHEET_WIDTH
Definition sch_sheet.h:40
A simple container for sheet instance information.
FIELD_T
The set of all field indices assuming an array like sequence that a SCH_COMPONENT or LIB_PART can hol...
@ SCH_LINE_T
Definition typeinfo.h:159
@ SCH_NO_CONNECT_T
Definition typeinfo.h:156
@ SCH_SYMBOL_T
Definition typeinfo.h:168
@ SCH_SHEET_T
Definition typeinfo.h:171
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683