QGIS API Documentation 3.43.0-Master (3ee7834ace6)
qgscategorizedsymbolrendererwidget.h
Go to the documentation of this file.
1/***************************************************************************
2 qgscategorizedsymbolrendererwidget.h
3 ---------------------
4 begin : November 2009
5 copyright : (C) 2009 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#ifndef QGSCATEGORIZEDSYMBOLRENDERERWIDGET_H
16#define QGSCATEGORIZEDSYMBOLRENDERERWIDGET_H
17
19#include "qgis_sip.h"
20#include "qgsrendererwidget.h"
21#include "qgsproxystyle.h"
22#include <QStandardItem>
23#include <QStyledItemDelegate>
24
25
29
30#include "ui_qgscategorizedsymbolrendererwidget.h"
31#include "qgis_gui.h"
32
33
34#ifndef SIP_RUN
36
37class GUI_EXPORT QgsCategorizedSymbolRendererModel : public QAbstractItemModel
38{
39 Q_OBJECT
40 public:
41 QgsCategorizedSymbolRendererModel( QObject *parent = nullptr, QScreen *screen = nullptr );
42 Qt::ItemFlags flags( const QModelIndex &index ) const override;
43 Qt::DropActions supportedDropActions() const override;
44 QVariant data( const QModelIndex &index, int role ) const override;
45 bool setData( const QModelIndex &index, const QVariant &value, int role ) override;
46 QVariant headerData( int section, Qt::Orientation orientation, int role ) const override;
47 int rowCount( const QModelIndex &parent = QModelIndex() ) const override;
48 int columnCount( const QModelIndex & = QModelIndex() ) const override;
49 QModelIndex index( int row, int column, const QModelIndex &parent = QModelIndex() ) const override;
50 QModelIndex parent( const QModelIndex &index ) const override;
51 QStringList mimeTypes() const override;
52 QMimeData *mimeData( const QModelIndexList &indexes ) const override;
53 bool dropMimeData( const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent ) override;
54
55 void setRenderer( QgsCategorizedSymbolRenderer *renderer );
56
57 void addCategory( const QgsRendererCategory &cat );
58 QgsRendererCategory category( const QModelIndex &index );
59 void deleteRows( QList<int> rows );
60 void removeAllRows();
61 void sort( int column, Qt::SortOrder order = Qt::AscendingOrder ) override;
62 void updateSymbology();
63
64 signals:
65 void rowsMoved();
66
67 private:
68 QgsCategorizedSymbolRenderer *mRenderer = nullptr;
69 QString mMimeFormat;
70 QPointer<QScreen> mScreen;
71};
72
77class QgsCategorizedSymbolRendererViewStyle : public QgsProxyStyle
78{
79 Q_OBJECT
80
81 public:
82 explicit QgsCategorizedSymbolRendererViewStyle( QWidget *parent );
83
84 void drawPrimitive( PrimitiveElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget = nullptr ) const override;
85};
86
91class QgsCategorizedRendererViewItemDelegate : public QStyledItemDelegate
92{
93 Q_OBJECT
94
95 public:
96 explicit QgsCategorizedRendererViewItemDelegate( QgsFieldExpressionWidget *expressionWidget, QObject *parent = nullptr );
97
98 // QAbstractItemDelegate interface
99 QWidget *createEditor( QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index ) const override;
100
101 private:
102 QgsFieldExpressionWidget *mFieldExpressionWidget = nullptr;
103};
104
105
107
108#endif
109
114class GUI_EXPORT QgsCategorizedSymbolRendererWidget : public QgsRendererWidget, private Ui::QgsCategorizedSymbolRendererWidget
115{
116 Q_OBJECT
117 public:
118 // *INDENT-OFF*
119
127 {
128 Value SIP_MONKEYPATCH_COMPAT_NAME( ValueRole ) = Qt::UserRole + 1
129 };
130 Q_ENUM( CustomRole )
131 // *INDENT-ON*
132
133 static QgsRendererWidget *create( QgsVectorLayer *layer, QgsStyle *style, QgsFeatureRenderer *renderer ) SIP_FACTORY;
134
137
138 QgsFeatureRenderer *renderer() override;
139 void setContext( const QgsSymbolWidgetContext &context ) override;
140 void disableSymbolLevels() override SIP_SKIP;
141 QgsExpressionContext createExpressionContext() const override;
142
151 int matchToSymbols( QgsStyle *style );
152
153 public slots:
154 void changeCategorizedSymbol();
155 void categoryColumnChanged( const QString &field );
156 void categoriesDoubleClicked( const QModelIndex &idx );
157 void addCategory();
158 void addCategories();
159
163 void applyColorRamp();
164
165 void deleteCategories();
166 void deleteAllCategories();
167
171 void deleteUnusedCategories();
172
173 void showSymbolLevels();
174
175 void rowsMoved();
176
183 void matchToSymbolsFromLibrary();
184
191 void matchToSymbolsFromXml();
192
193 protected:
194 void setSymbolLevels( const QgsLegendSymbolList &levels, bool enabled ) override;
195
196 protected slots:
197
198 void pasteSymbolToSelection() override;
199
200 private slots:
201
202 void updateSymbolsFromWidget( QgsSymbolSelectorWidget *widget );
203 void updateSymbolsFromButton();
204 void dataDefinedSizeLegend();
205
211 void mergeSelectedCategories();
212
218 void unmergeSelectedCategories();
219
220 void showContextMenu( QPoint p );
221
222 void selectionChanged( const QItemSelection &selected, const QItemSelection &deselected );
223
224 protected:
225 void updateUiFromRenderer();
226
227 // Called by virtual refreshSymbolView()
228 void populateCategories();
229
231 int currentCategoryRow();
232
234 QList<int> selectedCategories();
235
237 void changeSelectedSymbols();
238
239 void changeCategorySymbol();
241 void applyChangeToSymbol();
242
248 QList<QVariant> layerUniqueValues( const QString &attrName );
249
250 QList<QgsSymbol *> selectedSymbols() override;
251 QgsCategoryList selectedCategoryList();
252 void refreshSymbolView() override;
253 void keyPressEvent( QKeyEvent *event ) override;
254
255 protected:
256 std::unique_ptr<QgsCategorizedSymbolRenderer> mRenderer;
257
258 std::unique_ptr<QgsSymbol> mCategorizedSymbol;
259
260 QgsCategorizedSymbolRendererModel *mModel = nullptr;
261
262 private:
263 QString mOldClassificationAttribute;
264 QgsCategoryList mCopyBuffer;
265 QMenu *mContextMenu = nullptr;
266 QAction *mMergeCategoriesAction = nullptr;
267 QAction *mUnmergeCategoriesAction = nullptr;
268 QAction *mActionLevels = nullptr;
269
270 friend class TestQgsCategorizedRendererWidget;
271};
272
273#endif // QGSCATEGORIZEDSYMBOLRENDERERWIDGET_H
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Abstract base class for all 2D vector feature renderers.
The QgsFieldExpressionWidget class creates a widget to choose fields and edit expressions It contains...
A QProxyStyle subclass which correctly sets the base style to match the QGIS application style,...
Represents an individual category (class) from a QgsCategorizedSymbolRenderer.
Base class for renderer settings widgets.
Symbol selector widget that can be used to select and build a symbol.
Contains settings which reflect the context in which a symbol (or renderer) widget is shown,...
Abstract base class for all rendered symbols.
Definition qgssymbol.h:231
Represents a vector layer which manages a vector based data sets.
#define SIP_SKIP
Definition qgis_sip.h:126
#define SIP_MONKEYPATCH_SCOPEENUM_UNNEST(OUTSIDE_CLASS, FORMERNAME)
Definition qgis_sip.h:271
#define SIP_FACTORY
Definition qgis_sip.h:76
#define SIP_MONKEYPATCH_COMPAT_NAME(FORMERNAME)
Definition qgis_sip.h:273
QList< QgsRendererCategory > QgsCategoryList
QList< QgsLegendSymbolItem > QgsLegendSymbolList