~ubuntu-branches/ubuntu/hardy/qgis/hardy

« back to all changes in this revision

Viewing changes to src/legend/qgslegendsymbologygroup.cpp

  • Committer: Bazaar Package Importer
  • Author(s): William Grant
  • Date: 2007-05-06 13:42:32 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070506134232-pyli6t388w5asd8x
Tags: 0.8.0-3ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/rules, debian/qgis.install, debian/qgis.dirs debian/qgis.desktop:
    Add and install .desktop.
* debian/qgis.desktop: Remove Applications category; it's not real.
* Modify Maintainer value to match Debian-Maintainer-Field Spec

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
#include "qgsapplication.h"
 
21
#include "qgslegendlayerfile.h"
 
22
#include "qgslegendlayerfilegroup.h"
 
23
#include "qgslegendsymbologygroup.h"
 
24
#include "qgsmaplayer.h"
 
25
#include <QCoreApplication>
 
26
#include <QIcon>
 
27
 
 
28
QgsLegendSymbologyGroup::QgsLegendSymbologyGroup(QTreeWidgetItem * theItem, QString theString)
 
29
    : QgsLegendItem( theItem, theString)
 
30
{
 
31
  mType = LEGEND_SYMBOL_GROUP;
 
32
  QIcon myIcon(QgsApplication::themePath()+"/mIconSymbology.png");
 
33
  setText(0, theString);
 
34
  setIcon(0,myIcon);
 
35
}
 
36
 
 
37
 
 
38
QgsLegendSymbologyGroup::~QgsLegendSymbologyGroup()
 
39
{}
 
40
 
 
41
QgsLegendItem::DRAG_ACTION QgsLegendSymbologyGroup::accept(LEGEND_ITEM_TYPE type)
 
42
{
 
43
    return NO_ACTION;
 
44
}
 
45
 
 
46
QgsLegendItem::DRAG_ACTION QgsLegendSymbologyGroup::accept(const QgsLegendItem* li) const
 
47
{
 
48
  return NO_ACTION;
 
49
}
 
50
 
 
51
/** Overloads cmpare function of QListViewItem
 
52
  * @note The symbology group must always be the second in the list
 
53
  */
 
54
int QgsLegendSymbologyGroup::compare (QTreeWidgetItem * i,int col, bool ascending)
 
55
{
 
56
  QgsLegendItem * myItem = dynamic_cast<QgsLegendItem *>(i) ;
 
57
  if (myItem->type() == QgsLegendItem::LEGEND_PROPERTY_GROUP)
 
58
  {
 
59
    return 1;
 
60
  }
 
61
  else 
 
62
  {
 
63
    return -1;
 
64
  }
 
65
}
 
66