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.

93 lines
2.6 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-2017 KiCad Developers, see change_log.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 <class_board_item.h>
  29. #include <zone_settings.h>
  30. enum class ADD_MODE
  31. {
  32. INSERT,
  33. APPEND
  34. };
  35. /**
  36. * @brief Abstract interface for BOARD_ITEMs capable of storing other items inside.
  37. * @see MODULE
  38. * @see BOARD
  39. */
  40. class BOARD_ITEM_CONTAINER : public BOARD_ITEM
  41. {
  42. public:
  43. BOARD_ITEM_CONTAINER( BOARD_ITEM* aParent, KICAD_T aType )
  44. : BOARD_ITEM( aParent, aType )
  45. {
  46. }
  47. /**
  48. * @brief Adds an item to the container.
  49. * @param aMode decides whether the item is added in the beginning or at the end of the list.
  50. */
  51. virtual void Add( BOARD_ITEM* aItem, ADD_MODE aMode = ADD_MODE::INSERT ) = 0;
  52. /**
  53. * @brief Removes an item from the container.
  54. */
  55. virtual void Remove( BOARD_ITEM* aItem ) = 0;
  56. /**
  57. * @brief Removes an item from the container and deletes it.
  58. */
  59. virtual void Delete( BOARD_ITEM* aItem )
  60. {
  61. Remove( aItem );
  62. delete aItem;
  63. }
  64. /**
  65. * @brief Fetch the zone settings for this container
  66. */
  67. virtual const ZONE_SETTINGS& GetZoneSettings() const
  68. {
  69. return m_zoneSettings;
  70. }
  71. /**
  72. * @brief Set the zone settings for this container
  73. * @param aSettings new Zone settings for this container
  74. */
  75. virtual void SetZoneSettings( const ZONE_SETTINGS& aSettings )
  76. {
  77. m_zoneSettings = aSettings;
  78. }
  79. private:
  80. ZONE_SETTINGS m_zoneSettings;
  81. };
  82. #endif /* BOARD_ITEM_CONTAINER_H */