Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / Qtx / QtxColorButton.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File:      QtxColorButton.h
23 // Author:    Sergey TELKOV
24 //
25 #ifndef QTXCOLORBUTTON_H
26 #define QTXCOLORBUTTON_H
27
28 #include "Qtx.h"
29
30 #include <QMap>
31 #include <QColor>
32 #include <QPixmap>
33 #include <QToolButton>
34
35 class QPaintDevice;
36
37 class QTX_EXPORT QtxColorButton : public QToolButton
38 {
39   Q_OBJECT
40
41 public:
42   QtxColorButton( QWidget* = 0 );
43   virtual ~QtxColorButton();
44
45   QColor        color() const;
46   void          setColor( const QColor& );
47
48   bool          eventFilter( QObject*, QEvent* );
49
50   bool          isAutoEnabled() const;
51   void          setAutoEnabled( bool );
52
53   QString       autoText() const;
54   void          setAutoText( const QString& );
55
56 signals:
57   void          clicked( QColor );
58   void          changed( QColor );
59
60 private slots:
61   void          onClicked( bool );
62   void          onToggled( bool );
63
64   void          onAboutToShow();
65   void          onAutoClicked( bool );
66   void          onDialogClicked( bool );
67
68 protected:
69   virtual void  paintEvent( QPaintEvent* );
70
71 private:
72   QList<QColor> colorsList() const;
73
74   void          updateState();
75   void          updateButton( QToolButton* );
76   QPixmap       buttonIcon( const QColor& ) const;
77   void          drawColor( QPaintDevice*, const QColor&, const int = 1 ) const;
78
79 private:
80   typedef QMap<const QToolButton*, QColor> ColorMap;
81
82 private:
83   ColorMap      myColors;
84   QToolButton*  myAutoButton;
85 };
86
87 #endif