X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FQtx%2FQtxColorButton.cxx;h=8bb4769ad3f9ef02771a7f873be1b9fd1d758905;hb=2400f3659b65727d5a776dccd3d5dd506d755a88;hp=d792cf506761398dee87eae80d483d6568cb32ab;hpb=1c889394b028b786898a995d38c07c8f3d564837;p=modules%2Fgui.git diff --git a/src/Qtx/QtxColorButton.cxx b/src/Qtx/QtxColorButton.cxx index d792cf506..8bb4769ad 100644 --- a/src/Qtx/QtxColorButton.cxx +++ b/src/Qtx/QtxColorButton.cxx @@ -1,24 +1,22 @@ -// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE // -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. // -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. // -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + // File: QtxColorButton.cxx // Author: Sergey TELKOV // @@ -56,7 +54,7 @@ QtxColorButton::QtxColorButton( QWidget* parent ) : QToolButton( parent ) { setCheckable( false ); - setPopupMode( MenuButtonPopup ); + setPopupMode( MenuButtonPopup ); // VSR 11/10/2010 temporarily roolback from InstantPopup (regressions) QMenu* pm = new QMenu( this ); QGridLayout* grid = new QGridLayout( pm ); @@ -307,11 +305,13 @@ void QtxColorButton::paintEvent( QPaintEvent* e ) pix.fill( palette().color( backgroundRole() ) ); if ( color().isValid() ) - drawColor( &pix, color() ); + drawColor( &pix, isEnabled() ? color() : palette().mid().color(), isEnabled() ? Qt::black : palette().mid().color() ); else { QPainter pixp( &pix ); + pixp.setPen( palette().color( isEnabled() ? QPalette::WindowText : QPalette::Mid ) ); pixp.drawRect( 2, 2, pix.width() - 4, pix.height() - 4 ); - pixp.fillRect( 3, 3, pix.width() - 6, pix.height() - 6, QBrush( Qt::BDiagPattern ) ); + pixp.fillRect( 3, 3, pix.width() - 6, pix.height() - 6, + QBrush( palette().color( isEnabled() ? QPalette::WindowText : QPalette::Mid ), Qt::BDiagPattern ) ); pixp.end(); } @@ -382,13 +382,13 @@ QPixmap QtxColorButton::buttonIcon( const QColor& c ) const \param c color \param m margin */ -void QtxColorButton::drawColor( QPaintDevice* pd, const QColor& c, const int m ) const +void QtxColorButton::drawColor( QPaintDevice* pd, const QColor& c, const QColor& bc, const int m ) const { if ( !pd ) return; QPainter p( pd ); - p.setPen( Qt::black ); + p.setPen( bc ); p.fillRect( m, m, pd->width() - 2 * m - 1, pd->height() - 2 * m - 1, QBrush( c ) ); p.drawRect( m, m, pd->width() - 2 * m - 1, pd->height() - 2 * m - 1 ); p.end();