Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / ModuleBase / ModuleBase_LabelValue.h
index 69e1df97b22aeee66800efc7d45e009d89028145..373fd0b50e38b44a629680e1ca1fe30111927c56 100644 (file)
@@ -1,8 +1,22 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        ModuleBase_LabelValue.h
-// Created:     30 Nov 2016
-// Author:      Natalia ERMOLAEVA
+// Copyright (C) 2014-2017  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
+// 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 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
+//
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+//
 
 #ifndef ModuleBase_LabelValue_H
 #define ModuleBase_LabelValue_H
@@ -28,7 +42,8 @@ public:
   /// \param theIcon a icon value
   ModuleBase_LabelValue(QWidget* theParent, const QString& theText,
                         const QString& theToolTip = "",
-                        const QString& theIcon = "");
+                        const QString& theIcon = "",
+                        int thePrecision = -12);
 
   virtual ~ModuleBase_LabelValue();
 
@@ -45,6 +60,7 @@ protected:
   QLabel* myLabelValue; ///< A label value control
 
   double myValue; ///< A cashed value to avoid a string conversion
+  int myPrecision; ///< Precision value
 };
 
 #endif