35#include <QStyleOptionToolButton>
36#include <QWidgetAction>
44 : QToolButton( parent )
45 , mColorDialogTitle( cdt.isEmpty() ? tr(
"Select Color" ) : cdt )
46 , mNoColorString( tr(
"No color" ) )
51 setAcceptDrops(
true );
52 setMinimumSize( QSize( 24, 16 ) );
53 connect(
this, &QAbstractButton::clicked,
this, &QgsColorButton::buttonClicked );
56 mMenu =
new QMenu(
this );
57 connect( mMenu, &QMenu::aboutToShow,
this, &QgsColorButton::prepareMenu );
59 setPopupMode( QToolButton::MenuButtonPopup );
62 mMinimumSize = QSize( 120, 22 );
64 mMinimumSize = QSize( 120, 28 );
67 mMinimumSize.setHeight( std::max(
static_cast<int>(
Qgis::UI_SCALE_FACTOR * fontMetrics().height() * 1.1 ), mMinimumSize.height() ) );
88 static QPixmap sTranspBkgrd;
90 if ( sTranspBkgrd.isNull() )
96void QgsColorButton::showColorDialog()
101 const QColor currentColor =
color();
106 if ( currentColor.isValid() )
120 const bool useNative = settings.
value( QStringLiteral(
"qgis/native_color_dialogs" ),
false ).toBool();
124 newColor = QColorDialog::getColor(
color(),
this, mColorDialogTitle, mAllowOpacity ? QColorDialog::ShowAlphaChannel : ( QColorDialog::ColorDialogOption )0 );
129 dialog.setTitle( mColorDialogTitle );
130 dialog.setAllowOpacity( mAllowOpacity );
134 newColor = dialog.color();
138 if ( newColor.isValid() )
140 setValidColor( newColor );
149 if ( !mDefaultColor.isValid() )
171 if ( e->type() == QEvent::ToolTip && isEnabled() )
173 QColor
c = linkedProjectColor();
174 const bool isProjectColor =
c.isValid();
175 if ( !isProjectColor )
178 const QString name =
c.name();
179 const int hue =
c.hue();
180 const int value =
c.value();
181 const int saturation =
c.saturation();
184 const int width =
static_cast< int >(
Qgis::UI_SCALE_FACTOR * fontMetrics().horizontalAdvance(
'X' ) * 23 );
185 const int height =
static_cast< int >( width / 1.61803398875 );
187 const int margin =
static_cast< int >( height * 0.1 );
188 QImage icon = QImage( width + 2 * margin, height + 2 * margin, QImage::Format_ARGB32 );
189 icon.fill( Qt::transparent );
196 p.setPen( Qt::NoPen );
197 p.setBrush( checkBrush );
198 p.drawRect( margin, margin, width, height );
201 p.setBrush( QBrush(
c ) );
204 p.setPen( QColor( 197, 197, 197 ) );
205 p.drawRect( margin, margin, width, height );
209 QBuffer buffer( &data );
210 icon.save( &buffer,
"PNG", 100 );
212 const QString info = ( isProjectColor ? QStringLiteral(
"<p>%1: %2</p>" ).arg( tr(
"Linked color" ), mLinkedColorName ) : QString() )
213 + QStringLiteral(
"<b>HEX</b> %1<br>"
215 "<b>HSV</b> %3,%4,%5<p>"
216 "<img src='data:image/png;base64, %0'>" ).arg( QString( data.toBase64() ), name,
218 .arg( hue ).arg( saturation ).arg( value );
221 return QToolButton::event( e );
226 QColor noColor = QColor( mColor );
227 noColor.setAlpha( 0 );
240 if ( e->button() == Qt::RightButton )
242 QToolButton::showMenu();
245 else if ( e->button() == Qt::LeftButton )
247 mDragStartPosition = e->pos();
249 QToolButton::mousePressEvent( e );
252bool QgsColorButton::colorFromMimeData(
const QMimeData *mimeData, QColor &resultColor )
254 bool hasAlpha =
false;
257 if ( mimeColor.isValid() )
259 if ( !mAllowOpacity )
262 mimeColor.setAlpha( 255 );
264 else if ( !hasAlpha )
267 mimeColor.setAlpha( mColor.alpha() );
269 resultColor = mimeColor;
287 QColor
c = linkedProjectColor();
291 if ( !( e->buttons() & Qt::LeftButton ) || !
c.isValid() )
294 QToolButton::mouseMoveEvent( e );
298 if ( ( e->pos() - mDragStartPosition ).manhattanLength() < QApplication::startDragDistance() )
301 QToolButton::mouseMoveEvent( e );
306 QDrag *drag =
new QDrag(
this );
309 drag->exec( Qt::CopyAction );
318 stopPicking( e->globalPos() );
323 QToolButton::mouseReleaseEvent( e );
326void QgsColorButton::stopPicking( QPoint eventPos,
bool samplingColor )
331 QgsApplication::restoreOverrideCursor();
332 setMouseTracking(
false );
333 mPickingColor =
false;
335 if ( !samplingColor )
343 addRecentColor( mColor );
346QColor QgsColorButton::linkedProjectColor()
const
348 QList<QgsProjectColorScheme *> projectSchemes;
350 if ( projectSchemes.length() > 0 )
354 for (
const auto &
color : colors )
356 if (
color.second.isEmpty() )
359 if (
color.second == mLinkedColorName )
370 if ( !mPickingColor )
373 QToolButton::keyPressEvent( e );
378 stopPicking( QCursor::pos(), e->key() == Qt::Key_Space );
383 const bool isProjectColor = linkedProjectColor().isValid();
384 if ( isProjectColor )
389 if ( colorFromMimeData( e->mimeData(), mimeColor ) )
394 e->acceptProposedAction();
408 const bool isProjectColor = linkedProjectColor().isValid();
409 if ( isProjectColor )
414 if ( colorFromMimeData( e->mimeData(), mimeColor ) )
417 e->acceptProposedAction();
419 addRecentColor( mimeColor );
425 if ( mAllowOpacity && isEnabled() && !
isNull() )
427 const double increment = ( (
event->modifiers() & Qt::ControlModifier ) ? 0.01 : 0.1 ) *
428 (
event->angleDelta().y() > 0 ? 1 : -1 );
429 const double alpha = std::min( std::max( 0.0, mColor.alphaF() + increment ), 1.0 );
430 mColor.setAlphaF( alpha );
438 QToolButton::wheelEvent(
event );
442void QgsColorButton::setValidColor(
const QColor &newColor )
444 if ( newColor.isValid() )
447 addRecentColor( newColor );
451void QgsColorButton::setValidTemporaryColor(
const QColor &newColor )
453 if ( newColor.isValid() )
464 QPixmap pixmap( iconSize, iconSize );
465 pixmap.fill( Qt::transparent );
474 p.setPen( Qt::NoPen );
475 p.setBrush( checkBrush );
476 p.drawRect( 0, 0, iconSize - 1, iconSize - 1 );
480 p.setBrush( QBrush(
color ) );
483 p.setPen( QColor( 197, 197, 197 ) );
484 p.drawRect( 0, 0, iconSize - 1, iconSize - 1 );
489void QgsColorButton::buttonClicked()
491 if ( linkedProjectColor().isValid() )
493 QToolButton::showMenu();
509void QgsColorButton::prepareMenu()
517 const bool isProjectColor = linkedProjectColor().isValid();
519 if ( !isProjectColor )
523 QAction *nullAction =
new QAction( mNullColorString.isEmpty() ? tr(
"Clear Color" ) : mNullColorString, this );
525 mMenu->addAction( nullAction );
530 if ( mDefaultColor.isValid() )
532 QAction *defaultColorAction =
new QAction( tr(
"Default Color" ),
this );
534 mMenu->addAction( defaultColorAction );
538 if ( mShowNoColorOption )
540 QAction *noColorAction =
new QAction( mNoColorString,
this );
541 noColorAction->setIcon(
createMenuIcon( Qt::transparent,
false ) );
542 mMenu->addAction( noColorAction );
546 mMenu->addSeparator();
552 mMenu->addAction( colorAction );
564 mMenu->addAction( alphaAction );
567 if ( mColorSchemeRegistry )
571 QList< QgsColorScheme * >::iterator it = schemeList.begin();
572 for ( ; it != schemeList.end(); ++it )
576 mMenu->addAction( colorAction );
582 mMenu->addSeparator();
585 if ( isProjectColor )
587 QAction *unlinkAction =
new QAction( tr(
"Unlink Color" ), mMenu );
588 mMenu->addAction( unlinkAction );
592 QAction *copyColorAction =
new QAction( tr(
"Copy Color" ),
this );
593 mMenu->addAction( copyColorAction );
596 if ( !isProjectColor )
598 QAction *pasteColorAction =
new QAction( tr(
"Paste Color" ),
this );
602 if ( colorFromMimeData( QApplication::clipboard()->mimeData(), clipColor ) )
608 pasteColorAction->setEnabled(
false );
610 mMenu->addAction( pasteColorAction );
613 QAction *pickColorAction =
new QAction( tr(
"Pick Color" ),
this );
614 mMenu->addAction( pickColorAction );
617 QAction *chooseColorAction =
new QAction( tr(
"Choose Color…" ),
this );
618 mMenu->addAction( chooseColorAction );
619 connect( chooseColorAction, &QAction::triggered,
this, &QgsColorButton::showColorDialog );
625 if ( e->type() == QEvent::EnabledChange )
629 QToolButton::changeEvent( e );
633void QgsColorButton::paintEvent( QPaintEvent *e )
635 QToolButton::paintEvent( e );
637 if ( !mBackgroundSet )
647 QToolButton::showEvent( e );
652 QToolButton::resizeEvent(
event );
660 const QColor oldColor = mColor;
664 if ( oldColor != mColor || ( mColor == QColor( Qt::black ) && !mColorSet ) )
677void QgsColorButton::addRecentColor(
const QColor &color )
684 QColor backgroundColor =
color;
685 bool isProjectColor =
false;
686 if ( !backgroundColor.isValid() && !mLinkedColorName.isEmpty() )
688 backgroundColor = linkedProjectColor();
689 isProjectColor = backgroundColor.isValid();
690 if ( !isProjectColor )
692 mLinkedColorName.clear();
696 if ( !backgroundColor.isValid() )
698 backgroundColor = mColor;
701 QSize currentIconSize;
705 if ( !mIconSize.isValid() )
708 QStyleOptionToolButton opt;
709 initStyleOption( &opt );
710 const QRect buttonSize = QApplication::style()->subControlRect( QStyle::CC_ToolButton, &opt, QStyle::SC_ToolButton,
714 mIconSize = QSize( buttonSize.width() - 10, height() - 6 );
716 mIconSize = QSize( buttonSize.width() - 10, height() - 12 );
719 currentIconSize = mIconSize;
725 currentIconSize = QSize( width() - 10, height() - 6 );
727 currentIconSize = QSize( width() - 10, height() - 12 );
731 if ( !currentIconSize.isValid() || currentIconSize.width() <= 0 || currentIconSize.height() <= 0 )
737 const double pixelRatio = devicePixelRatioF();
738 QPixmap pixmap( currentIconSize * pixelRatio );
739 pixmap.setDevicePixelRatio( pixelRatio );
740 pixmap.fill( Qt::transparent );
742 if ( backgroundColor.isValid() )
744 const QRectF rect( 0, 0,
745 currentIconSize.width(),
746 currentIconSize.height() );
749 p.setRenderHint( QPainter::Antialiasing );
750 p.setPen( Qt::NoPen );
751 if ( mAllowOpacity && backgroundColor.alpha() < 255 )
755 p.setBrush( checkBrush );
756 p.drawRoundedRect( rect, 3, 3 );
760 p.setBrush( backgroundColor );
761 p.drawRoundedRect( rect, 3, 3 );
765 setIconSize( currentIconSize );
772 QColor
c = linkedProjectColor();
781 if ( colorFromMimeData( QApplication::clipboard()->mimeData(), clipColor ) )
785 addRecentColor( clipColor );
793 mCurrentColor = mColor;
797 mPickingColor =
true;
798 setMouseTracking(
true );
803 QColor
c = linkedProjectColor();
811 mAllowOpacity = allow;
816 mColorDialogTitle = title;
821 return mColorDialogTitle;
827 setMenu(
showMenu ? mMenu : nullptr );
828 setPopupMode(
showMenu ? QToolButton::MenuButtonPopup : QToolButton::DelayedPopup );
841 mDefaultColor =
color;
847 mNullColorString = nullString;
857 return !mColor.isValid();
862 mLinkedColorName = name;
static const double UI_SCALE_FACTOR
UI scaling factor.
static QPixmap getThemePixmap(const QString &name, const QColor &foreColor=QColor(), const QColor &backColor=QColor(), int size=16)
Helper to get a theme icon as a pixmap.
static QCursor getThemeCursor(Cursor cursor)
Helper to get a theme cursor.
static QgsColorSchemeRegistry * colorSchemeRegistry()
Returns the application's color scheme registry, used for managing color schemes.
@ Sampler
Color/Value picker.
A custom QGIS dialog for selecting a color.
Registry of color schemes.
QList< QgsColorScheme * > schemes() const
Returns all color schemes in the registry.
@ ShowInColorButtonMenu
Show scheme in color button drop-down menu.
A color swatch grid which can be embedded into a menu.
void setBaseColor(const QColor &baseColor)
Sets the base color for the color grid.
void colorChanged(const QColor &color)
Emitted when a color has been selected from the widget.
void setColor(const QColor &color, bool emitSignals=false) override
static QColor sampleColor(QPoint point)
Samples the color on screen at the specified global point (pixel).
A color scheme which contains project specific colors set through project properties dialog.
QgsNamedColorList fetchColors(const QString &context=QString(), const QColor &baseColor=QColor()) override
Gets a list of colors from the scheme.
static QgsProject * instance()
Returns the QgsProject singleton instance.
void projectColorsChanged()
Emitted whenever the project's color scheme has been changed.
static void addRecentColor(const QColor &color)
Adds a color to the list of recent colors.
This class is a composition of two QSettings instances:
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
static QString encodeColor(const QColor &color)
static QColor colorFromMimeData(const QMimeData *data, bool &hasAlpha)
Attempts to parse mime data as a color.
static QMimeData * colorToMimeData(const QColor &color)
Creates mime data from a color.
QList< QPair< QColor, QString > > QgsNamedColorList
List of colors paired with a friendly display name identifying the color.
int scaleIconSize(int standardSize)
Scales an icon size to compensate for display pixel density, making the icon size hi-dpi friendly,...
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c