Salome HOME
Minor code correction
[modules/shaper.git] / src / ModuleBase / ModuleBase_LabelValue.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <ModuleBase_LabelValue.h>
22 #include <ModuleBase_IconFactory.h>
23 #include <ModuleBase_Tools.h>
24
25 #include <QHBoxLayout>
26 #include <QLabel>
27 #include <QLocale>
28
29 ModuleBase_LabelValue::ModuleBase_LabelValue(QWidget* theParent, const QString& theText,
30                                              const QString& theToolTip, const QString& theIcon,
31                                              int thePrecision)
32 : QWidget(theParent), myPrecision(thePrecision), myValue(0)
33 {
34   QHBoxLayout* aLayout = new QHBoxLayout(this);
35   aLayout->setContentsMargins(2, 0, 0, 0);
36   aLayout->setSpacing(0);
37
38   myLabel = new QLabel(QString("%1 : ").arg(theText), this);
39   if (!theIcon.isEmpty()) {
40     myLabel->setPixmap(ModuleBase_IconFactory::loadPixmap(theIcon));
41     aLayout->setSpacing(4);
42   }
43   myLabel->setToolTip(!theToolTip.isEmpty() ? theToolTip : theText);
44   aLayout->addWidget(myLabel);
45
46   myLabelValue = new QLabel("", this);
47   aLayout->addWidget(myLabelValue, 1);
48
49   setLocale(ModuleBase_Tools::doubleLocale());
50   aLayout->addStretch(1);
51 }
52
53 ModuleBase_LabelValue::~ModuleBase_LabelValue()
54 {
55 }
56
57 void ModuleBase_LabelValue::setValue(const double theValue)
58 {
59   myValue = theValue;
60
61   QString aStrValue = locale().toString(theValue, myPrecision >= 0 ? 'f' : 'g', qAbs(myPrecision));
62   myLabelValue->setText(aStrValue);
63   myLabelValue->setToolTip(aStrValue);
64 }