QGIS API Documentation
2.6.0-Brighton
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
src
core
diagram
qgshistogramdiagram.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgshistogramdiagram.h
3
---------------------
4
begin : August 2012
5
copyright : (C) 2012 by Matthias Kuhn
6
email : matthias dot kuhn at gmx dot ch
7
***************************************************************************
8
* *
9
* This program is free software; you can redistribute it and/or modify *
10
* it under the terms of the GNU General Public License as published by *
11
* the Free Software Foundation; either version 2 of the License, or *
12
* (at your option) any later version. *
13
* *
14
***************************************************************************/
15
16
#ifndef QGSHISTOGRAMDIAGRAM_H
17
#define QGSHISTOGRAMDIAGRAM_H
18
19
#define DIAGRAM_NAME_HISTOGRAM "Histogram"
20
21
#include "
qgsdiagram.h
"
22
#include "
qgsfeature.h
"
23
#include <QPen>
24
#include <QBrush>
25
26
class
QPainter;
27
class
QPointF;
28
class
QgsDiagramSettings
;
29
class
QgsDiagramInterpolationSettings
;
30
31
class
QgsRenderContext
;
32
33
34
class
CORE_EXPORT
QgsHistogramDiagram
:
public
QgsDiagram
35
{
36
public
:
37
QgsHistogramDiagram
();
38
~
QgsHistogramDiagram
();
39
40
virtual
QgsDiagram
*
clone
()
const
;
41
42
void
renderDiagram
(
const
QgsFeature
& feature,
QgsRenderContext
& c,
const
QgsDiagramSettings
& s,
const
QPointF& position );
43
44
QSizeF
diagramSize
(
const
QgsAttributes
& attributes,
const
QgsRenderContext
& c,
const
QgsDiagramSettings
& s );
45
QSizeF
diagramSize
(
const
QgsFeature
& feature,
const
QgsRenderContext
& c,
const
QgsDiagramSettings
& s,
const
QgsDiagramInterpolationSettings
& is );
46
QString
diagramName
()
const
{
return
DIAGRAM_NAME_HISTOGRAM
; }
47
48
private
:
49
QBrush mCategoryBrush;
50
QPen mPen;
51
double
mScaleFactor;
52
};
53
54
55
#endif // QGSHISTOGRAMDIAGRAM_H
Generated on Fri Oct 31 2014 15:49:45 for QGIS API Documentation by
1.8.1.2