Salome HOME
Updated copyright comment
[modules/shaper.git] / src / ModuleBase / ModuleBase_LabelValue.cpp
index 46cf12aee5ca6a29a93d66cb18ac526f4b142e1f..95faabee85cb224fbd0e01fd40ad86d34391f841 100644 (file)
@@ -1,11 +1,25 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        ModuleBase_IWorkshop.cpp
-// Created:     30 Nov 2016
-// Author:      Natalia ERMOLAEVA
+// Copyright (C) 2014-2024  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>
@@ -14,7 +28,7 @@
 ModuleBase_LabelValue::ModuleBase_LabelValue(QWidget* theParent, const QString& theText,
                                              const QString& theToolTip, const QString& theIcon,
                                              int thePrecision)
-: QWidget(theParent), myPrecision(thePrecision), myValue(0)
+: QWidget(theParent), myValue(0), myPrecision(thePrecision)
 {
   QHBoxLayout* aLayout = new QHBoxLayout(this);
   aLayout->setContentsMargins(2, 0, 0, 0);
@@ -31,14 +45,7 @@ ModuleBase_LabelValue::ModuleBase_LabelValue(QWidget* theParent, const QString&
   myLabelValue = new QLabel("", this);
   aLayout->addWidget(myLabelValue, 1);
 
-  // VSR 01/07/2010: Disable thousands separator for spin box
-  // (to avoid inconsistency of double-2-string and string-2-double conversion)
-  QLocale loc;
-  loc.setNumberOptions(loc.numberOptions() |
-                       QLocale::OmitGroupSeparator |
-                       QLocale::RejectGroupSeparator);
-  setLocale(loc);
-
+  setLocale(ModuleBase_Tools::doubleLocale());
   aLayout->addStretch(1);
 }
 
@@ -52,5 +59,5 @@ void ModuleBase_LabelValue::setValue(const double theValue)
 
   QString aStrValue = locale().toString(theValue, myPrecision >= 0 ? 'f' : 'g', qAbs(myPrecision));
   myLabelValue->setText(aStrValue);
-  myLabelValue->setToolTip(QString::number(theValue));
+  myLabelValue->setToolTip(aStrValue);
 }