QGIS API Documentation  3.24.2-Tisler (13c1a02865)
qgsdatadefinedsizelegendwidget.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsdatadefinedsizelegendwidget.h
3  --------------------------------------
4  Date : June 2017
5  Copyright : (C) 2017 by Martin Dobias
6  Email : wonder dot sk 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 QGSDATADEFINEDSIZELEGENDWIDGET_H
17 #define QGSDATADEFINEDSIZELEGENDWIDGET_H
18 
19 #include "qgis_sip.h"
20 #include "qgis_gui.h"
21 
22 #include <memory>
23 #include "ui_qgsdatadefinedsizelegendwidget.h"
24 
25 #include "qgspanelwidget.h"
26 #include "qgsdoublevalidator.h"
27 #include "qgsproperty.h"
28 #include <QStyledItemDelegate>
29 
30 class QStandardItemModel;
31 
33 class QgsLayerTree;
34 class QgsLayerTreeLayer;
35 class QgsLayerTreeModel;
36 class QgsMapCanvas;
37 class QgsMarkerSymbol;
38 class QgsProperty;
39 class QgsVectorLayer;
40 
47 class GUI_EXPORT QgsDataDefinedSizeLegendWidget : public QgsPanelWidget, private Ui::QgsDataDefinedSizeLegendWidget
48 {
49  Q_OBJECT
50  public:
51 
58  explicit QgsDataDefinedSizeLegendWidget( const QgsDataDefinedSizeLegend *ddsLegend, const QgsProperty &ddSize, QgsMarkerSymbol *overrideSymbol SIP_TRANSFER, QgsMapCanvas *canvas = nullptr, QWidget *parent SIP_TRANSFERTHIS = nullptr );
60 
62  QgsDataDefinedSizeLegend *dataDefinedSizeLegend() const SIP_FACTORY;
63 
64  signals:
65 
66  private slots:
67  void updatePreview();
68  void changeSymbol();
69  void addSizeClass();
70  void removeSizeClass();
71  void onSizeClassesChanged();
72 
73  private:
74  std::unique_ptr<QgsMarkerSymbol> mSourceSymbol;
75  bool mOverrideSymbol = false;
76  QgsProperty mSizeProperty;
77  QgsLayerTreeModel *mPreviewModel = nullptr;
78  QgsLayerTree *mPreviewTree = nullptr;
79  QgsLayerTreeLayer *mPreviewLayerNode = nullptr;
80  QgsVectorLayer *mPreviewLayer = nullptr;
81  QgsMapCanvas *mMapCanvas = nullptr;
82  QStandardItemModel *mSizeClassesModel = nullptr;
83 };
84 
85 #ifndef SIP_RUN
87 
89 class SizeClassDelegate : public QStyledItemDelegate
90 {
91  Q_OBJECT
92 
93  public:
94  SizeClassDelegate( QObject *parent )
95  : QStyledItemDelegate( parent )
96  {
97  }
98 
99  QWidget *createEditor( QWidget *parent, const QStyleOptionViewItem &, const QModelIndex & ) const override
100  {
101  QLineEdit *lineEdit = new QLineEdit( parent );
102  QgsDoubleValidator *validator = new QgsDoubleValidator( 0, 1e6, 1, lineEdit );
103  lineEdit->setValidator( validator );
104  return lineEdit;
105  }
106 };
107 
109 #endif
110 
111 #endif // QGSDATADEFINEDSIZELEGENDWIDGET_H
Widget for configuration of appearance of legend for marker symbols with data-defined size.
Object that keeps configuration of appearance of marker symbol's data-defined size in legend.
QgsDoubleValidator is a QLineEdit Validator that combines QDoubleValidator and QRegularExpressionVali...
Layer tree node points to a map layer.
The QgsLayerTreeModel class is model implementation for Qt item views framework.
Namespace with helper functions for layer tree operations.
Definition: qgslayertree.h:33
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:90
A marker symbol type, for rendering Point and MultiPoint geometries.
Base class for any widget that can be shown as a inline panel.
A store for object properties.
Definition: qgsproperty.h:231
Represents a vector layer which manages a vector based data sets.
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
#define SIP_TRANSFER
Definition: qgis_sip.h:36
#define SIP_FACTORY
Definition: qgis_sip.h:76