KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_group.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
29#ifndef CLASS_SCH_GROUP_H_
30#define CLASS_SCH_GROUP_H_
31
32#include <eda_group.h>
33#include <sch_commit.h>
34#include <sch_item.h>
35#include <lset.h>
36#include <unordered_set>
37
38namespace KIGFX
39{
40class VIEW;
41}
42
51class SCH_GROUP : public SCH_ITEM, public EDA_GROUP
52{
53public:
54 SCH_GROUP();
55
56 SCH_GROUP( SCH_ITEM* aParent );
57
58 EDA_ITEM* AsEdaItem() override { return this; }
59
60 static inline bool ClassOf( const EDA_ITEM* aItem ) { return aItem && SCH_GROUP_T == aItem->Type(); }
61
62 wxString GetClass() const override { return wxT( "SCH_GROUP" ); }
63
69 bool AddItem( EDA_ITEM* aItem ) override;
70
76 bool RemoveItem( EDA_ITEM* aItem ) override;
77
78 void RemoveAll() override;
79
80 std::unordered_set<SCH_ITEM*> GetSchItems() const;
81
82 /*
83 * Search for highest level group inside of aScope, containing item.
84 *
85 * @param aScope restricts the search to groups within the group scope.
86 * @param isSymbolEditor true if we should stop promoting at the symbol level
87 * @return group inside of aScope, containing item, if exists, otherwise, nullptr
88 */
89 static EDA_GROUP* TopLevelGroup( SCH_ITEM* aItem, EDA_GROUP* aScope, bool isSymbolEditor );
90
91 static bool WithinScope( SCH_ITEM* aItem, SCH_GROUP* aScope, bool isSymbolEditor );
92
93 double Similarity( const SCH_ITEM& aOther ) const override;
94
95 bool operator==( const SCH_GROUP& aOther ) const;
96 bool operator==( const SCH_ITEM& aSchItem ) const override;
97
98#if defined( DEBUG )
99 void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
100#endif
101
103 VECTOR2I GetPosition() const override;
104
106 void SetPosition( const VECTOR2I& aNewpos ) override;
107
109 EDA_ITEM* Clone() const override;
110
111 /*
112 * Clone() this and all descendants
113 */
114 SCH_GROUP* DeepClone() const override;
115
116 /*
117 * Duplicate() this and all descendants
118 */
119 SCH_GROUP* DeepDuplicate() const override;
120
122 bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
123
125 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
126
128 const BOX2I GetBoundingBox() const override;
129
131 INSPECT_RESULT Visit( INSPECTOR aInspector, void* aTestData,
132 const std::vector<KICAD_T>& aScanTypes ) override;
133
135 std::vector<int> ViewGetLayers() const override;
136
138 double ViewGetLOD( int aLayer, const KIGFX::VIEW* aView ) const override;
139
141 void Move( const VECTOR2I& aMoveVector ) override;
142
144 void Rotate( const VECTOR2I& aCenter, bool aRotateCCW ) override;
145
147 void MirrorHorizontally( int aCenter ) override;
148
150 void MirrorVertically( int aCenter ) override;
151
153 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
154
156 BITMAPS GetMenuImage() const override;
157
159 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
160
162 void RunOnChildren( const std::function<void( SCH_ITEM* )>& aFunction, RECURSE_MODE aMode ) override;
163
169 static bool IsGroupableType( KICAD_T aType );
170
172 void swapData( SCH_ITEM* aImage ) override;
173};
174
175#endif
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
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
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:108
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:67
A set of SCH_ITEMs (i.e., without duplicates).
Definition: sch_group.h:52
SCH_GROUP * DeepDuplicate() const override
Definition: sch_group.cpp:229
void Move(const VECTOR2I &aMoveVector) override
Move the item by aMoveVector to a new position.
Definition: sch_group.cpp:317
std::vector< int > ViewGetLayers() const override
Definition: sch_group.cpp:302
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
Definition: sch_group.cpp:354
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
Definition: sch_group.cpp:324
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_group.cpp:419
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition: sch_group.cpp:203
wxString GetClass() const override
Return the class name.
Definition: sch_group.h:62
bool AddItem(EDA_ITEM *aItem) override
Add item to group.
Definition: sch_group.cpp:78
static bool WithinScope(SCH_ITEM *aItem, SCH_GROUP *aScope, bool isSymbolEditor)
Definition: sch_group.cpp:176
bool operator==(const SCH_GROUP &aOther) const
Definition: sch_group.cpp:397
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_group.cpp:360
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
Definition: sch_group.cpp:345
double ViewGetLOD(int aLayer, const KIGFX::VIEW *aView) const override
Definition: sch_group.cpp:308
INSPECT_RESULT Visit(INSPECTOR aInspector, void *aTestData, 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...
Definition: sch_group.cpp:286
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
Definition: sch_group.cpp:338
void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode) override
Definition: sch_group.cpp:367
void SetPosition(const VECTOR2I &aNewpos) override
Definition: sch_group.cpp:195
std::unordered_set< SCH_ITEM * > GetSchItems() const
Definition: sch_group.cpp:119
static bool ClassOf(const EDA_ITEM *aItem)
Definition: sch_group.h:60
static EDA_GROUP * TopLevelGroup(SCH_ITEM *aItem, EDA_GROUP *aScope, bool isSymbolEditor)
Definition: sch_group.cpp:170
void swapData(SCH_ITEM *aImage) override
Swap the internal data structures aItem with the schematic item.
Definition: sch_group.cpp:246
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
Definition: sch_group.cpp:331
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
Definition: sch_group.cpp:254
bool RemoveItem(EDA_ITEM *aItem) override
Remove item from group.
Definition: sch_group.cpp:95
EDA_ITEM * AsEdaItem() override
Definition: sch_group.h:58
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: sch_group.cpp:268
SCH_GROUP * DeepClone() const override
Definition: sch_group.cpp:211
VECTOR2I GetPosition() const override
Definition: sch_group.cpp:189
void RemoveAll() override
Definition: sch_group.cpp:110
static bool IsGroupableType(KICAD_T aType)
Check if the proposed type can be added to a group.
Definition: sch_group.cpp:46
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
RECURSE_MODE
Definition: eda_item.h:49
INSPECT_RESULT
Definition: eda_item.h:43
const INSPECTOR_FUNC & INSPECTOR
std::function passed to nested users by ref, avoids copying std::function.
Definition: eda_item.h:89
The Cairo implementation of the graphics abstraction layer.
Definition: eda_group.h:32
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
@ SCH_GROUP_T
Definition: typeinfo.h:173