~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/legend/qgslegendgroup.h

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2005 by Tim Sutton   *
3
 
 *   aps02ts@macbuntu   *
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or modify  *
6
 
 *   it under the terms of the GNU General Public License as published by  *
7
 
 *   the Free Software Foundation; either version 2 of the License, or     *
8
 
 *   (at your option) any later version.                                   *
9
 
 *                                                                         *
10
 
 *   This program is distributed in the hope that it will be useful,       *
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU General Public License     *
16
 
 *   along with this program; if not, write to the                         *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 
 ***************************************************************************/
20
 
#ifndef QGSLEGENDGROUP_H
21
 
#define QGSLEGENDGROUP_H
22
 
 
23
 
#include <list>
24
 
#include <qgslegenditem.h>
25
 
 
26
 
class QgsLegendLayerFile;
27
 
 
28
 
/**
29
 
This is a specialised version of QLegendItem that specifies that the items below this point will be treated as a group. For example hiding this node will hide all layers below that are members of the group.
30
 
 
31
 
@author Tim Sutton
32
 
*/
33
 
class QgsLegendGroup : public QgsLegendItem
34
 
{
35
 
public:
36
 
    QgsLegendGroup(QTreeWidgetItem * ,QString);
37
 
    QgsLegendGroup(QTreeWidget*,QString);
38
 
    QgsLegendGroup(QString name);
39
 
    ~QgsLegendGroup();
40
 
 
41
 
    QgsLegendItem::DRAG_ACTION accept(LEGEND_ITEM_TYPE type);
42
 
    QgsLegendItem::DRAG_ACTION accept(const QgsLegendItem* li) const;
43
 
    bool isLeafNode();
44
 
    bool insert(QgsLegendItem* theItem);
45
 
    /**Returns all legend layer files under this group*/
46
 
    std::list<QgsLegendLayerFile*> legendLayerFiles();
47
 
    /**Goes through all the legendlayerfiles and sets check state to checked/partially checked/unchecked*/
48
 
    void updateCheckState();
49
 
};
50
 
 
51
 
#endif