mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
class QgsColorRampComboBox : QComboBox
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgscolorrampcombobox.h>
|
|
%End
|
|
public:
|
|
QgsColorRampComboBox( QWidget *parent /TransferThis/ = 0 );
|
|
|
|
~QgsColorRampComboBox();
|
|
|
|
//! initialize the combo box with color ramps from the style
|
|
void populate( QgsStyleV2* style );
|
|
|
|
//! add/select color ramp which was used previously by the renderer
|
|
void setSourceColorRamp( QgsVectorColorRampV2* sourceRamp );
|
|
|
|
//! return new instance of the current color ramp or NULL if there is no active color ramp
|
|
QgsVectorColorRampV2* currentColorRamp();
|
|
|
|
/**Returns true if the current selection in the combo box is the option for creating
|
|
* a new color ramp
|
|
* @note added in QGIS 2.7
|
|
*/
|
|
bool createNewColorRampSelected() const;
|
|
|
|
//! @note not available in python bindings
|
|
// static QSize rampIconSize;
|
|
|
|
//! @note added in 2.2
|
|
void setShowGradientOnly( bool gradientOnly );
|
|
//! @note added in 2.2
|
|
bool showGradientOnly() const;
|
|
|
|
public slots:
|
|
void colorRampChanged( int index );
|
|
};
|