X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_LabelValue.cpp;h=7f9279bb7869689b29a0e07f582c461670ca0327;hb=refs%2Fheads%2FV9_11_BR;hp=15ac0080e1c0be60201f6b0ea2d9f477ff923b39;hpb=045e6d867c97a06a882b5834179ccf97fcaa7cf1;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_LabelValue.cpp b/src/ModuleBase/ModuleBase_LabelValue.cpp index 15ac0080e..7f9279bb7 100644 --- a/src/ModuleBase/ModuleBase_LabelValue.cpp +++ b/src/ModuleBase/ModuleBase_LabelValue.cpp @@ -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 #include +#include #include #include +#include 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); }