Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Move internals of QgsColorDialogV2 to new QgsCompoundColorWidget widget
This allows reuse of the full options from the color dialog when required in a widget form.
- Loading branch information
1 parent
0332157
commit 77fc122
Showing
10 changed files
with
2,032 additions
and
1,677 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
|
||
/** \ingroup gui | ||
* \class QgsCompoundColorWidget | ||
* A custom QGIS widget for selecting a color, including options for selecting colors via | ||
* hue wheel, color swatches, and a color sampler. | ||
* \note Added in version 2.16 | ||
*/ | ||
|
||
class QgsCompoundColorWidget : QWidget | ||
{ | ||
%TypeHeaderCode | ||
#include <qgscompoundcolorwidget.h> | ||
%End | ||
|
||
public: | ||
|
||
/** Constructor for QgsCompoundColorWidget | ||
* @param parent parent widget | ||
* @param color initial color for dialog | ||
*/ | ||
QgsCompoundColorWidget( QWidget *parent /TransferThis/ = nullptr, const QColor& color = QColor() ); | ||
|
||
~QgsCompoundColorWidget(); | ||
|
||
/** Returns the current color for the dialog | ||
* @returns dialog color | ||
*/ | ||
QColor color() const; | ||
|
||
/** Sets whether alpha modification (transparency) is permitted | ||
* for the color dialog. Defaults to true. | ||
* @param allowAlpha set to false to disable alpha modification | ||
*/ | ||
void setAllowAlpha( const bool allowAlpha ); | ||
|
||
signals: | ||
|
||
/** Emitted when the dialog's color changes | ||
* @param color current color | ||
*/ | ||
void currentColorChanged( const QColor &color ); | ||
|
||
public slots: | ||
|
||
/** Sets the current color for the dialog | ||
* @param color desired color | ||
*/ | ||
void setColor( const QColor &color ); | ||
|
||
/** Sets the color to show in an optional "previous color" section | ||
* @param color previous color | ||
*/ | ||
void setPreviousColor( const QColor& color ); | ||
|
||
protected: | ||
|
||
void mousePressEvent( QMouseEvent* e ); | ||
|
||
void mouseMoveEvent( QMouseEvent *e ); | ||
|
||
void mouseReleaseEvent( QMouseEvent *e ); | ||
|
||
void keyPressEvent( QKeyEvent *e ); | ||
}; |
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.