| 
    QGIS API Documentation 3.32.0-Lima (311a8cb8a6)
    
   | 
 
Gradient color ramp, which smoothly interpolates between two colors and also supports optional extra color stops. More...
#include <qgscolorrampimpl.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) const | 
| 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... | |
| QColor::Spec | colorSpec () const | 
| Returns the color specification in which the color component interpolation will occur.  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... | |
| Qgis::AngularDirection | direction () const | 
| Returns the direction to traverse the color wheel using when interpolating hue-based color specifications.  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... | |
| QVariantMap | 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 | setColorSpec (QColor::Spec spec) | 
| Sets the color specification in which the color component interpolation will occur.  More... | |
| void | setDirection (Qgis::AngularDirection direction) | 
| Sets the direction to traverse the color wheel using when interpolating hue-based color specifications.  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 () | 
| virtual QgsColorRamp * | clone () const =0 | 
| Creates a clone of the color ramp.  More... | |
| virtual QColor | color (double value) const =0 | 
| Returns the color corresponding to a specified value.  More... | |
| virtual int | count () const =0 | 
| Returns number of defined colors, or -1 if undefined.  More... | |
| virtual void | invert () | 
| Inverts the ordering of the color ramp.  More... | |
| virtual QVariantMap | properties () const =0 | 
| Returns a string map containing all the color ramp's properties.  More... | |
| virtual QString | type () const =0 | 
| Returns a string representing the color ramp type.  More... | |
| virtual double | value (int index) const =0 | 
| Returns relative value between [0,1] of color at specified index.  More... | |
Static Public Member Functions | |
| static QgsColorRamp * | create (const QVariantMap &properties=QVariantMap()) | 
| Creates a new QgsColorRamp from a map of properties.  More... | |
| static QString | typeString () | 
| Returns the string identifier for QgsGradientColorRamp.  More... | |
  Static Public Member Functions inherited from QgsColorRamp | |
| static QList< QPair< QString, QString > > | rampTypes () | 
| Returns a list of available ramp types, where the first value in each item is the QgsColorRamp::type() string and the second is a user friendly, translated name for the color ramp type.  More... | |
Protected Attributes | |
| QColor | mColor1 | 
| QColor | mColor2 | 
| QColor::Spec | mColorSpec = QColor::Spec::Rgb | 
| Qgis::AngularDirection | mDirection = Qgis::AngularDirection::CounterClockwise | 
| bool | mDiscrete | 
| InterpolateColorFunc | mFunc = nullptr | 
| QgsStringMap | mInfo | 
| QgsGradientStopsList | mStops | 
Gradient color ramp, which smoothly interpolates between two colors and also supports optional extra color stops.
Definition at line 136 of file qgscolorrampimpl.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 204 of file qgscolorrampimpl.cpp.
| void QgsGradientColorRamp::addStopsToGradient | ( | QGradient * | gradient, | 
| double | opacity = 1  | 
        ||
| ) | const | 
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 536 of file qgscolorrampimpl.cpp.
      
  | 
  overridevirtual | 
Creates a clone of the color ramp.
Implements QgsColorRamp.
Reimplemented in QgsCptCityColorRamp.
Definition at line 413 of file qgscolorrampimpl.cpp.
      
  | 
  overridevirtual | 
Returns the color corresponding to a specified value.
| value | value between [0, 1] inclusive | 
Implements QgsColorRamp.
Definition at line 314 of file qgscolorrampimpl.cpp.
      
  | 
  inline | 
Returns the gradient start color.
Definition at line 177 of file qgscolorrampimpl.h.
      
  | 
  inline | 
Returns the gradient end color.
Definition at line 184 of file qgscolorrampimpl.h.
      
  | 
  inline | 
Returns the color specification in which the color component interpolation will occur.
For multi-stop gradients this color spec will be used for the portion of the color ramp leading into the final stop (i.e. color2()).
Definition at line 273 of file qgscolorrampimpl.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 481 of file qgscolorrampimpl.cpp.
      
  | 
  inlineoverridevirtual | 
Returns number of defined colors, or -1 if undefined.
Implements QgsColorRamp.
Definition at line 156 of file qgscolorrampimpl.h.
      
  | 
  static | 
Creates a new QgsColorRamp from a map of properties.
Definition at line 214 of file qgscolorrampimpl.cpp.
      
  | 
  inline | 
Returns the direction to traverse the color wheel using when interpolating hue-based color specifications.
For multi-stop gradients this direction will be used for the portion of the color ramp leading into the final stop (i.e. color2()).
Definition at line 298 of file qgscolorrampimpl.h.
      
  | 
  inline | 
Returns any additional info attached to the gradient ramp (e.g., authorship notes)
Definition at line 246 of file qgscolorrampimpl.h.
      
  | 
  overridevirtual | 
Inverts the ordering of the color ramp.
Reimplemented from QgsColorRamp.
Reimplemented in QgsCptCityColorRamp.
Definition at line 365 of file qgscolorrampimpl.cpp.
      
  | 
  inline | 
Returns true if the gradient is using discrete interpolation, rather than smoothly interpolating between colors. 
Definition at line 207 of file qgscolorrampimpl.h.
      
  | 
  overridevirtual | 
Returns a string map containing all the color ramp's properties.
Implements QgsColorRamp.
Reimplemented in QgsCptCityColorRamp.
Definition at line 423 of file qgscolorrampimpl.cpp.
      
  | 
  inline | 
Sets the gradient start color.
| color | start color | 
Definition at line 192 of file qgscolorrampimpl.h.
      
  | 
  inline | 
Sets the gradient end color.
| color | end color | 
Definition at line 200 of file qgscolorrampimpl.h.
| void QgsGradientColorRamp::setColorSpec | ( | QColor::Spec | spec | ) | 
Sets the color specification in which the color component interpolation will occur.
Only QColor::Spec::Rgb, QColor::Spec::Hsv and QColor::Spec::Hsl are currently supported.
For multi-stop gradients this color spec will be used for the portion of the color ramp leading into the final stop (i.e. color2()).
Definition at line 591 of file qgscolorrampimpl.cpp.
      
  | 
  inline | 
Sets the direction to traverse the color wheel using when interpolating hue-based color specifications.
For multi-stop gradients this direction will be used for the portion of the color ramp leading into the final stop (i.e. color2()).
Definition at line 310 of file qgscolorrampimpl.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 216 of file qgscolorrampimpl.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 253 of file qgscolorrampimpl.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 528 of file qgscolorrampimpl.cpp.
      
  | 
  inline | 
Returns the list of intermediate gradient stops for the ramp.
Definition at line 240 of file qgscolorrampimpl.h.
      
  | 
  overridevirtual | 
Returns a string representing the color ramp type.
Implements QgsColorRamp.
Reimplemented in QgsCptCityColorRamp.
Definition at line 360 of file qgscolorrampimpl.cpp.
      
  | 
  inlinestatic | 
Returns the string identifier for QgsGradientColorRamp.
Definition at line 165 of file qgscolorrampimpl.h.
      
  | 
  overridevirtual | 
Returns relative value between [0,1] of color at specified index.
Implements QgsColorRamp.
Definition at line 298 of file qgscolorrampimpl.cpp.
      
  | 
  protected | 
Definition at line 313 of file qgscolorrampimpl.h.
      
  | 
  protected | 
Definition at line 314 of file qgscolorrampimpl.h.
      
  | 
  protected | 
Definition at line 318 of file qgscolorrampimpl.h.
      
  | 
  protected | 
Definition at line 319 of file qgscolorrampimpl.h.
      
  | 
  protected | 
Definition at line 315 of file qgscolorrampimpl.h.
      
  | 
  protected | 
Definition at line 321 of file qgscolorrampimpl.h.
      
  | 
  protected | 
Definition at line 317 of file qgscolorrampimpl.h.
      
  | 
  protected | 
Definition at line 316 of file qgscolorrampimpl.h.