Salome HOME
Renaming Fill in Split : Help (General index)
[modules/shaper.git] / src / ModuleBase / ModuleBase_LabelValue.h
index 69e1df97b22aeee66800efc7d45e009d89028145..bdb135143f972211f65fa9872c4bde9e6cc16572 100644 (file)
@@ -1,8 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        ModuleBase_LabelValue.h
-// Created:     30 Nov 2016
-// Author:      Natalia ERMOLAEVA
+// 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
+// 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
+//
 
 #ifndef ModuleBase_LabelValue_H
 #define ModuleBase_LabelValue_H
@@ -28,7 +41,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 +59,7 @@ protected:
   QLabel* myLabelValue; ///< A label value control
 
   double myValue; ///< A cashed value to avoid a string conversion
+  int myPrecision; ///< Precision value
 };
 
 #endif