2013-08-20 13:07:38 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 CERN
|
|
|
|
* @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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file view_group.h
|
|
|
|
* @brief VIEW_GROUP extends VIEW_ITEM by possibility of grouping items into a single object.
|
|
|
|
* VIEW_GROUP does not take over ownership of the held items. The main purpose of this class is
|
|
|
|
* to group items and draw them on a single layer (in particular the overlay).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VIEW_GROUP_H_
|
|
|
|
#define VIEW_GROUP_H_
|
|
|
|
|
|
|
|
#include <view/view_item.h>
|
|
|
|
#include <deque>
|
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
namespace KIGFX
|
2013-08-20 13:07:38 +00:00
|
|
|
{
|
2016-12-02 17:58:12 +00:00
|
|
|
|
2013-08-20 13:07:38 +00:00
|
|
|
class VIEW_GROUP : public VIEW_ITEM
|
|
|
|
{
|
2016-11-04 21:29:47 +00:00
|
|
|
protected:
|
2016-12-09 11:04:32 +00:00
|
|
|
typedef std::vector<VIEW_ITEM*> ITEMS;
|
2016-11-04 21:29:47 +00:00
|
|
|
|
2013-08-20 13:07:38 +00:00
|
|
|
public:
|
2013-09-19 15:02:57 +00:00
|
|
|
VIEW_GROUP( VIEW* aView = NULL );
|
2013-08-20 13:07:38 +00:00
|
|
|
virtual ~VIEW_GROUP();
|
|
|
|
|
|
|
|
/**
|
2016-11-04 21:29:47 +00:00
|
|
|
* Function GetSize()
|
|
|
|
* Returns the number of stored items.
|
|
|
|
*
|
|
|
|
* @return Number of stored items.
|
|
|
|
*/
|
|
|
|
virtual unsigned int GetSize() const;
|
|
|
|
|
2016-12-09 11:04:32 +00:00
|
|
|
/**
|
2013-08-20 13:07:38 +00:00
|
|
|
* Function Add()
|
|
|
|
* Adds an item to the group.
|
|
|
|
*
|
|
|
|
* @param aItem is the item to be added.
|
|
|
|
*/
|
|
|
|
virtual void Add( VIEW_ITEM* aItem );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Remove()
|
|
|
|
* Removes an item from the group.
|
|
|
|
*
|
|
|
|
* @param aItem is the item to be removed.
|
|
|
|
*/
|
|
|
|
virtual void Remove( VIEW_ITEM* aItem );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Clear()
|
|
|
|
* Removes all the stored items from the group.
|
|
|
|
*/
|
|
|
|
virtual void Clear();
|
|
|
|
|
2016-12-09 11:04:32 +00:00
|
|
|
virtual VIEW_ITEM* GetItem( unsigned int aIdx ) const;
|
2013-08-20 13:07:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ViewBBox()
|
|
|
|
* Returns the bounding box for all stored items covering all its layers.
|
|
|
|
*
|
|
|
|
* @return The current bounding box
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual const BOX2I ViewBBox() const override;
|
2013-08-20 13:07:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ViewDraw()
|
|
|
|
* Draws all the stored items in the group on the given layer.
|
|
|
|
*
|
|
|
|
* @param aLayer is the layer which should be drawn.
|
2017-06-21 07:32:19 +00:00
|
|
|
* @param aView is the VIEW that should be used for drawing.
|
2013-08-20 13:07:38 +00:00
|
|
|
*/
|
2016-12-02 17:58:12 +00:00
|
|
|
virtual void ViewDraw( int aLayer, VIEW* aView ) const override;
|
2013-08-20 13:07:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ViewGetLayers()
|
|
|
|
* Returns all the layers used by the stored items.
|
|
|
|
*
|
|
|
|
* @param aLayers[] is the output layer index array.
|
|
|
|
* @param aCount is the number of layer indices in aLayers[].
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void ViewGetLayers( int aLayers[], int& aCount ) const override;
|
2013-08-20 13:07:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function SetLayer()
|
|
|
|
* Sets layer used to draw the group.
|
|
|
|
*
|
|
|
|
* @param aLayer is the layer used for drawing.
|
|
|
|
*/
|
|
|
|
inline virtual void SetLayer( int aLayer )
|
|
|
|
{
|
|
|
|
m_layer = aLayer;
|
|
|
|
}
|
|
|
|
|
2013-09-12 15:42:28 +00:00
|
|
|
/**
|
|
|
|
* Function FreeItems()
|
|
|
|
* Frees all the items that were added to the group.
|
|
|
|
*/
|
2013-09-10 17:25:02 +00:00
|
|
|
void FreeItems();
|
|
|
|
|
2013-08-20 13:07:38 +00:00
|
|
|
protected:
|
2016-11-04 21:29:47 +00:00
|
|
|
|
|
|
|
virtual const ITEMS updateDrawList() const;
|
|
|
|
|
2013-08-20 13:07:38 +00:00
|
|
|
/// Layer on which the group is drawn
|
|
|
|
int m_layer;
|
|
|
|
|
2016-11-04 21:29:47 +00:00
|
|
|
protected:
|
|
|
|
/// Container for storing VIEW_ITEMs
|
|
|
|
ITEMS m_groupItems;
|
2013-08-20 13:07:38 +00:00
|
|
|
};
|
2016-11-04 21:29:47 +00:00
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
} // namespace KIGFX
|
2013-08-20 13:07:38 +00:00
|
|
|
|
|
|
|
#endif // VIEW_GROUP_H_
|