You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
2.9 KiB

  1. /*
  2. * This program source code file is part of KICAD, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2016 CERN
  5. * Copyright (C) 2016-2022 KiCad Developers, see AUTHORS.txt for contributors.
  6. *
  7. * @author Maciej Suminski <maciej.suminski@cern.ch>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, you may find one here:
  21. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  22. * or you may search the http://www.gnu.org website for the version 2 license,
  23. * or you may write to the Free Software Foundation, Inc.,
  24. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  25. */
  26. #ifndef BOARD_ITEM_CONTAINER_H
  27. #define BOARD_ITEM_CONTAINER_H
  28. #include <board_item.h>
  29. #include <zone_settings.h>
  30. enum class ADD_MODE
  31. {
  32. INSERT,
  33. APPEND,
  34. BULK_APPEND,
  35. BULK_INSERT
  36. };
  37. enum class REMOVE_MODE
  38. {
  39. NORMAL,
  40. BULK
  41. };
  42. /**
  43. * @brief Abstract interface for BOARD_ITEMs capable of storing other items inside.
  44. * @see FOOTPRINT
  45. * @see BOARD
  46. */
  47. class BOARD_ITEM_CONTAINER : public BOARD_ITEM
  48. {
  49. public:
  50. BOARD_ITEM_CONTAINER( BOARD_ITEM* aParent, KICAD_T aType )
  51. : BOARD_ITEM( aParent, aType )
  52. {
  53. }
  54. /**
  55. * @brief Adds an item to the container.
  56. * @param aMode decides whether the item is added in the beginning or at the end of the list.
  57. * @param aSkipConnectivity skip connectivity update (usefull for file loading, when
  58. * the connectivity is updated after end of loading).
  59. */
  60. virtual void Add( BOARD_ITEM* aItem, ADD_MODE aMode = ADD_MODE::INSERT,
  61. bool aSkipConnectivity = false ) = 0;
  62. /**
  63. * @brief Removes an item from the container.
  64. */
  65. virtual void Remove( BOARD_ITEM* aItem, REMOVE_MODE aMode = REMOVE_MODE::NORMAL ) = 0;
  66. /**
  67. * @brief Removes an item from the container and deletes it.
  68. */
  69. virtual void Delete( BOARD_ITEM* aItem )
  70. {
  71. Remove( aItem );
  72. delete aItem;
  73. }
  74. /**
  75. * @brief Fetch the zone settings for this container
  76. */
  77. virtual const ZONE_SETTINGS& GetZoneSettings() const
  78. {
  79. return m_zoneSettings;
  80. }
  81. /**
  82. * @brief Set the zone settings for this container
  83. * @param aSettings new Zone settings for this container
  84. */
  85. virtual void SetZoneSettings( const ZONE_SETTINGS& aSettings )
  86. {
  87. m_zoneSettings = aSettings;
  88. }
  89. private:
  90. ZONE_SETTINGS m_zoneSettings;
  91. };
  92. #endif /* BOARD_ITEM_CONTAINER_H */