QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
Gradient color ramp, which smoothly interpolates between two colors and also supports optional extra color stops. More...
#include <qgscolorramp.h>
Public Member Functions | |
QgsGradientColorRamp (const QColor &color1=DEFAULT_GRADIENT_COLOR1, const QColor &color2=DEFAULT_GRADIENT_COLOR2, bool discrete=false, const QgsGradientStopsList &stops=QgsGradientStopsList()) | |
Constructor for QgsGradientColorRamp. More... | |
void | addStopsToGradient (QGradient *gradient, double opacity=1) |
Copy color ramp stops to a QGradient. More... | |
QgsGradientColorRamp * | clone () const override |
Creates a clone of the color ramp. More... | |
QColor | color (double value) const override |
Returns the color corresponding to a specified value. More... | |
QColor | color1 () const |
Returns the gradient start color. More... | |
QColor | color2 () const |
Returns the gradient end color. More... | |
void | convertToDiscrete (bool discrete) |
Converts a gradient with existing color stops to or from discrete interpolation. More... | |
int | count () const override |
Returns number of defined colors, or -1 if undefined. More... | |
QgsStringMap | info () const |
Returns any additional info attached to the gradient ramp (e.g., authorship notes) More... | |
void | invert () override |
Inverts the ordering of the color ramp. More... | |
bool | isDiscrete () const |
Returns true if the gradient is using discrete interpolation, rather than smoothly interpolating between colors. More... | |
QgsStringMap | properties () const override |
Returns a string map containing all the color ramp's properties. More... | |
void | setColor1 (const QColor &color) |
Sets the gradient start color. More... | |
void | setColor2 (const QColor &color) |
Sets the gradient end color. More... | |
void | setDiscrete (bool discrete) |
Sets whether the gradient should use discrete interpolation, rather than smoothly interpolating between colors. More... | |
void | setInfo (const QgsStringMap &info) |
Sets additional info to attach to the gradient ramp (e.g., authorship notes) More... | |
void | setStops (const QgsGradientStopsList &stops) |
Sets the list of intermediate gradient stops for the ramp. More... | |
QgsGradientStopsList | stops () const |
Returns the list of intermediate gradient stops for the ramp. More... | |
QString | type () const override |
Returns a string representing the color ramp type. More... | |
double | value (int index) const override |
Returns relative value between [0,1] of color at specified index. More... | |
Public Member Functions inherited from QgsColorRamp | |
virtual | ~QgsColorRamp ()=default |
Static Public Member Functions | |
static QgsColorRamp * | create (const QgsStringMap &properties=QgsStringMap()) |
Creates a new QgsColorRamp from a map of properties. More... | |
Protected Attributes | |
QColor | mColor1 |
QColor | mColor2 |
bool | mDiscrete |
QgsStringMap | mInfo |
QgsGradientStopsList | mStops |
Gradient color ramp, which smoothly interpolates between two colors and also supports optional extra color stops.
Definition at line 139 of file qgscolorramp.h.
QgsGradientColorRamp::QgsGradientColorRamp | ( | const QColor & | color1 = DEFAULT_GRADIENT_COLOR1 , |
const QColor & | color2 = DEFAULT_GRADIENT_COLOR2 , |
||
bool | discrete = false , |
||
const QgsGradientStopsList & | stops = QgsGradientStopsList() |
||
) |
Constructor for QgsGradientColorRamp.
color1 | start color, corresponding to a position of 0.0 |
color2 | end color, corresponding to a position of 1.0 |
discrete | set to true for discrete interpolation instead of smoothly interpolating between colors |
stops | optional list of additional color stops |
Definition at line 44 of file qgscolorramp.cpp.
void QgsGradientColorRamp::addStopsToGradient | ( | QGradient * | gradient, |
double | opacity = 1 |
||
) |
Copy color ramp stops to a QGradient.
gradient | gradient to copy stops into |
opacity | opacity multiplier. Opacity of colors will be multiplied by this factor before adding to the gradient. |
Definition at line 279 of file qgscolorramp.cpp.
|
overridevirtual |
Creates a clone of the color ramp.
Implements QgsColorRamp.
Reimplemented in QgsCptCityColorRamp.
Definition at line 190 of file qgscolorramp.cpp.
|
overridevirtual |
Returns the color corresponding to a specified value.
value | value between [0, 1] inclusive |
Implements QgsColorRamp.
Definition at line 117 of file qgscolorramp.cpp.
|
inline |
Returns the gradient start color.
Definition at line 172 of file qgscolorramp.h.
|
inline |
Returns the gradient end color.
Definition at line 179 of file qgscolorramp.h.
void QgsGradientColorRamp::convertToDiscrete | ( | bool | discrete | ) |
Converts a gradient with existing color stops to or from discrete interpolation.
discrete | set to true to convert the gradient stops to discrete, or false to convert them to smooth interpolation |
Definition at line 224 of file qgscolorramp.cpp.
|
inlineoverridevirtual |
Returns number of defined colors, or -1 if undefined.
Implements QgsColorRamp.
Definition at line 159 of file qgscolorramp.h.
|
static |
Creates a new QgsColorRamp from a map of properties.
Definition at line 53 of file qgscolorramp.cpp.
|
inline |
Returns any additional info attached to the gradient ramp (e.g., authorship notes)
Definition at line 241 of file qgscolorramp.h.
|
overridevirtual |
Inverts the ordering of the color ramp.
Reimplemented from QgsColorRamp.
Reimplemented in QgsCptCityColorRamp.
Definition at line 163 of file qgscolorramp.cpp.
|
inline |
Returns true
if the gradient is using discrete interpolation, rather than smoothly interpolating between colors.
Definition at line 202 of file qgscolorramp.h.
|
overridevirtual |
Returns a string map containing all the color ramp's properties.
Implements QgsColorRamp.
Reimplemented in QgsCptCityColorRamp.
Definition at line 198 of file qgscolorramp.cpp.
|
inline |
Sets the gradient start color.
color | start color |
Definition at line 187 of file qgscolorramp.h.
|
inline |
Sets the gradient end color.
color | end color |
Definition at line 195 of file qgscolorramp.h.
|
inline |
Sets whether the gradient should use discrete interpolation, rather than smoothly interpolating between colors.
discrete | set to true to use discrete interpolation |
Definition at line 211 of file qgscolorramp.h.
|
inline |
Sets additional info to attach to the gradient ramp (e.g., authorship notes)
info | map of string info to attach |
Definition at line 248 of file qgscolorramp.h.
void QgsGradientColorRamp::setStops | ( | const QgsGradientStopsList & | stops | ) |
Sets the list of intermediate gradient stops for the ramp.
stops | list of stops. Any existing color stops will be replaced. The stop list will be automatically reordered so that stops are listed in ascending offset order. |
Definition at line 271 of file qgscolorramp.cpp.
|
inline |
Returns the list of intermediate gradient stops for the ramp.
Definition at line 235 of file qgscolorramp.h.
|
inlineoverridevirtual |
Returns a string representing the color ramp type.
Implements QgsColorRamp.
Reimplemented in QgsCptCityColorRamp.
Definition at line 162 of file qgscolorramp.h.
|
overridevirtual |
Returns relative value between [0,1] of color at specified index.
Implements QgsColorRamp.
Definition at line 101 of file qgscolorramp.cpp.
|
protected |
Definition at line 260 of file qgscolorramp.h.
|
protected |
Definition at line 261 of file qgscolorramp.h.
|
protected |
Definition at line 262 of file qgscolorramp.h.
|
protected |
Definition at line 264 of file qgscolorramp.h.
|
protected |
Definition at line 263 of file qgscolorramp.h.