Salome HOME
First implementation of automatic mode of regions creation in the calculation case...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ColorWidget.h
1 // Copyright (C) 2007-2013  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
23 #ifndef HYDROGUI_COLORWIDGET_H
24 #define HYDROGUI_COLORWIDGET_H
25
26 #include <QFrame>
27
28 /** \class HYDROGUI_ColorWidget
29  * \brief The class representing widget for color selection
30  */
31 class HYDROGUI_ColorWidget : public QFrame
32 {
33   Q_OBJECT
34
35 public:
36   /** Constructor 
37    * \param parent - parent widget
38    */
39   HYDROGUI_ColorWidget( QWidget* parent );
40   /** Destructor */
41   virtual ~HYDROGUI_ColorWidget();
42
43   /** \return color value */
44   QColor color() const;
45   /** Sets color value */
46   void   setColor( const QColor& );
47   /** Resets the default color value */
48   void   resetColor();
49   /** \return color value in the integer form */
50   //int    intColor() const;
51   /** Sets color value in the integer form */
52   //void   setColor( const int );
53   /** Sets a randomized color as current value */
54   //void   setRandColor();
55
56 signals:
57   /** is emitted when color is changed */
58   void colorChanged( const QColor& );
59
60 protected:
61   /** mouse double click event handler, activates the standard color dialog for color choice */
62   virtual void mouseDoubleClickEvent( QMouseEvent* );
63 };
64
65 #endif