Branch data Line data Source code
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 : : #define DIAGRAM_NAME_STACKED "Stacked" 20 : : 21 : : #include "qgis_core.h" 22 : : #include "qgis.h" 23 : : #include "qgsdiagram.h" 24 : : #include <QPen> 25 : : #include <QBrush> 26 : : 27 : : class QgsFeature; 28 : : class QPainter; 29 : : class QPointF; 30 : : class QgsDiagramSettings; 31 : : class QgsDiagramInterpolationSettings; 32 : : 33 : : class QgsRenderContext; 34 : : 35 : : /** 36 : : * \ingroup core 37 : : * \class QgsStackedBarDiagram 38 : : * 39 : : * \brief A stacked bar chart diagram. 40 : : * 41 : : * \since QGIS 3.12 42 : : */ 43 : 0 : class CORE_EXPORT QgsStackedBarDiagram: public QgsDiagram SIP_NODEFAULTCTORS 44 : : { 45 : : public: 46 : : QgsStackedBarDiagram(); 47 : : 48 : : QgsStackedBarDiagram *clone() const override SIP_FACTORY; 49 : : 50 : : void renderDiagram( const QgsFeature &feature, QgsRenderContext &c, const QgsDiagramSettings &s, QPointF position ) override; 51 : : 52 : : QSizeF diagramSize( const QgsAttributes &attributes, const QgsRenderContext &c, const QgsDiagramSettings &s ) override; 53 : : QSizeF diagramSize( const QgsFeature &feature, const QgsRenderContext &c, const QgsDiagramSettings &s, const QgsDiagramInterpolationSettings &is ) override; 54 : : double legendSize( double value, const QgsDiagramSettings &s, const QgsDiagramInterpolationSettings &is ) const override; 55 : : QString diagramName() const override; 56 : : 57 : : private: 58 : : QBrush mCategoryBrush; 59 : : QPen mPen; 60 : : bool mApplySpacingAdjust = false; 61 : : }; 62 : : 63 : : 64 : : #endif // QGSSTACKEDBARDIAGRAM_H