QGIS API Documentation 3.43.0-Master (b60ef06885e)
qgspainteffectwidget.h
Go to the documentation of this file.
1/***************************************************************************
2 qgspainteffectwidget.h
3 ----------------------
4 begin : January 2015
5 copyright : (C) 2015 by Nyall Dawson
6 email : nyall dot dawson 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 QGSPAINTEFFECTWIDGET_H
17#define QGSPAINTEFFECTWIDGET_H
18
19#include <QWidget>
20#include "qgis_sip.h"
21#include "qgis_gui.h"
22
23class QgsPaintEffect;
24class QgsShadowEffect;
26class QgsBlurEffect;
27class QgsGlowEffect;
29class QgsColorEffect;
30
31
37class GUI_EXPORT QgsPaintEffectWidget : public QWidget
38{
39 Q_OBJECT
40
41 public:
42 QgsPaintEffectWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr )
43 : QWidget( parent ) {}
44
49 virtual void setPaintEffect( QgsPaintEffect *effect ) = 0;
50
51 signals:
52
56 void changed();
57};
58
59//individual effect widgets
60
61#include "ui_widget_drawsource.h"
62
68class GUI_EXPORT QgsDrawSourceWidget : public QgsPaintEffectWidget, private Ui::WidgetDrawSource
69{
70 Q_OBJECT
71
72 public:
73 QgsDrawSourceWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
74
76
77 void setPaintEffect( QgsPaintEffect *effect ) override;
78
79 private:
80 QgsDrawSourceEffect *mEffect = nullptr;
81
82 void initGui();
83 void blockSignals( bool block );
84
85 private slots:
86
87 void opacityChanged( double value );
88 void mDrawModeComboBox_currentIndexChanged( int index );
89 void mBlendCmbBx_currentIndexChanged( int index );
90};
91
92
93#include "ui_widget_blur.h"
94
100class GUI_EXPORT QgsBlurWidget : public QgsPaintEffectWidget, private Ui::WidgetBlur
101{
102 Q_OBJECT
103
104 public:
105 QgsBlurWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
106
108
109 void setPaintEffect( QgsPaintEffect *effect ) override;
110
111 private:
112 QgsBlurEffect *mEffect = nullptr;
113
114 void initGui();
115 void blockSignals( bool block );
116
117 private slots:
118
119 void mBlurTypeCombo_currentIndexChanged( int index );
120 void mBlurStrengthSpnBx_valueChanged( double value );
121 void mBlurUnitWidget_changed();
122 void opacityChanged( double value );
123 void mDrawModeComboBox_currentIndexChanged( int index );
124 void mBlendCmbBx_currentIndexChanged( int index );
125};
126
127
128#include "ui_widget_shadoweffect.h"
129
135class GUI_EXPORT QgsShadowEffectWidget : public QgsPaintEffectWidget, private Ui::WidgetShadowEffect
136{
137 Q_OBJECT
138
139 public:
140 QgsShadowEffectWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
141
143
144 void setPaintEffect( QgsPaintEffect *effect ) override;
145
146 private:
147 QgsShadowEffect *mEffect = nullptr;
148
149 void initGui();
150 void blockSignals( bool block );
151
152 private slots:
153 void mShadowOffsetAngleSpnBx_valueChanged( int value );
154 void mShadowOffsetAngleDial_valueChanged( int value );
155 void mShadowOffsetSpnBx_valueChanged( double value );
156 void mOffsetUnitWidget_changed();
157 void opacityChanged( double value );
158 void mShadowColorBtn_colorChanged( const QColor &color );
159 void mDrawModeComboBox_currentIndexChanged( int index );
160 void mShadowBlendCmbBx_currentIndexChanged( int index );
161 void mShadowRadiuSpnBx_valueChanged( double value );
162 void mBlurUnitWidget_changed();
163};
164
165
166#include "ui_widget_glow.h"
167
173class GUI_EXPORT QgsGlowWidget : public QgsPaintEffectWidget, private Ui::WidgetGlow
174{
175 Q_OBJECT
176
177 public:
178 QgsGlowWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
179
181
182 void setPaintEffect( QgsPaintEffect *effect ) override;
183
184 private:
185 QgsGlowEffect *mEffect = nullptr;
186
187 void initGui();
188 void blockSignals( bool block );
189
190 private slots:
191 void colorModeChanged();
192 void mSpreadSpnBx_valueChanged( double value );
193 void mSpreadUnitWidget_changed();
194 void opacityChanged( double value );
195 void mColorBtn_colorChanged( const QColor &color );
196 void mBlendCmbBx_currentIndexChanged( int index );
197 void mDrawModeComboBox_currentIndexChanged( int index );
198 void mBlurRadiusSpnBx_valueChanged( double value );
199 void mBlurUnitWidget_changed();
200 void applyColorRamp();
201};
202
203#include "ui_widget_transform.h"
204
210class GUI_EXPORT QgsTransformWidget : public QgsPaintEffectWidget, private Ui::WidgetTransform
211{
212 Q_OBJECT
213
214 public:
215 QgsTransformWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
216
218
219 void setPaintEffect( QgsPaintEffect *effect ) override;
220
221 private:
222 QgsTransformEffect *mEffect = nullptr;
223
224 void initGui();
225 void blockSignals( bool block );
226
227 private slots:
228
229 void mDrawModeComboBox_currentIndexChanged( int index );
230 void mSpinTranslateX_valueChanged( double value );
231 void mSpinTranslateY_valueChanged( double value );
232 void mTranslateUnitWidget_changed();
233 void mReflectXCheckBox_stateChanged( int state );
234 void mReflectYCheckBox_stateChanged( int state );
235 void mSpinShearX_valueChanged( double value );
236 void mSpinShearY_valueChanged( double value );
237 void mSpinScaleX_valueChanged( double value );
238 void mSpinScaleY_valueChanged( double value );
239 void mRotationSpinBox_valueChanged( double value );
240};
241
242
243#include "ui_widget_coloreffects.h"
244
250class GUI_EXPORT QgsColorEffectWidget : public QgsPaintEffectWidget, private Ui::WidgetColorEffect
251{
252 Q_OBJECT
253
254 public:
255 QgsColorEffectWidget( QWidget *parent = nullptr );
256
258
259 void setPaintEffect( QgsPaintEffect *effect ) override;
260
261 private:
262 QgsColorEffect *mEffect = nullptr;
263
264 void initGui();
265 void blockSignals( bool block );
266 void enableColorizeControls( bool enable );
267
268 private slots:
269
270 void opacityChanged( double value );
271 void mBlendCmbBx_currentIndexChanged( int index );
272 void mDrawModeComboBox_currentIndexChanged( int index );
273 void mBrightnessSpinBox_valueChanged( int value );
274 void mContrastSpinBox_valueChanged( int value );
275 void mSaturationSpinBox_valueChanged( int value );
276 void mColorizeStrengthSpinBox_valueChanged( int value );
277 void mColorizeCheck_stateChanged( int state );
278 void mColorizeColorButton_colorChanged( const QColor &color );
279 void mGrayscaleCombo_currentIndexChanged( int index );
280};
281
282
283#endif //QGSPAINTEFFECTWIDGET_H
A paint effect which blurs a source picture, using a number of different blur methods.
A widget for configuring QgsBlurEffect effects.
static QgsPaintEffectWidget * create()
A widget for configuring QgsColorEffect effects.
static QgsPaintEffectWidget * create()
A paint effect which alters the colors (e.g., brightness, contrast) in a source picture.
A paint effect which draws the source picture with minor or no alterations.
A widget for configuring QgsDrawSourceEffect effects.
static QgsPaintEffectWidget * create()
Base class for paint effects which draw a glow inside or outside a picture.
A widget for configuring QgsGlowEffect effects.
static QgsPaintEffectWidget * create()
Base class for effect properties widgets.
QgsPaintEffectWidget(QWidget *parent=nullptr)
virtual void setPaintEffect(QgsPaintEffect *effect)=0
Sets the paint effect to modify with the widget.
void changed()
Emitted when properties of the effect are changed through the widget.
Base class for visual effects which can be applied to QPicture drawings.
A widget for configuring QgsShadowEffect effects.
static QgsPaintEffectWidget * create()
Base class for paint effects which render offset, blurred shadows.
A paint effect which applies transformations (such as move, scale and rotate) to a picture.
A widget for configuring QgsTransformEffect effects.
static QgsPaintEffectWidget * create()
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53
#define SIP_FACTORY
Definition qgis_sip.h:76