QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgssymbolslistwidget.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgssymbolslistwidget.h
3  ---------------------
4  begin : June 2012
5  copyright : (C) 2012 by Arunmozhi
6  email : aruntheguy at gmail.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 QGSSYMBOLSLISTWIDGET_H
17 #define QGSSYMBOLSLISTWIDGET_H
18 
19 #include "ui_widget_symbolslist.h"
20 
21 #include "qgssymbolwidgetcontext.h"
22 #include "qgssymbollayer.h"
23 #include "qgsstylemodel.h"
24 #include <QWidget>
25 #include "qgis_gui.h"
26 
27 class QgsSymbol;
28 class QgsStyle;
29 
30 class QMenu;
31 
36 class GUI_EXPORT QgsSymbolsListWidget : public QWidget, private Ui::SymbolsListWidget, private QgsExpressionContextGenerator
37 {
38  Q_OBJECT
39 
40  public:
41 
50  QgsSymbolsListWidget( QgsSymbol *symbol, QgsStyle *style, QMenu *menu, QWidget *parent SIP_TRANSFERTHIS, QgsVectorLayer *layer = nullptr );
51 
52 
53  ~QgsSymbolsListWidget() override;
54 
61  void setContext( const QgsSymbolWidgetContext &context );
62 
68  QgsSymbolWidgetContext context() const;
69 
74  const QgsVectorLayer *layer() const { return mLayer; }
75 
76  public slots:
77 
78  void setSymbolColor( const QColor &color );
79  void setMarkerAngle( double angle );
80  void setMarkerSize( double size );
81  void setLineWidth( double width );
82 
83  void clipFeaturesToggled( bool checked );
84 
85  void updateDataDefinedMarkerSize();
86  void updateDataDefinedMarkerAngle();
87  void updateDataDefinedLineWidth();
88 
89  signals:
90  void changed();
91 
92  private slots:
93  void setSymbolFromStyle( const QString &name, QgsStyle::StyleEntity type );
94  void mSymbolUnitWidget_changed();
95  void updateAssistantSymbol();
96  void opacityChanged( double value );
97  void createAuxiliaryField();
98  void forceRHRToggled( bool checked );
99  void saveSymbol();
100 
101  private:
102  QgsSymbol *mSymbol = nullptr;
103  std::shared_ptr< QgsSymbol > mAssistantSymbol;
104  QgsStyle *mStyle = nullptr;
105  QMenu *mAdvancedMenu = nullptr;
106  QAction *mClipFeaturesAction = nullptr;
107  QAction *mStandardizeRingsAction = nullptr;
108  QgsVectorLayer *mLayer = nullptr;
109  QgsMapCanvas *mMapCanvas = nullptr;
110 
111  void updateSymbolColor();
112  void updateSymbolInfo();
113  QgsSymbolWidgetContext mContext;
114 
116  void registerDataDefinedButton( QgsPropertyOverrideButton *button, QgsSymbolLayer::Property key );
117 };
118 
119 #endif //QGSSYMBOLSLISTWIDGET_H
120 
121 
122 
QgsExpressionContext
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Definition: qgsexpressioncontext.h:370
QgsSymbolWidgetContext
Contains settings which reflect the context in which a symbol (or renderer) widget is shown,...
Definition: qgssymbolwidgetcontext.h:36
QgsMapCanvas
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:85
QgsSymbol
Abstract base class for all rendered symbols.
Definition: qgssymbol.h:64
qgssymbolwidgetcontext.h
QgsPropertyOverrideButton
A button for controlling property overrides which may apply to a widget.
Definition: qgspropertyoverridebutton.h:51
QgsSymbolsListWidget::changed
void changed()
QgsExpressionContextGenerator::createExpressionContext
virtual QgsExpressionContext createExpressionContext() const =0
This method needs to be reimplemented in all classes which implement this interface and return an exp...
qgssymbollayer.h
qgsstylemodel.h
QgsSymbolsListWidget::layer
const QgsVectorLayer * layer() const
Returns the vector layer associated with the widget.
Definition: qgssymbolslistwidget.h:74
QgsStyle
Definition: qgsstyle.h:160
QgsVectorLayer
Represents a vector layer which manages a vector based data sets.
Definition: qgsvectorlayer.h:387
QgsSymbolsListWidget
Definition: qgssymbolslistwidget.h:37
QgsSymbolLayer::Property
Property
Data definable properties.
Definition: qgssymbollayer.h:131
QgsExpressionContextGenerator
Abstract interface for generating an expression context.
Definition: qgsexpressioncontextgenerator.h:37
MathUtils::angle
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
Definition: MathUtils.cpp:786
SIP_TRANSFERTHIS
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
QgsStyle::StyleEntity
StyleEntity
Enum for Entities involved in a style.
Definition: qgsstyle.h:179