QGIS API Documentation 3.43.0-Master (ac54a16a525)
qgscolorwidgets.h
Go to the documentation of this file.
1/***************************************************************************
2 qgscolorwidgets.h - color selection widgets
3 ---------------------
4 begin : September 2014
5 copyright : (C) 2014 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSCOLORWIDGETS_H
17#define QGSCOLORWIDGETS_H
18
19#include <QWidgetAction>
20#include <QWidget>
21#include "qgis_gui.h"
22#include "qgis_sip.h"
23
24class QColor;
25class QLineEdit;
26class QToolButton;
28
42class GUI_EXPORT QgsColorWidget : public QWidget
43{
44 Q_OBJECT
45
46 public:
65
69 enum class ComponentUnit
70 {
71 Scaled0to255,
72 Percent,
73 Degree
74 };
75 Q_ENUM( ComponentUnit )
76
77
82 QgsColorWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr, ColorComponent component = Multiple );
83
89 QColor color() const;
90
96 ColorComponent component() const { return mComponent; }
97
106 Q_DECL_DEPRECATED int componentValue() const SIP_DEPRECATED;
107
116 float componentValueF() const;
117
122 static QPixmap createDragIcon( const QColor &color );
123
127 static ComponentUnit componentUnit( ColorComponent component );
128
129
130 public slots:
131
138 virtual void setColor( const QColor &color, bool emitSignals = false );
139
145 virtual void setComponent( QgsColorWidget::ColorComponent component );
146
157 Q_DECL_DEPRECATED virtual void setComponentValue( int value ) SIP_DEPRECATED;
158
169 virtual void setComponentValueF( float value );
170
171 signals:
172
177 void colorChanged( const QColor &color );
178
182 void hovered();
183
184 protected:
185 QColor mCurrentColor;
186
187 ColorComponent mComponent;
188
193 float mExplicitHue = 0;
194
199 int componentRange() const;
200
205 static int componentRange( ColorComponent component );
206
216 Q_DECL_DEPRECATED int componentValue( ColorComponent component ) const SIP_DEPRECATED;
217
226 float componentValueF( ColorComponent component ) const;
227
234 Q_DECL_DEPRECATED int hue() const SIP_DEPRECATED;
235
242 float hueF() const;
243
252 Q_DECL_DEPRECATED static void alterColor( QColor &color, QgsColorWidget::ColorComponent component, int newValue ) SIP_DEPRECATED;
253
262 static void alterColorF( QColor &color, QgsColorWidget::ColorComponent component, float newValue );
263
267 QColor::Spec colorSpec() const;
268
272 static QColor::Spec colorSpec( QgsColorWidget::ColorComponent component );
273
278 static const QPixmap &transparentBackground();
279
280 //Reimplemented to accept dragged colors
281 void dragEnterEvent( QDragEnterEvent *e ) override;
282
283 //Reimplemented to accept dropped colors
284 void dropEvent( QDropEvent *e ) override;
285
286 void mouseMoveEvent( QMouseEvent *e ) override;
287 void mousePressEvent( QMouseEvent *e ) override;
288 void mouseReleaseEvent( QMouseEvent *e ) override;
289
290 friend class TestQgsCompoundColorWidget;
291};
292
293
301class GUI_EXPORT QgsColorWidgetAction : public QWidgetAction
302{
303 Q_OBJECT
304
305 public:
312 QgsColorWidgetAction( QgsColorWidget *colorWidget, QMenu *menu = nullptr, QWidget *parent SIP_TRANSFERTHIS = nullptr );
313
317 QgsColorWidget *colorWidget() { return mColorWidget; }
318
327 void setDismissOnColorSelection( bool dismiss ) { mDismissOnColorSelection = dismiss; }
328
334 bool dismissOnColorSelection() const { return mDismissOnColorSelection; }
335
336 signals:
337
342 void colorChanged( const QColor &color );
343
344 private:
345 QMenu *mMenu = nullptr;
346 QgsColorWidget *mColorWidget = nullptr;
347
348 //used to suppress recursion with hover events
349 bool mSuppressRecurse;
350
351 bool mDismissOnColorSelection;
352
353 private slots:
354
358 void onHover();
359
363 void setColor( const QColor &color );
364};
365
366
376class GUI_EXPORT QgsColorWheel : public QgsColorWidget
377{
378 Q_OBJECT
379
380 public:
385 QgsColorWheel( QWidget *parent SIP_TRANSFERTHIS = nullptr );
386
387 ~QgsColorWheel() override;
388
389 QSize sizeHint() const override;
390 void paintEvent( QPaintEvent *event ) override;
391
392 public slots:
393
394 void setColor( const QColor &color, bool emitSignals = false ) override;
395
396 protected:
397 void resizeEvent( QResizeEvent *event ) override;
398 void mouseMoveEvent( QMouseEvent *event ) override;
399 void mousePressEvent( QMouseEvent *event ) override;
400 void mouseReleaseEvent( QMouseEvent *event ) override;
401
402 private:
403 enum ControlPart
404 {
405 None,
406 Wheel,
407 Triangle
408 };
409
410 bool mIsDragging = false;
411
412 /*Margin between outer ring and edge of widget*/
413 int mMargin = 4;
414
415 /*Thickness of hue ring in pixels*/
416 int mWheelThickness = 18;
417
418 /*Part of the wheel where the mouse was originally depressed*/
419 ControlPart mClickedPart = QgsColorWheel::None;
420
421 /*Cached image of hue wheel*/
422 QImage mWheelImage;
423
424 /*Cached image of inner triangle*/
425 QImage mTriangleImage;
426
427 /*Resuable, temporary image for drawing widget*/
428 QImage mWidgetImage;
429
430 /*Whether the color wheel image requires redrawing*/
431 bool mWheelDirty = true;
432
433 /*Whether the inner triangle image requires redrawing*/
434 bool mTriangleDirty = true;
435
436 /*Conical gradient brush used for drawing hue wheel*/
437 QBrush mWheelBrush;
438
443 void createImages( QSizeF size );
444
446 void createWheel();
447
449 void createTriangle();
450
455 void setColorFromPos( QPointF pos );
456};
457
458
469class GUI_EXPORT QgsColorBox : public QgsColorWidget
470{
471 Q_OBJECT
472
473 public:
481 QgsColorBox( QWidget *parent SIP_TRANSFERTHIS = nullptr, ColorComponent component = Value );
482
483 ~QgsColorBox() override;
484
485 QSize sizeHint() const override;
486 void paintEvent( QPaintEvent *event ) override;
487
488 void setComponent( ColorComponent component ) override;
489
490 public slots:
491 void setColor( const QColor &color, bool emitSignals = false ) override;
492
493 protected:
494 void resizeEvent( QResizeEvent *event ) override;
495 void mouseMoveEvent( QMouseEvent *event ) override;
496 void mousePressEvent( QMouseEvent *event ) override;
497 void mouseReleaseEvent( QMouseEvent *event ) override;
498
499 private:
500 bool mIsDragging = false;
501
502 /*Margin between outer ring and edge of widget*/
503 static constexpr float mMargin = 2.;
504
505 /*Cached image for color box*/
506 QImage *mBoxImage = nullptr;
507
508 /*Whether the cached image requires redrawing*/
509 bool mDirty = true;
510
514 void createBox();
515
520 float valueRangeX() const;
521
526 float valueRangeY() const;
527
531 QgsColorWidget::ColorComponent yComponent() const;
532
536 float yComponentValue() const;
537
541 QgsColorWidget::ColorComponent xComponent() const;
542
546 float xComponentValue() const;
547
552 void setColorFromPoint( QPoint point );
553};
554
555
565class GUI_EXPORT QgsColorRampWidget : public QgsColorWidget
566{
567 Q_OBJECT
568
569 public:
574 {
575 Horizontal = 0,
576 Vertical
577 };
578
585 QgsColorRampWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr, ColorComponent component = QgsColorWidget::Red, Orientation orientation = QgsColorRampWidget::Horizontal );
586
587 QSize sizeHint() const override;
588 void paintEvent( QPaintEvent *event ) override;
589
595 void setOrientation( Orientation orientation );
596
602 Orientation orientation() const { return mOrientation; }
603
609 void setInteriorMargin( int margin );
610
616 int interiorMargin() const { return mMargin; }
617
623 void setShowFrame( bool showFrame );
624
630 bool showFrame() const { return mShowFrame; }
631
636 void setMarkerSize( int markerSize );
637
638 signals:
639
645 Q_DECL_DEPRECATED void valueChanged( int value ) SIP_DEPRECATED;
646
652 void valueChangedF( float value );
653
654 protected:
655 void mouseMoveEvent( QMouseEvent *event ) override;
656 void wheelEvent( QWheelEvent *event ) override;
657 void mousePressEvent( QMouseEvent *event ) override;
658 void mouseReleaseEvent( QMouseEvent *event ) override;
659 void keyPressEvent( QKeyEvent *event ) override;
660
661 private:
662 bool mIsDragging = false;
663
664 /*Orientation for ramp*/
665 Orientation mOrientation;
666
667 /*Margin around ramp*/
668 int mMargin = 4;
669
670 /*Whether to draw a frame around the ramp*/
671 bool mShowFrame = false;
672
673 /*Polygon for upper triangle marker*/
674 QPolygonF mTopTriangle;
675
676 /*Polygon for lower triangle marker*/
677 QPolygonF mBottomTriangle;
678
683 void setColorFromPoint( QPointF point );
684
685 friend class TestQgsCompoundColorWidget;
686};
687
688
695class GUI_EXPORT QgsColorSliderWidget : public QgsColorWidget
696{
697 Q_OBJECT
698
699 public:
705 QgsColorSliderWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr, ColorComponent component = QgsColorWidget::Red );
706
707 void setComponent( ColorComponent component ) override;
708 void setComponentValueF( float value ) override;
709 void setColor( const QColor &color, bool emitSignals = false ) override;
710
711 private:
712 /*Color ramp widget*/
713 QgsColorRampWidget *mRampWidget = nullptr;
714
715 /*Spin box widget*/
716 QgsDoubleSpinBox *mSpinBox = nullptr;
717
725 float convertRealToDisplay( float realValue ) const;
726
733 float convertDisplayToReal( float displayValue ) const;
734
735 private slots:
736
740 void rampColorChanged( const QColor &color );
741
745 void spinChanged( double value );
746
750 void rampChanged( float value );
751
752 friend class TestQgsCompoundColorWidget;
753};
754
755
763class GUI_EXPORT QgsColorTextWidget : public QgsColorWidget
764{
765 Q_OBJECT
766
767 public:
772 {
773 HexRgb = 0,
776 Rgba
777 };
778 Q_ENUM( ColorTextFormat )
779
780
784 QgsColorTextWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
785
786 void setColor( const QColor &color, bool emitSignals = false ) override;
787
793 void setAllowOpacity( bool allowOpacity );
794
795 protected:
796 void resizeEvent( QResizeEvent *event ) override;
797
798 private:
799 QLineEdit *mLineEdit = nullptr;
800
801 /*Drop-down menu button*/
802 QToolButton *mMenuButton = nullptr;
803
804 /*Display format for colors*/
805 ColorTextFormat mFormat = QgsColorTextWidget::HexRgb;
806
807 bool mAllowAlpha = true;
808
812 void updateText();
813
814 private slots:
815
819 void textChanged();
820
824 void showMenu();
825};
826
827
834class GUI_EXPORT QgsColorPreviewWidget : public QgsColorWidget
835{
836 Q_OBJECT
837
838 public:
843 QgsColorPreviewWidget( QWidget *parent SIP_TRANSFERTHIS = nullptr );
844
845 void paintEvent( QPaintEvent *event ) override;
846 QSize sizeHint() const override;
847
855 QColor color2() const { return mColor2; }
856
857 public slots:
858
866 virtual void setColor2( const QColor &color );
867
868 protected:
869 //reimplemented to allow dragging colors
870 void mousePressEvent( QMouseEvent *e ) override;
871
872 //reimplemented to click colors
873 void mouseReleaseEvent( QMouseEvent *e ) override;
874
875 //reimplemented to allow dragging colors
876 void mouseMoveEvent( QMouseEvent *e ) override;
877
878 private:
879 /*Secondary color for widget*/
880 QColor mColor2;
881
882 QPoint mDragStartPosition;
883
884 /*Draws a color preview within the specified rect.
885 * \param color color to draw
886 * \param rect rect to draw color in
887 * \param painter destination painter
888 */
889 void drawColor( const QColor &color, QRect rect, QPainter &painter );
890};
891
892#endif // #ifndef QGSCOLORWIDGETS_H
A color box widget.
A preview box which displays one or two colors as swatches.
QColor color2() const
Returns the secondary color for the widget.
A color ramp widget.
Q_DECL_DEPRECATED void valueChanged(int value)
Emitted when the widget's color component value changes.
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 valueChangedF(float value)
Emitted when the widget's color component value changes.
Orientation
Specifies the orientation of a color ramp.
@ Horizontal
Horizontal ramp.
bool showFrame() const
Fetches whether the ramp is drawn within a frame.
A composite horizontal color ramp widget and associated spinbox for manual value entry.
A line edit widget which displays colors as text and accepts string representations of colors.
ColorTextFormat
Specifies the display format for a color.
@ Rgb
Rgb( r, g, b ) format.
@ HexRgbA
#RRGGBBAA in hexadecimal, with alpha
@ HexRgb
#RRGGBB in hexadecimal
A color wheel widget.
~QgsColorWheel() override
An action containing a color widget, which can be embedded into a menu.
void setDismissOnColorSelection(bool dismiss)
Sets whether the parent menu should be dismissed and closed when a color is selected from the action'...
QgsColorWidget * colorWidget()
Returns the color widget contained in the widget action.
void colorChanged(const QColor &color)
Emitted when a color has been selected from the widget.
bool dismissOnColorSelection() const
Returns whether the parent menu will be dismissed after a color is selected from the action's color w...
A base class for interactive color widgets.
ColorComponent component() const
Returns the color component which the widget controls.
ComponentUnit
Specified the color component unit.
ColorComponent
Specifies the color component which the widget alters.
@ Hue
Hue component of color (based on HSV model)
@ Alpha
Alpha component (opacity) of color.
@ Green
Green component of color.
@ Red
Red component of color.
@ Saturation
Saturation component of color (based on HSV model)
@ Magenta
Magenta component (based on CMYK model) of color.
@ Yellow
Yellow component (based on CMYK model) of color.
@ Cyan
Cyan component (based on CMYK model) of color.
@ Blue
Blue component of color.
@ Value
Value component of color (based on HSV model)
The QgsSpinBox is a spin box with a clear button that will set the value to the defined clear value.
#define SIP_DEPRECATED
Definition qgis_sip.h:106
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53