-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3489 from nyalldawson/preset_color_ramp
[FEATURE] "Preset colors" color ramp
- Loading branch information
Showing
23 changed files
with
877 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/** \ingroup gui | ||
* \class QgsPresetColorRampWidget | ||
* A widget which allows users to modify the properties of a QgsPresetSchemeColorRamp. | ||
* \note added in QGIS 3.0 | ||
*/ | ||
|
||
class QgsPresetColorRampWidget : QgsPanelWidget | ||
{ | ||
%TypeHeaderCode | ||
#include <qgspresetcolorrampdialog.h> | ||
%End | ||
|
||
public: | ||
|
||
/** Constructor for QgsPresetColorRampWidget. | ||
* @param ramp initial ramp to show in dialog | ||
* @param parent parent widget | ||
*/ | ||
QgsPresetColorRampWidget( const QgsPresetSchemeColorRamp& ramp, QWidget* parent /TransferThis/ = nullptr ); | ||
|
||
~QgsPresetColorRampWidget(); | ||
|
||
/** Returns a color ramp representing the current settings from the dialog. | ||
* @see setRamp() | ||
*/ | ||
QgsPresetSchemeColorRamp ramp() const; | ||
|
||
/** Sets the color ramp to show in the dialog. | ||
* @param ramp color ramp | ||
* @see ramp() | ||
*/ | ||
void setRamp( const QgsPresetSchemeColorRamp& ramp ); | ||
|
||
signals: | ||
|
||
//! Emitted when the dialog settings change | ||
void changed(); | ||
}; | ||
|
||
/** \ingroup gui | ||
* \class QgsPresetColorRampDialog | ||
* A dialog which allows users to modify the properties of a QgsPresetSchemeColorRamp. | ||
* \note added in QGIS 3.0 | ||
*/ | ||
|
||
class QgsPresetColorRampDialog : QDialog | ||
{ | ||
%TypeHeaderCode | ||
#include <qgspresetcolorrampdialog.h> | ||
%End | ||
|
||
public: | ||
|
||
/** Constructor for QgsPresetColorRampDialog. | ||
* @param ramp initial ramp to show in dialog | ||
* @param parent parent widget | ||
*/ | ||
QgsPresetColorRampDialog( const QgsPresetSchemeColorRamp& ramp, QWidget* parent /TransferThis/ = nullptr ); | ||
|
||
/** Returns a color ramp representing the current settings from the dialog. | ||
* @see setRamp() | ||
*/ | ||
QgsPresetSchemeColorRamp ramp() const; | ||
|
||
/** Sets the color ramp to show in the dialog. | ||
* @param ramp color ramp | ||
* @see ramp() | ||
*/ | ||
void setRamp( const QgsPresetSchemeColorRamp& ramp ); | ||
|
||
signals: | ||
|
||
//! Emitted when the dialog settings change | ||
void changed(); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.