QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgstextdiagram.h
Go to the documentation of this file.
1/***************************************************************************
2 qgstextdiagram.h
3 ---------------------
4 begin : March 2011
5 copyright : (C) 2011 by Marco Hugentobler
6 email : marco dot hugentobler at sourcepole 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#ifndef QGSTEXTDIAGRAM_H
16#define QGSTEXTDIAGRAM_H
17
18#include "qgis.h"
19#include "qgis_core.h"
20#include "qgsdiagram.h"
21
22#include <QBrush>
23#include <QPen>
24
25class QPainter;
26class QPointF;
29class QgsFeature;
31
38{
39 public:
40 static const QString DIAGRAM_NAME_TEXT SIP_SKIP;
41
42 enum Shape
43 {
44 Circle = 0,
47 };
48
54
56 QgsTextDiagram *clone() const override SIP_FACTORY;
57
58 void renderDiagram( const QgsFeature &feature, QgsRenderContext &c, const QgsDiagramSettings &s, QPointF position ) override;
59
60 QSizeF diagramSize( const QgsAttributes &attributes, const QgsRenderContext &c, const QgsDiagramSettings &s ) override;
61 QSizeF diagramSize( const QgsFeature &feature, const QgsRenderContext &c, const QgsDiagramSettings &s, const QgsDiagramInterpolationSettings &interpolationSettings ) override;
62 double legendSize( double value, const QgsDiagramSettings &s, const QgsDiagramInterpolationSettings &interpolationSettings ) const override;
63
64 QString diagramName() const override;
65
66 private:
67 Orientation mOrientation = Vertical;
68 Shape mShape = Circle;
69 QBrush mBrush; //transparent brush
70 QPen mPen;
71
76 void lineEllipseIntersection( QPointF lineStart, QPointF lineEnd, QPointF ellipseMid, double r1, double r2, QList<QPointF> &result ) const;
77};
78
79#endif // QGSTEXTDIAGRAM_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.
A text based diagram.
static const QString DIAGRAM_NAME_TEXT
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