QGIS API Documentation
3.40.0-Bratislava (b56115d8743)
Loading...
Searching...
No Matches
src
core
effects
qgseffectstack.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgseffectstack.h
3
----------------
4
begin : December 2014
5
copyright : (C) 2014 Nyall Dawson
6
email : nyall dot dawson at gmail dot com
7
***************************************************************************/
8
9
/***************************************************************************
10
* *
11
* This program is free software; you can redistribute it and/or modify *
12
* it under the terms of the GNU General Public License as published by *
13
* the Free Software Foundation; either version 2 of the License, or *
14
* (at your option) any later version. *
15
* *
16
***************************************************************************/
17
#ifndef QGSEFFECTSTACK_H
18
#define QGSEFFECTSTACK_H
19
20
#include "qgis_core.h"
21
#include "
qgis_sip.h
"
22
#include "
qgspainteffect.h
"
23
43
class
CORE_EXPORT
QgsEffectStack
:
public
QgsPaintEffect
SIP_NODEFAULTCTORS
44
{
45
46
public
:
47
54
static
QgsPaintEffect
*create(
const
QVariantMap &map )
SIP_FACTORY
;
55
56
QgsEffectStack
() =
default
;
57
58
QgsEffectStack
(
const
QgsEffectStack
&other );
59
63
QgsEffectStack
(
QgsEffectStack
&&other )
SIP_SKIP
;
64
70
explicit
QgsEffectStack
(
const
QgsPaintEffect
&effect );
71
72
~QgsEffectStack
()
override
;
73
74
QString
type
()
const override
{
return
QStringLiteral(
"effectStack"
); }
75
QgsEffectStack
*
clone
() const override
SIP_FACTORY
;
76
bool
saveProperties( QDomDocument &doc, QDomElement &element ) const override;
77
bool
readProperties( const QDomElement &element ) override;
78
82
QVariantMap properties() const override;
83
87
void
readProperties( const QVariantMap &props ) override;
88
95
void
appendEffect(
QgsPaintEffect
*effect
SIP_TRANSFER
);
96
104
bool
insertEffect(
int
index,
QgsPaintEffect
*effect
SIP_TRANSFER
);
105
112
bool
changeEffect(
int
index,
QgsPaintEffect
*effect
SIP_TRANSFER
);
113
118
QgsPaintEffect
*takeEffect(
int
index
SIP_TRANSFERBACK
);
119
125
QList<
QgsPaintEffect
* > *effectList();
126
131
int
count()
const
{
return
mEffectList.count(); }
132
138
QgsPaintEffect
*effect(
int
index )
const
;
139
140
QgsEffectStack
&operator=(
const
QgsEffectStack
&rhs );
141
142
QgsEffectStack
&operator=(
QgsEffectStack
&&other )
SIP_SKIP
;
143
144
145
protected
:
146
147
void
draw
(
QgsRenderContext
&context )
override
;
148
149
private
:
150
151
QList< QgsPaintEffect * > mEffectList;
152
153
void
clearStack();
154
};
155
156
#endif
// QGSEFFECTSTACK_H
157
QgsEffectStack
A paint effect which consists of a stack of other chained paint effects.
Definition
qgseffectstack.h:44
QgsEffectStack::QgsEffectStack
QgsEffectStack()=default
QgsEffectStack::type
QString type() const override
Returns the effect type.
Definition
qgseffectstack.h:74
QgsPaintEffect
Base class for visual effects which can be applied to QPicture drawings.
Definition
qgspainteffect.h:52
QgsPaintEffect::QgsEffectStack
friend class QgsEffectStack
Definition
qgspainteffect.h:306
QgsPaintEffect::clone
virtual QgsPaintEffect * clone() const =0
Duplicates an effect by creating a deep copy of the effect.
QgsPaintEffect::draw
virtual void draw(QgsRenderContext &context)=0
Handles drawing of the effect's result on to the specified render context.
QgsRenderContext
Contains information about the context of a rendering operation.
Definition
qgsrendercontext.h:62
qgis_sip.h
SIP_SKIP
#define SIP_SKIP
Definition
qgis_sip.h:126
SIP_TRANSFER
#define SIP_TRANSFER
Definition
qgis_sip.h:36
SIP_TRANSFERBACK
#define SIP_TRANSFERBACK
Definition
qgis_sip.h:48
SIP_FACTORY
#define SIP_FACTORY
Definition
qgis_sip.h:76
SIP_NODEFAULTCTORS
#define SIP_NODEFAULTCTORS
Definition
qgis_sip.h:101
qgspainteffect.h
Generated on Mon Oct 28 2024 22:06:03 for QGIS API Documentation by
1.9.8