QGIS API Documentation
2.18.21-Las Palmas (9fba24a)
|
Base class for paint effects which offset, blurred shadows. More...
#include <qgsshadoweffect.h>
Public Member Functions | |
QgsShadowEffect () | |
virtual | ~QgsShadowEffect () |
QPainter::CompositionMode | blendMode () const |
Returns the blend mode for the effect. More... | |
int | blurLevel () const |
Returns the blur level (strength) for the shadow. More... | |
QColor | color () const |
Returns the color used for the shadow. More... | |
int | offsetAngle () const |
Returns the angle used for offsetting the shadow. More... | |
double | offsetDistance () const |
Returns the distance used for offsetting the shadow. More... | |
const QgsMapUnitScale & | offsetMapUnitScale () const |
Returns the map unit scale used for the shadow offset distance. More... | |
QgsSymbolV2::OutputUnit | offsetUnit () const |
Returns the units used for the shadow offset distance. More... | |
virtual QgsStringMap | properties () const override |
Returns the properties describing the paint effect encoded in a string format. More... | |
virtual void | readProperties (const QgsStringMap &props) override |
Reads a string map of an effect's properties and restores the effect to the state described by the properties map. More... | |
void | setBlendMode (const QPainter::CompositionMode mode) |
Sets the blend mode for the effect. More... | |
void | setBlurLevel (const int level) |
Sets blur level (strength) for the shadow. More... | |
void | setColor (const QColor &color) |
Sets the color for the shadow. More... | |
void | setOffsetAngle (const int angle) |
Sets the angle for offsetting the shadow. More... | |
void | setOffsetDistance (const double distance) |
Sets the distance for offsetting the shadow. More... | |
void | setOffsetMapUnitScale (const QgsMapUnitScale &scale) |
Sets the map unit scale used for the shadow offset distance. More... | |
void | setOffsetUnit (const QgsSymbolV2::OutputUnit unit) |
Sets the units used for the shadow offset distance. More... | |
void | setTransparency (const double transparency) |
Sets the transparency for the effect. More... | |
double | transparency () const |
Returns the transparency for the effect. More... | |
Public Member Functions inherited from QgsPaintEffect | |
QgsPaintEffect () | |
QgsPaintEffect (const QgsPaintEffect &other) | |
virtual | ~QgsPaintEffect () |
virtual void | begin (QgsRenderContext &context) |
Begins intercepting paint operations to a render context. More... | |
virtual QgsPaintEffect * | clone () const =0 |
Duplicates an effect by creating a deep copy of the effect. More... | |
DrawMode | drawMode () const |
Returns the draw mode for the effect. More... | |
bool | enabled () const |
Returns whether the effect is enabled. More... | |
virtual void | end (QgsRenderContext &context) |
Ends interception of paint operations to a render context, and draws the result to the render context after being modified by the effect. More... | |
virtual bool | readProperties (const QDomElement &element) |
Restores the effect to the state described by a DOM element. More... | |
virtual void | render (QPicture &picture, QgsRenderContext &context) |
Renders a picture using the effect. More... | |
virtual bool | saveProperties (QDomDocument &doc, QDomElement &element) const |
Saves the current state of the effect to a DOM element. More... | |
void | setDrawMode (const DrawMode drawMode) |
Sets the draw mode for the effect. More... | |
void | setEnabled (const bool enabled) |
Sets whether the effect is enabled. More... | |
virtual QString | type () const =0 |
Returns the effect type. More... | |
Protected Member Functions | |
virtual QRectF | boundingRect (const QRectF &rect, const QgsRenderContext &context) const override |
Returns the bounding rect required for drawing the effect. More... | |
virtual void | draw (QgsRenderContext &context) override |
Handles drawing of the effect's result on to the specified render context. More... | |
virtual bool | exteriorShadow () const =0 |
Specifies whether the shadow is drawn outside the picture or within the picture. More... | |
Protected Member Functions inherited from QgsPaintEffect | |
void | drawSource (QPainter &painter) |
Draws the source QPicture onto the specified painter. More... | |
void | fixQPictureDpi (QPainter *painter) const |
Applies a workaround to a QPainter to avoid an issue with incorrect scaling when drawing QPictures. More... | |
QPointF | imageOffset (const QgsRenderContext &context) const |
Returns the offset which should be used when drawing the source image on to a destination render context. More... | |
const QPicture * | source () const |
Returns the source QPicture. More... | |
QImage * | sourceAsImage (QgsRenderContext &context) |
Returns the source QPicture rendered to a new QImage. More... | |
Protected Attributes | |
QPainter::CompositionMode | mBlendMode |
int | mBlurLevel |
QColor | mColor |
int | mOffsetAngle |
double | mOffsetDist |
QgsMapUnitScale | mOffsetMapUnitScale |
QgsSymbolV2::OutputUnit | mOffsetUnit |
double | mTransparency |
Protected Attributes inherited from QgsPaintEffect | |
DrawMode | mDrawMode |
bool | mEnabled |
bool | requiresQPainterDpiFix |
Additional Inherited Members | |
Public Types inherited from QgsPaintEffect | |
enum | DrawMode { Modifier, Render, ModifyAndRender } |
Drawing modes for effects. More... | |
Base class for paint effects which offset, blurred shadows.
Definition at line 32 of file qgsshadoweffect.h.
QgsShadowEffect::QgsShadowEffect | ( | ) |
Definition at line 23 of file qgsshadoweffect.cpp.
|
virtual |
Definition at line 36 of file qgsshadoweffect.cpp.
|
inline |
Returns the blend mode for the effect.
Definition at line 157 of file qgsshadoweffect.h.
|
inline |
Returns the blur level (strength) for the shadow.
Definition at line 55 of file qgsshadoweffect.h.
|
overrideprotectedvirtual |
Returns the bounding rect required for drawing the effect.
This method can be used to expand the bounding rect of a source picture to account for offset or blurring effects.
rect | original source bounding rect |
context | destination render context |
Reimplemented from QgsPaintEffect.
Definition at line 150 of file qgsshadoweffect.cpp.
|
inline |
Returns the color used for the shadow.
Definition at line 129 of file qgsshadoweffect.h.
|
overrideprotectedvirtual |
Handles drawing of the effect's result on to the specified render context.
Derived classes must reimplement this method to apply any transformations to the source QPicture and draw the result using the context's painter.
context | destination render context |
Implements QgsPaintEffect.
Definition at line 41 of file qgsshadoweffect.cpp.
|
protectedpure virtual |
Specifies whether the shadow is drawn outside the picture or within the picture.
Implemented in QgsInnerShadowEffect, and QgsDropShadowEffect.
|
inline |
Returns the angle used for offsetting the shadow.
Definition at line 69 of file qgsshadoweffect.h.
|
inline |
Returns the distance used for offsetting the shadow.
Definition at line 85 of file qgsshadoweffect.h.
|
inline |
Returns the map unit scale used for the shadow offset distance.
Definition at line 117 of file qgsshadoweffect.h.
|
inline |
Returns the units used for the shadow offset distance.
Definition at line 101 of file qgsshadoweffect.h.
|
overridevirtual |
Returns the properties describing the paint effect encoded in a string format.
Implements QgsPaintEffect.
Definition at line 96 of file qgsshadoweffect.cpp.
|
overridevirtual |
Reads a string map of an effect's properties and restores the effect to the state described by the properties map.
props | effect properties encoded in a string map |
Implements QgsPaintEffect.
Definition at line 112 of file qgsshadoweffect.cpp.
|
inline |
Sets the blend mode for the effect.
mode | blend mode used for drawing the effect on to a destination paint device |
Definition at line 150 of file qgsshadoweffect.h.
|
inline |
Sets blur level (strength) for the shadow.
level | blur level. Values between 0 and 16 are valid, with larger values indicating greater blur strength. |
Definition at line 48 of file qgsshadoweffect.h.
|
inline |
Sets the color for the shadow.
color | shadow color |
Definition at line 123 of file qgsshadoweffect.h.
|
inline |
Sets the angle for offsetting the shadow.
angle | offset angle in degrees clockwise from North |
Definition at line 62 of file qgsshadoweffect.h.
|
inline |
Sets the distance for offsetting the shadow.
distance | offset distance. Units are specified via setOffsetUnit |
Definition at line 77 of file qgsshadoweffect.h.
|
inline |
Sets the map unit scale used for the shadow offset distance.
scale | map unit scale for offset distance |
Definition at line 109 of file qgsshadoweffect.h.
|
inline |
Sets the units used for the shadow offset distance.
unit | units for offset distance |
Definition at line 93 of file qgsshadoweffect.h.
|
inline |
Sets the transparency for the effect.
transparency | double between 0 and 1 inclusive, where 0 is fully opaque and 1 is fully transparent |
Definition at line 136 of file qgsshadoweffect.h.
|
inline |
Returns the transparency for the effect.
Definition at line 143 of file qgsshadoweffect.h.
|
protected |
Definition at line 178 of file qgsshadoweffect.h.
|
protected |
Definition at line 171 of file qgsshadoweffect.h.
|
protected |
Definition at line 177 of file qgsshadoweffect.h.
|
protected |
Definition at line 172 of file qgsshadoweffect.h.
|
protected |
Definition at line 173 of file qgsshadoweffect.h.
|
protected |
Definition at line 175 of file qgsshadoweffect.h.
|
protected |
Definition at line 174 of file qgsshadoweffect.h.
|
protected |
Definition at line 176 of file qgsshadoweffect.h.