QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgshistogramwidget.h
Go to the documentation of this file.
1/***************************************************************************
2 qgshistogramwidget.h
3 --------------------
4 begin : May 2015
5 copyright : (C) 2015 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17#ifndef QGSHISTOGRAMWIDGET_H
18#define QGSHISTOGRAMWIDGET_H
19
20#include "ui_qgshistogramwidgetbase.h"
21
22#include "qgis_gui.h"
23#include "qgis_sip.h"
25#include "qgshistogram.h"
27
28#include <QBrush>
29#include <QPen>
30
31class QgsVectorLayer;
33class QwtPlotPicker;
34class QwtPlotMarker;
35class QwtPlot;
36class HistogramItem;
37class QwtPlotHistogram;
38
39// fix for qwt5/qwt6 QwtDoublePoint vs. QPointF
40typedef QPointF QwtDoublePoint;
41
48
49class GUI_EXPORT QgsHistogramWidget : public QWidget, private Ui::QgsHistogramWidgetBase
50{
51 Q_OBJECT
52
53 public:
61 QgsHistogramWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr, QgsVectorLayer *layer = nullptr, const QString &fieldOrExp = QString() );
62
63 ~QgsHistogramWidget() override;
64
70 QgsVectorLayer *layer() { return mVectorLayer; }
71
78 QString sourceFieldExp() const { return mSourceFieldExp; }
79
88 void setPen( const QPen &pen ) { mPen = pen; }
89
95 QPen pen() const { return mPen; }
96
104 void setBrush( const QBrush &brush ) { mBrush = brush; }
105
111 QBrush brush() const { return mBrush; }
112
119 void setGraduatedRanges( const QgsRangeList &ranges );
120
128
134 QString xAxisTitle() const { return mXAxisTitle; }
135
142 void setXAxisTitle( const QString &title ) { mXAxisTitle = title; }
143
149 QString yAxisTitle() const { return mYAxisTitle; }
150
157 void setYAxisTitle( const QString &title ) { mYAxisTitle = title; }
158
159 public slots:
160
164 void refreshValues();
165
170 void refresh();
171
177 void setLayer( QgsVectorLayer *layer );
178
184 void setSourceFieldExp( const QString &fieldOrExp );
185
186 protected:
190 virtual void drawHistogram();
191
192 QwtPlot *mPlot = nullptr;
194 QList<QwtPlotMarker *> mRangeMarkers;
195
196 private:
197 QgsVectorLayer *mVectorLayer = nullptr;
198 QString mSourceFieldExp;
199 QList<double> mValues;
201 QgsHistogram mHistogram;
202 QVector<QColor> mHistoColors;
203 QPen mPen;
204 QBrush mBrush;
205 QPen mMeanPen;
206 QPen mStdevPen;
207 QPen mGridPen;
208 QString mXAxisTitle;
209 QString mYAxisTitle;
210
211 void clearHistogram();
212
213 QwtPlotHistogram *createPlotHistogram( const QString &title, const QBrush &brush, const QPen &pen = Qt::NoPen ) const;
214};
215
216#endif //QGSHISTOGRAMWIDGET_H
A vector feature renderer which uses numeric attributes to classify features into different ranges.
QList< QwtPlotMarker * > mRangeMarkers
QString xAxisTitle() const
Returns the title for the histogram's x-axis.
QgsRangeList graduatedRanges() const
Returns the graduated ranges associated with the histogram.
QPen pen() const
Returns the pen used when drawing histogram bars.
void setYAxisTitle(const QString &title)
Sets the title for the histogram's y-axis.
QgsHistogramWidget(QWidget *parent=nullptr, QgsVectorLayer *layer=nullptr, const QString &fieldOrExp=QString())
QgsHistogramWidget constructor.
void setPen(const QPen &pen)
Sets the pen to use when drawing histogram bars.
QString sourceFieldExp() const
Returns the source field name or expression used to calculate values displayed in the histogram.
void setXAxisTitle(const QString &title)
Sets the title for the histogram's x-axis.
void setBrush(const QBrush &brush)
Sets the brush used for drawing histogram bars.
QBrush brush() const
Returns the brush used when drawing histogram bars.
QgsVectorLayer * layer()
Returns the layer currently associated with the widget.
QString yAxisTitle() const
Returns the title for the histogram's y-axis.
Calculator for a numeric histogram from a list of values.
Calculator for summary statistics for a list of doubles.
Represents a vector layer which manages a vector based dataset.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53
QPointF QwtDoublePoint
QList< QgsRendererRange > QgsRangeList