KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
EDA_GROUP Class Referenceabstract

A set of EDA_ITEMs (i.e., without duplicates). More...

#include <eda_group.h>

Inheritance diagram for EDA_GROUP:
PCB_GROUP SCH_GROUP PCB_GENERATOR PCB_TUNING_PATTERN

Public Member Functions

virtual EDA_ITEMAsEdaItem ()=0
 
virtual ~EDA_GROUP ()
 
wxString GetName () const
 
void SetName (const wxString &aName)
 
std::unordered_set< EDA_ITEM * > & GetItems ()
 
const std::unordered_set< EDA_ITEM * > & GetItems () const
 
virtual bool AddItem (EDA_ITEM *aItem)=0
 Add item to group.
 
virtual bool RemoveItem (EDA_ITEM *aItem)=0
 Remove item from group.
 
virtual void RemoveAll ()=0
 
virtual EDA_GROUPDeepClone () const =0
 
virtual EDA_GROUPDeepDuplicate () const =0
 

Protected Attributes

std::unordered_set< EDA_ITEM * > m_items
 Check if the proposed type can be added to a group.
 
wxString m_name
 

Detailed Description

A set of EDA_ITEMs (i.e., without duplicates).

The group parent is always board/sheet, not logical parent group. The group is transparent container - e.g., its position is derived from the position of its members. A selection containing a group implicitly contains its members. However other operations on sets of items, like committing, updating the view, etc the set is explicit.

Definition at line 44 of file eda_group.h.

Constructor & Destructor Documentation

◆ ~EDA_GROUP()

EDA_GROUP::~EDA_GROUP ( )
virtual

Definition at line 4 of file eda_group.cpp.

Member Function Documentation

◆ AddItem()

virtual bool EDA_GROUP::AddItem ( EDA_ITEM aItem)
pure virtual

Add item to group.

Does not take ownership of item.

Returns
true if item was added (false if item belongs to a different group).

Implemented in SCH_GROUP, and PCB_GROUP.

Referenced by BOARD_ITEM::Duplicate(), PCB_EDIT_FRAME::ExchangeFootprint(), PCB_BASE_EDIT_FRAME::PutDataInPreviousState(), and DIALOG_GROUP_PROPERTIES::TransferDataFromWindow().

◆ AsEdaItem()

◆ DeepClone()

virtual EDA_GROUP * EDA_GROUP::DeepClone ( ) const
pure virtual

Implemented in SCH_GROUP, PCB_GENERATOR, and PCB_GROUP.

◆ DeepDuplicate()

virtual EDA_GROUP * EDA_GROUP::DeepDuplicate ( ) const
pure virtual

Implemented in SCH_GROUP, and PCB_GROUP.

◆ GetItems() [1/2]

◆ GetItems() [2/2]

const std::unordered_set< EDA_ITEM * > & EDA_GROUP::GetItems ( ) const
inline

Definition at line 55 of file eda_group.h.

References m_items.

◆ GetName()

◆ RemoveAll()

virtual void EDA_GROUP::RemoveAll ( )
pure virtual

◆ RemoveItem()

virtual bool EDA_GROUP::RemoveItem ( EDA_ITEM aItem)
pure virtual

Remove item from group.

Returns
true if item was removed (false if item was not in the group).

Implemented in SCH_GROUP, and PCB_GROUP.

Referenced by SCH_GROUP::AddItem(), PCB_GROUP::AddItem(), PCB_EDIT_FRAME::ExchangeFootprint(), PCB_CONTROL::Paste(), BOARD_COMMIT::Push(), PCB_BASE_EDIT_FRAME::PutDataInPreviousState(), BOARD::Remove(), and FOOTPRINT::Remove().

◆ SetName()

Member Data Documentation

◆ m_items

◆ m_name


The documentation for this class was generated from the following files: