~ubuntu-branches/ubuntu/quantal/qgis/quantal

« back to all changes in this revision

Viewing changes to src/legend/qgslegendsymbologyitem.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
 
 
21
#include "qgslegendsymbologyitem.h"
 
22
 
 
23
QgsLegendSymbologyItem::QgsLegendSymbologyItem(QTreeWidgetItem * theItem,QString theString, int pixmapWidth, int pixmapHeight)
 
24
  : QgsLegendItem(theItem, theString), mPixmapWidth(pixmapWidth), mPixmapHeight(pixmapHeight), mLegend(0)
 
25
{
 
26
  mType = LEGEND_SYMBOL_ITEM;
 
27
}
 
28
 
 
29
QgsLegendSymbologyItem::QgsLegendSymbologyItem(int pixmapWidth, int pixmapHeight): QgsLegendItem(), mPixmapWidth(pixmapWidth), mPixmapHeight(pixmapHeight), mLegend(0)
 
30
{
 
31
  mType = LEGEND_SYMBOL_ITEM;
 
32
}
 
33
 
 
34
QgsLegendSymbologyItem::~QgsLegendSymbologyItem()
 
35
{  
 
36
  if(mLegend)
 
37
    {
 
38
      mLegend->removePixmapWidthValue(mPixmapWidth);
 
39
      mLegend->removePixmapHeightValue(mPixmapHeight);
 
40
    }
 
41
}
 
42
 
 
43
QgsLegendItem::DRAG_ACTION QgsLegendSymbologyItem::accept(LEGEND_ITEM_TYPE type)
 
44
{
 
45
  return NO_ACTION;
 
46
}
 
47
 
 
48
QgsLegendItem::DRAG_ACTION QgsLegendSymbologyItem::accept(const QgsLegendItem* li) const
 
49
{
 
50
  return NO_ACTION;
 
51
}
 
52
 
 
53
void QgsLegendSymbologyItem::setLegend(QgsLegend* theLegend)
 
54
{
 
55
  mLegend = theLegend;
 
56
  if(mLegend)
 
57
    {
 
58
      mLegend->addPixmapWidthValue(mPixmapWidth);
 
59
      mLegend->addPixmapHeightValue(mPixmapHeight);
 
60
    }
 
61
}
 
62