[bugfix] Restore color picker from layer styling panel

Fixes #17721

Successfully tested on Windows 10 and Linux with Qt 5.10
This commit is contained in:
Alessandro Pasotti 2018-02-15 15:24:50 +01:00
parent 19ab0c86ec
commit 948452b78a
2 changed files with 24 additions and 15 deletions

View File

@ -239,10 +239,7 @@ void QgsColorButton::mouseMoveEvent( QMouseEvent *e )
QScreen *screen = findScreenAt( e->globalPos() );
if ( screen )
{
QPixmap snappedPixmap = screen->grabWindow( QApplication::desktop()->winId(), e->globalPos().x(), e->globalPos().y(), 1, 1 );
QImage snappedImage = snappedPixmap.toImage();
QColor hoverColor = snappedImage.pixel( 0, 0 );
setButtonBackground( hoverColor );
setButtonBackground( sampleColor( e->globalPos() ) );
}
}
e->accept();
@ -286,26 +283,22 @@ void QgsColorButton::mouseReleaseEvent( QMouseEvent *e )
QToolButton::mouseReleaseEvent( e );
}
void QgsColorButton::stopPicking( QPointF eventPos, bool sampleColor )
void QgsColorButton::stopPicking( QPoint eventPos, bool samplingColor )
{
//release mouse and keyboard, and reset cursor
releaseMouse();
releaseKeyboard();
unsetCursor();
QgsApplication::restoreOverrideCursor();
setMouseTracking( false );
mPickingColor = false;
if ( !sampleColor )
if ( !samplingColor )
{
//not sampling color, nothing more to do
return;
}
//grab snapshot of pixel under mouse cursor
QPixmap snappedPixmap = QApplication::desktop()->screen()->grab( QRect( eventPos.x(), eventPos.y(), 1, 1 ) );
QImage snappedImage = snappedPixmap.toImage();
//extract color from pixel and set color
setColor( snappedImage.pixel( 0, 0 ) );
setColor( sampleColor( eventPos ) );
addRecentColor( mColor );
}
@ -356,6 +349,19 @@ void QgsColorButton::dropEvent( QDropEvent *e )
}
}
QColor QgsColorButton::sampleColor( QPoint point ) const
{
QScreen *screen = findScreenAt( point );
if ( ! screen )
{
return QColor();
}
QPixmap snappedPixmap = screen->grabWindow( QApplication::desktop()->winId(), point.x(), point.y(), 1, 1 );
QImage snappedImage = snappedPixmap.toImage();
return snappedImage.pixel( 0, 0 );
}
QScreen *QgsColorButton::findScreenAt( QPoint pos )
{
for ( QScreen *screen : QGuiApplication::screens() )
@ -680,7 +686,7 @@ void QgsColorButton::pasteColor()
void QgsColorButton::activatePicker()
{
//activate picker color
setCursor( QgsApplication::getThemeCursor( QgsApplication::Cursor::Sampler ) );
QApplication::setOverrideCursor( QgsApplication::getThemeCursor( QgsApplication::Cursor::Sampler ) );
grabMouse();
grabKeyboard();
mPickingColor = true;

View File

@ -399,6 +399,9 @@ class GUI_EXPORT QgsColorButton : public QToolButton
private:
QColor sampleColor( QPoint point ) const;
static QScreen *findScreenAt( QPoint pos );
Behavior mBehavior = QgsColorButton::ShowDialog;
QString mColorDialogTitle;
@ -436,10 +439,10 @@ class GUI_EXPORT QgsColorButton : public QToolButton
/**
* Ends a color picking operation
* \param eventPos global position of pixel to sample color from
* \param sampleColor set to true to actually sample the color, false to just cancel
* \param samplingColor set to true to actually sample the color, false to just cancel
* the color picking operation
*/
void stopPicking( QPointF eventPos, bool sampleColor = true );
void stopPicking( QPoint eventPos, bool samplingColor = true );
/**
* Create a color icon for display in the drop-down menu