Salome HOME
Draft of transparency
[modules/shaper.git] / src / XGUI / XGUI_TransparencyWidget.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef XGUI_TransparencyWidget_H
22 #define XGUI_TransparencyWidget_H
23
24 #include "XGUI.h"
25
26 #include <QWidget>
27
28 class QDoubleSpinBox;
29 class QSlider;
30 class QCheckBox;
31
32 /**
33 * \ingroup GUI
34 * A class of a widget to chose transparency. range of values is [0, 1],
35 * where 0 - there is no transparency, 1 - the object is fully transparent.
36 */
37 class XGUI_TransparencyWidget : public QWidget
38 {
39   Q_OBJECT
40 public:
41   /// Constructor
42   /// \param theParent a parent widget for the dialog
43   /// \param theLabelText if not empty, the information label will be shown in the widget
44   XGUI_EXPORT XGUI_TransparencyWidget(QWidget* theParent,
45                                       const QString& theLabelText = QString());
46   XGUI_EXPORT virtual ~XGUI_TransparencyWidget() {};
47
48   /// Initializes the dialog with the given value.
49   /// \param theValue transparency value
50   void setValue(double theValue);
51
52   /// Returns the current transparency value.
53   /// \return value
54   double getValue() const;
55
56   /// Returns true if the value should be applyed immediatelly
57   /// \return state of preview check control
58   bool isPreviewNeeded() const;
59
60 signals:
61   void transparencyValueChanged();
62   void previewStateChanged();
63
64 private slots:
65   /// Update slider value by spin value
66   /// \param theValue the new spin value
67   void onSpinValueChanged(double theValue);
68
69   /// Update spin value by slider value
70   /// \param theValue the new slider value
71   void onSliderValueChanged(int theValue);
72
73 private:
74   QDoubleSpinBox* mySpinValue; /// value control
75   QSlider* mySliderValue; /// slider to select value
76   QCheckBox* myPreview; /// do preview immediatelly
77 };
78
79 #endif