QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsstackedbardiagram.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsstackedbardiagram.h
3 ---------------------
4 begin : November 2019
5 copyright : (C) 2019 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
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 QGSSTACKEDBARDIAGRAM_H
17#define QGSSTACKEDBARDIAGRAM_H
18
19#include "qgis.h"
20#include "qgis_core.h"
21#include "qgsdiagram.h"
22
23#include <QBrush>
24#include <QPen>
25
26class QgsFeature;
27class QPainter;
28class QPointF;
31
33
43{
44 public:
45 static const QString DIAGRAM_NAME_STACKED_BAR SIP_SKIP;
46
48
49 QgsStackedBarDiagram *clone() const override SIP_FACTORY;
50
51 void renderDiagram( const QgsFeature &feature, QgsRenderContext &c, const QgsDiagramSettings &s, QPointF position ) override;
52
53 QSizeF diagramSize( const QgsAttributes &attributes, const QgsRenderContext &c, const QgsDiagramSettings &s ) override;
54 QSizeF diagramSize( const QgsFeature &feature, const QgsRenderContext &c, const QgsDiagramSettings &s, const QgsDiagramInterpolationSettings &interpolationSettings ) override;
55 double legendSize( double value, const QgsDiagramSettings &s, const QgsDiagramInterpolationSettings &interpolationSettings ) const override;
56 QString diagramName() const override;
57
58 private:
59 QBrush mCategoryBrush;
60 QPen mPen;
61 bool mApplySpacingAdjust = false;
62};
63
64
65#endif // QGSSTACKEDBARDIAGRAM_H
A vector of attributes.
Additional diagram settings for interpolated size rendering.
Stores the settings for rendering a single diagram.
QgsDiagram()=default
virtual QgsDiagram * clone() const =0
Returns an instance that is equivalent to this one.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
Contains information about the context of a rendering operation.
double legendSize(double value, const QgsDiagramSettings &s, const QgsDiagramInterpolationSettings &interpolationSettings) const override
Returns the size of the legend item for the diagram corresponding to a specified value.
QSizeF diagramSize(const QgsAttributes &attributes, const QgsRenderContext &c, const QgsDiagramSettings &s) override
Returns the size in map units the diagram will use to render.
QString diagramName() const override
Gets a descriptive name for this diagram type.
void renderDiagram(const QgsFeature &feature, QgsRenderContext &c, const QgsDiagramSettings &s, QPointF position) override
Draws the diagram at the given position (in pixel coordinates).
static const QString DIAGRAM_NAME_STACKED_BAR
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
#define SIP_SKIP
Definition qgis_sip.h:134
#define SIP_FACTORY
Definition qgis_sip.h:84
#define SIP_NODEFAULTCTORS
Definition qgis_sip.h:109