Salome HOME
Copyright update 2022
[modules/shaper.git] / src / ModuleBase / ModuleBase_LabelValue.cpp
1 // Copyright (C) 2014-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include <ModuleBase_LabelValue.h>
21 #include <ModuleBase_IconFactory.h>
22 #include <ModuleBase_Tools.h>
23
24 #include <QHBoxLayout>
25 #include <QLabel>
26 #include <QLocale>
27
28 ModuleBase_LabelValue::ModuleBase_LabelValue(QWidget* theParent, const QString& theText,
29                                              const QString& theToolTip, const QString& theIcon,
30                                              int thePrecision)
31 : QWidget(theParent), myValue(0), myPrecision(thePrecision)
32 {
33   QHBoxLayout* aLayout = new QHBoxLayout(this);
34   aLayout->setContentsMargins(2, 0, 0, 0);
35   aLayout->setSpacing(0);
36
37   myLabel = new QLabel(QString("%1 : ").arg(theText), this);
38   if (!theIcon.isEmpty()) {
39     myLabel->setPixmap(ModuleBase_IconFactory::loadPixmap(theIcon));
40     aLayout->setSpacing(4);
41   }
42   myLabel->setToolTip(!theToolTip.isEmpty() ? theToolTip : theText);
43   aLayout->addWidget(myLabel);
44
45   myLabelValue = new QLabel("", this);
46   aLayout->addWidget(myLabelValue, 1);
47
48   setLocale(ModuleBase_Tools::doubleLocale());
49   aLayout->addStretch(1);
50 }
51
52 ModuleBase_LabelValue::~ModuleBase_LabelValue()
53 {
54 }
55
56 void ModuleBase_LabelValue::setValue(const double theValue)
57 {
58   myValue = theValue;
59
60   QString aStrValue = locale().toString(theValue, myPrecision >= 0 ? 'f' : 'g', qAbs(myPrecision));
61   myLabelValue->setText(aStrValue);
62   myLabelValue->setToolTip(aStrValue);
63 }