KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_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 (C) 2020 Joshua Redstone redstone at gmail.com
5 * Copyright (C) 1992-2022 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
30#ifndef CLASS_PCB_GROUP_H_
31#define CLASS_PCB_GROUP_H_
32
33#include <board_commit.h>
34#include <board_item.h>
35#include <unordered_set>
36
37namespace KIGFX
38{
39class VIEW;
40}
41
50class PCB_GROUP : public BOARD_ITEM
51{
52public:
53 PCB_GROUP( BOARD_ITEM* aParent );
54
55 static inline bool ClassOf( const EDA_ITEM* aItem )
56 {
57 return aItem && PCB_GROUP_T == aItem->Type();
58 }
59
60 wxString GetClass() const override
61 {
62 return wxT( "PCB_GROUP" );
63 }
64
65 wxString GetName() const { return m_name; }
66 void SetName( const wxString& aName ) { m_name = aName; }
67
68 std::unordered_set<BOARD_ITEM*>& GetItems()
69 {
70 return m_items;
71 }
72
73 const std::unordered_set<BOARD_ITEM*>& GetItems() const
74 {
75 return m_items;
76 }
77
83 bool AddItem( BOARD_ITEM* aItem );
84
90 bool RemoveItem( BOARD_ITEM* aItem );
91
92 void RemoveAll();
93
94 /*
95 * Search for highest level group inside of aScope, containing item.
96 *
97 * @param aScope restricts the search to groups within the group scope.
98 * @param isFootprintEditor true if we should stop promoting at the footprint level
99 * @return group inside of aScope, containing item, if exists, otherwise, nullptr
100 */
101 static PCB_GROUP* TopLevelGroup( BOARD_ITEM* aItem, PCB_GROUP* aScope, bool isFootprintEditor );
102
103 static bool WithinScope( BOARD_ITEM* aItem, PCB_GROUP* aScope, bool isFootprintEditor );
104
105#if defined( DEBUG )
106 void Show( int nestLevel, std::ostream& os ) const override
107 {
108 ShowDummy( os );
109 }
110#endif
111
113 VECTOR2I GetPosition() const override;
114
116 void SetPosition( const VECTOR2I& aNewpos ) override;
117
119 LSET GetLayerSet() const override;
120
122 void SetLayer( PCB_LAYER_ID aLayer ) override
123 {
124 wxFAIL_MSG( wxT( "groups don't support layer SetLayer" ) );
125 }
126
127 bool IsOnCopperLayer() const override
128 {
129 // A group might have members on a copper layer, but isn't itself on any layer.
130 return false;
131 }
132
137 void SetLayerRecursive( PCB_LAYER_ID aLayer, int aDepth );
138
139 void SetLocked( bool aLocked ) override;
140
142 EDA_ITEM* Clone() const override;
143
144 /*
145 * Clone() this and all descendants
146 */
147 PCB_GROUP* DeepClone() const;
148
149 /*
150 * Duplicate() this and all descendants
151 */
152 PCB_GROUP* DeepDuplicate() const;
153
155 bool IsOnLayer( PCB_LAYER_ID aLayer ) const override;
156
158 bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
159
161 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
162
164 const BOX2I GetBoundingBox() const override;
165
166 // @copydoc BOARD_ITEM::GetEffectiveShape
167 std::shared_ptr<SHAPE> GetEffectiveShape( PCB_LAYER_ID aLayer = UNDEFINED_LAYER,
168 FLASHING aFlash = FLASHING::DEFAULT ) const override;
169
171 INSPECT_RESULT Visit( INSPECTOR aInspector, void* aTestData,
172 const std::vector<KICAD_T>& aScanTypes ) override;
173
175 void ViewGetLayers( int aLayers[], int& aCount ) const override;
176
178 double ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const override;
179
181 void Move( const VECTOR2I& aMoveVector ) override;
182
184 void Rotate( const VECTOR2I& aRotCentre, const EDA_ANGLE& aAngle ) override;
185
187 void Flip( const VECTOR2I& aCentre, bool aFlipLeftRight ) override;
188
190 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) const override;
191
193 BITMAPS GetMenuImage() const override;
194
195
203 {
204 RunOnChildren( [&]( BOARD_ITEM* bItem )
205 {
206 aCommit.Add( bItem );
207 } );
208 }
209
210
212 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
213
221 void RunOnChildren( const std::function<void ( BOARD_ITEM* )>& aFunction ) const;
222
229 void RunOnDescendants( const std::function<void( BOARD_ITEM* )>& aFunction ) const;
230
236 static bool IsGroupableType( KICAD_T aType );
237
238protected:
240 void swapData( BOARD_ITEM* aImage ) override;
241
242private:
243 std::unordered_set<BOARD_ITEM*> m_items; // Members of the group
244 wxString m_name; // Optional group name
245};
246
247#endif // CLASS_PCB_GROUP_H_
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:77
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Notify observers that aItem has been added.
Definition: commit.h:78
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:85
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:97
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
LSET is a set of PCB_LAYER_IDs.
Definition: layer_ids.h:552
A set of BOARD_ITEMs (i.e., without duplicates).
Definition: pcb_group.h:51
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: pcb_group.cpp:268
std::unordered_set< BOARD_ITEM * > m_items
Definition: pcb_group.h:243
static bool WithinScope(BOARD_ITEM *aItem, PCB_GROUP *aScope, bool isFootprintEditor)
Definition: pcb_group.cpp:148
PCB_GROUP * DeepClone() const
Definition: pcb_group.cpp:211
static PCB_GROUP * TopLevelGroup(BOARD_ITEM *aItem, PCB_GROUP *aScope, bool isFootprintEditor)
Definition: pcb_group.cpp:142
void SetLayer(PCB_LAYER_ID aLayer) override
Set the layer this item is on.
Definition: pcb_group.h:122
std::unordered_set< BOARD_ITEM * > & GetItems()
Definition: pcb_group.h:68
static bool IsGroupableType(KICAD_T aType)
Check if the proposed type can be added to a group.
Definition: pcb_group.cpp:43
void Rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle) override
Rotate this object.
Definition: pcb_group.cpp:360
void SetLayerRecursive(PCB_LAYER_ID aLayer, int aDepth)
Set layer for all items within the group.
Definition: pcb_group.cpp:175
void RunOnChildren(const std::function< void(BOARD_ITEM *)> &aFunction) const
Invoke a function on all members of the group.
Definition: pcb_group.cpp:399
double ViewGetLOD(int aLayer, KIGFX::VIEW *aView) const override
Definition: pcb_group.cpp:344
bool IsOnCopperLayer() const override
Definition: pcb_group.h:127
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider) const override
Return a user-visible description string of this item.
Definition: pcb_group.cpp:374
void RemoveAll()
Definition: pcb_group.cpp:100
bool IsOnLayer(PCB_LAYER_ID aLayer) const override
Test to see if this object is on the given layer.
Definition: pcb_group.cpp:324
PCB_GROUP * DeepDuplicate() const
Definition: pcb_group.cpp:229
static bool ClassOf(const EDA_ITEM *aItem)
Definition: pcb_group.h:55
LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
Definition: pcb_group.cpp:313
void SetName(const wxString &aName)
Definition: pcb_group.h:66
void SetPosition(const VECTOR2I &aNewpos) override
Definition: pcb_group.cpp:167
void Move(const VECTOR2I &aMoveVector) override
Move this object.
Definition: pcb_group.cpp:353
wxString GetClass() const override
Return the class name.
Definition: pcb_group.h:60
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: pcb_group.cpp:297
bool RemoveItem(BOARD_ITEM *aItem)
Remove item from group.
Definition: pcb_group.cpp:87
std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT) const override
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
Definition: pcb_group.cpp:286
void Flip(const VECTOR2I &aCentre, bool aFlipLeftRight) override
Flip this object, i.e.
Definition: pcb_group.cpp:367
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: pcb_group.cpp:389
VECTOR2I GetPosition() const override
Definition: pcb_group.cpp:161
bool AddItem(BOARD_ITEM *aItem)
Add item to group.
Definition: pcb_group.cpp:72
void ViewGetLayers(int aLayers[], int &aCount) const override
Definition: pcb_group.cpp:337
const std::unordered_set< BOARD_ITEM * > & GetItems() const
Definition: pcb_group.h:73
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
Definition: pcb_group.cpp:254
wxString GetName() const
Definition: pcb_group.h:65
void RunOnDescendants(const std::function< void(BOARD_ITEM *)> &aFunction) const
Invoke a function on all descendants of the group.
Definition: pcb_group.cpp:413
wxString m_name
Definition: pcb_group.h:244
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition: pcb_group.cpp:203
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
Definition: pcb_group.cpp:383
void swapData(BOARD_ITEM *aImage) override
Definition: pcb_group.cpp:246
void AddChildrenToCommit(BOARD_COMMIT &aCommit)
Add all the immediate children of this group to the board commit.
Definition: pcb_group.h:202
void SetLocked(bool aLocked) override
Definition: pcb_group.cpp:191
INSPECT_RESULT
Definition: eda_item.h:42
const INSPECTOR_FUNC & INSPECTOR
Definition: eda_item.h:78
FLASHING
Enum used during connectivity building to ensure we do not query connectivity while building the data...
Definition: layer_ids.h:148
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ UNDEFINED_LAYER
Definition: layer_ids.h:61
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:247
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
Definition: typeinfo.h:107