2016-05-13 15:31:54 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 CERN
|
2022-02-18 12:23:50 +00:00
|
|
|
* Copyright (C) 2016-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2017-06-13 23:47:05 +00:00
|
|
|
*
|
2016-05-13 15:31:54 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOARD_ITEM_CONTAINER_H
|
|
|
|
#define BOARD_ITEM_CONTAINER_H
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <board_item.h>
|
2019-12-28 00:55:11 +00:00
|
|
|
#include <zone_settings.h>
|
2016-05-13 15:31:54 +00:00
|
|
|
|
2019-12-28 00:55:11 +00:00
|
|
|
enum class ADD_MODE
|
|
|
|
{
|
|
|
|
INSERT,
|
2020-12-07 23:29:30 +00:00
|
|
|
APPEND,
|
|
|
|
BULK_APPEND,
|
|
|
|
BULK_INSERT
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class REMOVE_MODE
|
|
|
|
{
|
|
|
|
NORMAL,
|
|
|
|
BULK
|
2019-12-28 00:55:11 +00:00
|
|
|
};
|
2016-05-13 15:31:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Abstract interface for BOARD_ITEMs capable of storing other items inside.
|
2020-11-13 21:07:01 +00:00
|
|
|
* @see FOOTPRINT
|
2016-05-13 15:31:54 +00:00
|
|
|
* @see BOARD
|
|
|
|
*/
|
|
|
|
class BOARD_ITEM_CONTAINER : public BOARD_ITEM
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BOARD_ITEM_CONTAINER( BOARD_ITEM* aParent, KICAD_T aType )
|
|
|
|
: BOARD_ITEM( aParent, aType )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Adds an item to the container.
|
|
|
|
* @param aMode decides whether the item is added in the beginning or at the end of the list.
|
Fix typos in pcbnew sub-directory
Found via `codespell -q 3 -S *.po,./thirdparty,./Documentation/changelogs -L aactual,acount,aline,alocation,alog,anormal,anumber,aother,apoints,aparent,aray,ba,busses,dout,einstance,leaded,modul,ontext,ot,overide,serie,te,,tesselate,tesselator,tht`
2022-06-29 20:21:10 +00:00
|
|
|
* @param aSkipConnectivity skip connectivity update (useful for file loading, when
|
2022-02-18 12:23:50 +00:00
|
|
|
* the connectivity is updated after end of loading).
|
2016-05-13 15:31:54 +00:00
|
|
|
*/
|
2022-02-18 12:23:50 +00:00
|
|
|
virtual void Add( BOARD_ITEM* aItem, ADD_MODE aMode = ADD_MODE::INSERT,
|
|
|
|
bool aSkipConnectivity = false ) = 0;
|
2016-05-13 15:31:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Removes an item from the container.
|
|
|
|
*/
|
2020-12-07 23:29:30 +00:00
|
|
|
virtual void Remove( BOARD_ITEM* aItem, REMOVE_MODE aMode = REMOVE_MODE::NORMAL ) = 0;
|
2016-05-13 15:31:54 +00:00
|
|
|
|
|
|
|
/**
|
2019-08-20 17:02:28 +00:00
|
|
|
* @brief Removes an item from the container and deletes it.
|
2016-05-13 15:31:54 +00:00
|
|
|
*/
|
|
|
|
virtual void Delete( BOARD_ITEM* aItem )
|
|
|
|
{
|
|
|
|
Remove( aItem );
|
|
|
|
delete aItem;
|
|
|
|
}
|
2020-05-31 21:42:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fetch the zone settings for this container
|
|
|
|
*/
|
|
|
|
virtual const ZONE_SETTINGS& GetZoneSettings() const
|
|
|
|
{
|
|
|
|
return m_zoneSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set the zone settings for this container
|
|
|
|
* @param aSettings new Zone settings for this container
|
|
|
|
*/
|
|
|
|
virtual void SetZoneSettings( const ZONE_SETTINGS& aSettings )
|
|
|
|
{
|
|
|
|
m_zoneSettings = aSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ZONE_SETTINGS m_zoneSettings;
|
2016-05-13 15:31:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* BOARD_ITEM_CONTAINER_H */
|