QGIS API Documentation  2.8.2-Wien
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Types | Signals | Public Member Functions | Protected Member Functions | List of all members
QgsColorRampWidget Class Reference

A color ramp widget. More...

#include <qgscolorwidgets.h>

Inheritance diagram for QgsColorRampWidget:
Inheritance graph
[legend]

Public Types

enum  Orientation { Horizontal = 0, Vertical }
- Public Types inherited from QgsColorWidget
enum  ColorComponent {
  Multiple = 0, Red, Green, Blue,
  Hue, Saturation, Value, Alpha
}

Signals

void valueChanged (const int value)
 Emitted when the widget's color component value changes.
- Signals inherited from QgsColorWidget
void colorChanged (const QColor &color)
 Emitted when the widget's color changes.

Public Member Functions

 QgsColorRampWidget (QWidget *parent=0, const ColorComponent component=QgsColorWidget::Red, const Orientation orientation=QgsColorRampWidget::Horizontal)
 Construct a new color ramp widget.
virtual ~QgsColorRampWidget ()
int interiorMargin () const
 Fetches the margin between the edge of the widget and the ramp.
Orientation orientation () const
 Fetches the orientation for the color ramp.
void paintEvent (QPaintEvent *event) override
void setInteriorMargin (const int margin)
 Sets the margin between the edge of the widget and the ramp.
void setMarkerSize (const int markerSize)
 Sets the size for drawing the triangular markers on the ramp.
void setOrientation (const Orientation orientation)
 Sets the orientation for the color ramp.
void setShowFrame (const bool showFrame)
 Sets whether the ramp should be drawn within a frame.
bool showFrame () const
 Fetches whether the ramp is drawn within a frame.
virtual QSize sizeHint () const override
- Public Member Functions inherited from QgsColorWidget
 QgsColorWidget (QWidget *parent=0, const ColorComponent component=Multiple)
 Construct a new color widget.
virtual ~QgsColorWidget ()
QColor color () const
 Returns the current color for the widget.
ColorComponent component () const
 Returns the color component which the widget controls.
int componentValue () const
 Returns the current value of the widget's color component.

Protected Member Functions

virtual void keyPressEvent (QKeyEvent *event) override
virtual void mouseMoveEvent (QMouseEvent *event) override
virtual void mousePressEvent (QMouseEvent *event) override
- Protected Member Functions inherited from QgsColorWidget
void alterColor (QColor &color, const QgsColorWidget::ColorComponent component, const int newValue) const
 Alters a color by modifiying the value of a specific color component.
int componentRange () const
 Returns the range of valid values for the color widget's component.
int componentRange (const ColorComponent component) const
 Returns the range of valid values a color component.
int componentValue (const ColorComponent component) const
 Returns the value of a component of the widget's current color.
void dragEnterEvent (QDragEnterEvent *e) override
void dropEvent (QDropEvent *e) override
int hue () const
 Returns the hue for the widget.

Additional Inherited Members

- Public Slots inherited from QgsColorWidget
virtual void setColor (const QColor &color, const bool emitSignals=false)
 Sets the color for the widget.
virtual void setComponent (const ColorComponent component)
 Sets the color component which the widget controls.
virtual void setComponentValue (const int value)
 Alters the widget's color by setting the value for the widget's color component.
- Static Public Member Functions inherited from QgsColorWidget
static QPixmap createDragIcon (const QColor &color)
 Create an icon for dragging colors.
- Static Protected Member Functions inherited from QgsColorWidget
static const QPixmap & transparentBackground ()
 Generates a checkboard pattern pixmap for use as a background to transparent colors.
- Protected Attributes inherited from QgsColorWidget
ColorComponent mComponent
QColor mCurrentColor
int mExplicitHue
 QColor wipes the hue information when it is ambiguous (eg, for saturation = 0).

Detailed Description

A color ramp widget.

This widget consists of an interactive box filled with a color which varies along its length by a single color component (eg, varying saturation from 0 to 100%).

Note
Added in version 2.5

Definition at line 358 of file qgscolorwidgets.h.

Member Enumeration Documentation

Specifies the orientation of a color ramp

Enumerator:
Horizontal 

horizontal ramp

Vertical 

vertical ramp

Definition at line 366 of file qgscolorwidgets.h.

Constructor & Destructor Documentation

QgsColorRampWidget::QgsColorRampWidget ( QWidget *  parent = 0,
const ColorComponent  component = QgsColorWidget::Red,
const Orientation  orientation = QgsColorRampWidget::Horizontal 
)

Construct a new color ramp widget.

Parameters
parentparent QWidget for the widget
componentcolor component which varies along the ramp
orientationorientation for widget

Definition at line 955 of file qgscolorwidgets.cpp.

QgsColorRampWidget::~QgsColorRampWidget ( )
virtual

Definition at line 969 of file qgscolorwidgets.cpp.

Member Function Documentation

int QgsColorRampWidget::interiorMargin ( ) const
inline

Fetches the margin between the edge of the widget and the ramp.

Returns
margin around the ramp
See Also
setInteriorMargin

Definition at line 408 of file qgscolorwidgets.h.

void QgsColorRampWidget::keyPressEvent ( QKeyEvent *  event)
overrideprotectedvirtual

Definition at line 1158 of file qgscolorwidgets.cpp.

void QgsColorRampWidget::mouseMoveEvent ( QMouseEvent *  event)
overrideprotectedvirtual

Definition at line 1148 of file qgscolorwidgets.cpp.

void QgsColorRampWidget::mousePressEvent ( QMouseEvent *  event)
overrideprotectedvirtual

Definition at line 1153 of file qgscolorwidgets.cpp.

Orientation QgsColorRampWidget::orientation ( ) const
inline

Fetches the orientation for the color ramp.

Returns
orientation for the ramp
See Also
setOrientation

Definition at line 396 of file qgscolorwidgets.h.

void QgsColorRampWidget::paintEvent ( QPaintEvent *  event)
override

Definition at line 988 of file qgscolorwidgets.cpp.

void QgsColorRampWidget::setInteriorMargin ( const int  margin)

Sets the margin between the edge of the widget and the ramp.

Parameters
marginmargin around the ramp
See Also
interiorMargin

Definition at line 1120 of file qgscolorwidgets.cpp.

void QgsColorRampWidget::setMarkerSize ( const int  markerSize)

Sets the size for drawing the triangular markers on the ramp.

Parameters
markerSizemarker size in pixels

Definition at line 1140 of file qgscolorwidgets.cpp.

void QgsColorRampWidget::setOrientation ( const Orientation  orientation)

Sets the orientation for the color ramp.

Parameters
orientationnew orientation for the ramp
See Also
orientation

Definition at line 1104 of file qgscolorwidgets.cpp.

void QgsColorRampWidget::setShowFrame ( const bool  showFrame)

Sets whether the ramp should be drawn within a frame.

Parameters
showFrameset to true to draw a frame around the ramp
See Also
showFrame

Definition at line 1130 of file qgscolorwidgets.cpp.

bool QgsColorRampWidget::showFrame ( ) const
inline

Fetches whether the ramp is drawn within a frame.

Returns
true if a frame is drawn around the ramp
See Also
setShowFrame

Definition at line 420 of file qgscolorwidgets.h.

QSize QgsColorRampWidget::sizeHint ( ) const
overridevirtual

Definition at line 974 of file qgscolorwidgets.cpp.

void QgsColorRampWidget::valueChanged ( const int  value)
signal

Emitted when the widget's color component value changes.

Parameters
valuenew value of color component

The documentation for this class was generated from the following files: