Salome HOME
updated copyright message
[modules/shaper.git] / src / ModuleBase / ModuleBase_LabelValue.cpp
index 15ac0080e1c0be60201f6b0ea2d9f477ff923b39..7f9279bb7869689b29a0e07f582c461670ca0327 100644 (file)
@@ -1,18 +1,34 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        ModuleBase_IWorkshop.cpp
-// Created:     30 Nov 2016
-// Author:      Natalia ERMOLAEVA
+// Copyright (C) 2014-2023  CEA, EDF
+//
+// 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
+//
 
 #include <ModuleBase_LabelValue.h>
 #include <ModuleBase_IconFactory.h>
+#include <ModuleBase_Tools.h>
 
 #include <QHBoxLayout>
 #include <QLabel>
+#include <QLocale>
 
 ModuleBase_LabelValue::ModuleBase_LabelValue(QWidget* theParent, const QString& theText,
-                                             const QString& theToolTip, const QString& theIcon)
-: QWidget(theParent)
+                                             const QString& theToolTip, const QString& theIcon,
+                                             int thePrecision)
+: QWidget(theParent), myValue(0), myPrecision(thePrecision)
 {
   QHBoxLayout* aLayout = new QHBoxLayout(this);
   aLayout->setContentsMargins(2, 0, 0, 0);
@@ -29,6 +45,7 @@ ModuleBase_LabelValue::ModuleBase_LabelValue(QWidget* theParent, const QString&
   myLabelValue = new QLabel("", this);
   aLayout->addWidget(myLabelValue, 1);
 
+  setLocale(ModuleBase_Tools::doubleLocale());
   aLayout->addStretch(1);
 }
 
@@ -39,6 +56,8 @@ ModuleBase_LabelValue::~ModuleBase_LabelValue()
 void ModuleBase_LabelValue::setValue(const double theValue)
 {
   myValue = theValue;
-  myLabelValue->setText(QString::number(theValue));
-  myLabelValue->setToolTip(QString::number(theValue));
+
+  QString aStrValue = locale().toString(theValue, myPrecision >= 0 ? 'f' : 'g', qAbs(myPrecision));
+  myLabelValue->setText(aStrValue);
+  myLabelValue->setToolTip(aStrValue);
 }