Salome HOME
Change translation
[modules/shaper.git] / src / XGUI / XGUI_TransparencyWidget.h
index 006d1297aa85749f8c2fd91b3f9b9880a49e5631..8de0d715bfe559f58e3805f113771d6521440d4a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // 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
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #ifndef XGUI_TransparencyWidget_H
@@ -25,9 +24,8 @@
 
 #include <QWidget>
 
-class QDoubleSpinBox;
 class QSlider;
-class QCheckBox;
+class QLabel;
 
 /**
 * \ingroup GUI
@@ -53,27 +51,17 @@ public:
   /// \return value
   double getValue() const;
 
-  /// Returns true if the value should be applyed immediatelly
-  /// \return state of preview check control
-  bool isPreviewNeeded() const;
-
 signals:
   void transparencyValueChanged();
-  void previewStateChanged();
 
 private slots:
-  /// Update slider value by spin value
-  /// \param theValue the new spin value
-  void onSpinValueChanged(double theValue);
-
   /// Update spin value by slider value
   /// \param theValue the new slider value
   void onSliderValueChanged(int theValue);
 
 private:
-  QDoubleSpinBox* mySpinValue; /// value control
   QSlider* mySliderValue; /// slider to select value
-  QCheckBox* myPreview; /// do preview immediatelly
+  QLabel* myValLbl;
 };
 
 #endif