QGIS API Documentation
3.14.0-Pi (9f7028fd23)
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
z
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
c
e
f
g
h
k
l
m
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Functions
a
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
n
o
p
q
r
s
t
u
w
Typedefs
a
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
Macros
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
w
y
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
core
raster
qgsrastershader.h
Go to the documentation of this file.
1
/* **************************************************************************
2
qgsrastershader.h - description
3
-------------------
4
begin : Fri Dec 28 2007
5
copyright : (C) 2007 by Peter J. Ersts
6
email : ersts@amnh.org
7
8
****************************************************************************/
9
10
/* **************************************************************************
11
* *
12
* This program is free software; you can redistribute it and/or modify *
13
* it under the terms of the GNU General Public License as published by *
14
* the Free Software Foundation; either version 2 of the License, or *
15
* (at your option) any later version. *
16
* *
17
***************************************************************************/
18
19
20
#ifndef QGSRASTERSHADER_H
21
#define QGSRASTERSHADER_H
22
23
#include "qgis_core.h"
24
#include "
qgis_sip.h
"
25
26
class
QDomDocument;
27
class
QDomElement;
28
class
QgsRasterShaderFunction
;
29
34
class
CORE_EXPORT
QgsRasterShader
35
{
36
37
public
:
38
QgsRasterShader
(
double
minimumValue = 0.0,
double
maximumValue = 255.0 );
39
41
QgsRasterShader
(
const
QgsRasterShader
&rh ) =
delete
;
43
QgsRasterShader
&operator=(
const
QgsRasterShader
&rh ) =
delete
;
44
45
/*
46
*
47
* Non-Static Inline methods
48
*
49
*/
50
56
double
maximumValue
()
const
{
return
mMaximumValue; }
57
63
double
minimumValue
()
const
{
return
mMinimumValue; }
64
65
QgsRasterShaderFunction
*
rasterShaderFunction
() {
return
mRasterShaderFunction.get(); }
66
const
QgsRasterShaderFunction
*
rasterShaderFunction
()
const
{
return
mRasterShaderFunction.get(); }
SIP_SKIP
67
68
/*
69
*
70
* Non-Static methods
71
*
72
*/
73
84
bool
shade(
double
value,
85
int
*returnRedValue
SIP_OUT
,
86
int
*returnGreenValue
SIP_OUT
,
87
int
*returnBlueValue
SIP_OUT
,
88
int
*returnAlpha
SIP_OUT
);
89
102
bool
shade(
double
redValue,
103
double
greenValue,
104
double
blueValue,
105
double
alphaValue,
106
int
*returnRedValue
SIP_OUT
,
107
int
*returnGreenValue
SIP_OUT
,
108
int
*returnBlueValue
SIP_OUT
,
109
int
*returnAlpha
SIP_OUT
);
110
115
void
setRasterShaderFunction(
QgsRasterShaderFunction
*
function
SIP_TRANSFER
);
116
122
void
setMaximumValue(
double
value );
123
129
void
setMinimumValue(
double
value );
130
134
void
writeXml( QDomDocument &doc, QDomElement &parent )
const
;
135
139
void
readXml(
const
QDomElement &elem );
140
141
private
:
142
#ifdef SIP_RUN
143
QgsRasterShader
(
const
QgsRasterShader
&rh );
144
#endif
145
147
double
mMinimumValue;
148
150
double
mMaximumValue;
151
153
std::unique_ptr< QgsRasterShaderFunction > mRasterShaderFunction;
154
155
};
156
#endif
QgsRasterShader::maximumValue
double maximumValue() const
Returns the maximum value for the raster shader.
Definition:
qgsrastershader.h:56
QgsRasterShader::minimumValue
double minimumValue() const
Returns the minimum value for the raster shader.
Definition:
qgsrastershader.h:63
SIP_OUT
#define SIP_OUT
Definition:
qgis_sip.h:58
QgsRasterShader::rasterShaderFunction
QgsRasterShaderFunction * rasterShaderFunction()
Definition:
qgsrastershader.h:65
QgsRasterShader::rasterShaderFunction
const QgsRasterShaderFunction * rasterShaderFunction() const
Definition:
qgsrastershader.h:66
SIP_SKIP
#define SIP_SKIP
Definition:
qgis_sip.h:126
qgis_sip.h
SIP_TRANSFER
#define SIP_TRANSFER
Definition:
qgis_sip.h:36
QgsRasterShaderFunction
Definition:
qgsrastershaderfunction.h:34
QgsRasterShader
Definition:
qgsrastershader.h:34
Generated on Mon Jun 22 2020 05:14:09 for QGIS API Documentation by
1.8.17