QGIS API Documentation 3.41.0-Master (cea29feecf2)
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#include "qgis_sip.h"
22
23#include "qgshistogram.h"
26#include <QPen>
27#include <QBrush>
28#include "qgis_gui.h"
29
30class QgsVectorLayer;
32class QwtPlotPicker;
33class QwtPlotMarker;
34class QwtPlot;
35class HistogramItem;
36class QwtPlotHistogram;
37
38// fix for qwt5/qwt6 QwtDoublePoint vs. QPointF
39typedef QPointF QwtDoublePoint;
40
48class GUI_EXPORT QgsHistogramWidget : public QWidget, private Ui::QgsHistogramWidgetBase
49{
50 Q_OBJECT
51
52 public:
60 QgsHistogramWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr, QgsVectorLayer *layer = nullptr, const QString &fieldOrExp = QString() );
61
62 ~QgsHistogramWidget() override;
63
69 QgsVectorLayer *layer() { return mVectorLayer; }
70
77 QString sourceFieldExp() const { return mSourceFieldExp; }
78
87 void setPen( const QPen &pen ) { mPen = pen; }
88
94 QPen pen() const { return mPen; }
95
103 void setBrush( const QBrush &brush ) { mBrush = brush; }
104
110 QBrush brush() const { return mBrush; }
111
118 void setGraduatedRanges( const QgsRangeList &ranges );
119
126 QgsRangeList graduatedRanges() const { return mRanges; }
127
133 QString xAxisTitle() const { return mXAxisTitle; }
134
141 void setXAxisTitle( const QString &title ) { mXAxisTitle = title; }
142
148 QString yAxisTitle() const { return mYAxisTitle; }
149
156 void setYAxisTitle( const QString &title ) { mYAxisTitle = title; }
157
158 public slots:
159
163 void refreshValues();
164
169 void refresh();
170
176 void setLayer( QgsVectorLayer *layer );
177
183 void setSourceFieldExp( const QString &fieldOrExp );
184
185 protected:
189 virtual void drawHistogram();
190
191 QwtPlot *mPlot = nullptr;
193 QList<QwtPlotMarker *> mRangeMarkers;
194
195 private:
196 QgsVectorLayer *mVectorLayer = nullptr;
197 QString mSourceFieldExp;
198 QList<double> mValues;
200 QgsHistogram mHistogram;
201 QVector<QColor> mHistoColors;
202 QPen mPen;
203 QBrush mBrush;
204 QPen mMeanPen;
205 QPen mStdevPen;
206 QPen mGridPen;
207 QString mXAxisTitle;
208 QString mYAxisTitle;
209
210 void clearHistogram();
211
212 QwtPlotHistogram *createPlotHistogram( const QString &title, const QBrush &brush, const QPen &pen = Qt::NoPen ) const;
213};
214
215#endif //QGSHISTOGRAMWIDGET_H
A vector feature renderer which uses numeric attributes to classify features into different ranges.
Graphical histogram for displaying distributions of field values.
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.
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 data sets.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53
QPointF QwtDoublePoint
QList< QgsRendererRange > QgsRangeList