QGIS API Documentation  2.8.2-Wien
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgscomposeritemgroup.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscomposeritemgroup.h
3  ----------------------
4  begin : 2nd June 2008
5  copyright : (C) 2008 by Marco Hugentobler
6  email : marco dot hugentobler at karto dot baug dot ethz dot ch
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 #ifndef QGSCOMPOSERITEMGROUP_H
18 #define QGSCOMPOSERITEMGROUP_H
19 
20 #include "qgscomposeritem.h"
21 #include <QSet>
22 
26 class CORE_EXPORT QgsComposerItemGroup: public QgsComposerItem
27 {
28  Q_OBJECT
29  public:
32 
34  virtual int type() const override { return ComposerItemGroup; }
35 
38  void addItem( QgsComposerItem* item ) override;
40  void removeItems() override;
42  void paint( QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget = 0 ) override;
45  void setSceneRect( const QRectF& rectangle ) override;
46 
47  //overridden to also hide grouped items
48  virtual void setVisibility( const bool visible ) override;
49 
54  bool writeXML( QDomElement& elem, QDomDocument & doc ) const override;
55 
60  bool readXML( const QDomElement& itemElem, const QDomDocument& doc ) override;
61 
62  QSet<QgsComposerItem*> items() { return mItems; }
63 
64  signals:
65  void childItemDeleted( QgsComposerItem* item );
66 
67  public slots:
68  void itemDestroyed();
69 
70  protected:
71  void drawFrame( QPainter* p ) override;
72 
73  private:
74  QSet<QgsComposerItem*> mItems;
75  QRectF mBoundingRectangle;
76 };
77 
78 #endif