File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -615,7 +615,9 @@ class QgsSymbolV2RenderContext
615
615
QgsSymbolV2::OutputUnit outputUnit() const;
616
616
void setOutputUnit( QgsSymbolV2::OutputUnit u );
617
617
618
+ //! Get alpha transparency 1 for opaque, 0 for invisible
618
619
qreal alpha() const;
620
+ //! Set alpha transparency 1 for opaque, 0 for invisible
619
621
void setAlpha( qreal alpha );
620
622
621
623
bool selected() const;
Original file line number Diff line number Diff line change @@ -90,7 +90,9 @@ class CORE_EXPORT QgsSymbolV2
90
90
OutputUnit outputUnit () const { return mOutputUnit ; }
91
91
void setOutputUnit ( OutputUnit u ) { mOutputUnit = u; }
92
92
93
+ // ! Get alpha transparency 1 for opaque, 0 for invisible
93
94
qreal alpha () const { return mAlpha ; }
95
+ // ! Set alpha transparency 1 for opaque, 0 for invisible
94
96
void setAlpha ( qreal alpha ) { mAlpha = alpha; }
95
97
96
98
// ! @note added in 1.5
@@ -133,7 +135,9 @@ class CORE_EXPORT QgsSymbolV2RenderContext
133
135
QgsSymbolV2::OutputUnit outputUnit () const { return mOutputUnit ; }
134
136
void setOutputUnit ( QgsSymbolV2::OutputUnit u ) { mOutputUnit = u; }
135
137
138
+ // ! Get alpha transparency 1 for opaque, 0 for invisible
136
139
qreal alpha () const { return mAlpha ; }
140
+ // ! Set alpha transparency 1 for opaque, 0 for invisible
137
141
void setAlpha ( qreal alpha ) { mAlpha = alpha; }
138
142
139
143
bool selected () const { return mSelected ; }
You can’t perform that action at this time.
0 commit comments