1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include <ModuleBase_LabelValue.h>
22 #include <ModuleBase_IconFactory.h>
23 #include <ModuleBase_Tools.h>
25 #include <QHBoxLayout>
29 ModuleBase_LabelValue::ModuleBase_LabelValue(QWidget* theParent, const QString& theText,
30 const QString& theToolTip, const QString& theIcon,
32 : QWidget(theParent), myPrecision(thePrecision), myValue(0)
34 QHBoxLayout* aLayout = new QHBoxLayout(this);
35 aLayout->setContentsMargins(2, 0, 0, 0);
36 aLayout->setSpacing(0);
38 myLabel = new QLabel(QString("%1 : ").arg(theText), this);
39 if (!theIcon.isEmpty()) {
40 myLabel->setPixmap(ModuleBase_IconFactory::loadPixmap(theIcon));
41 aLayout->setSpacing(4);
43 myLabel->setToolTip(!theToolTip.isEmpty() ? theToolTip : theText);
44 aLayout->addWidget(myLabel);
46 myLabelValue = new QLabel("", this);
47 aLayout->addWidget(myLabelValue, 1);
49 setLocale(ModuleBase_Tools::doubleLocale());
50 aLayout->addStretch(1);
53 ModuleBase_LabelValue::~ModuleBase_LabelValue()
57 void ModuleBase_LabelValue::setValue(const double theValue)
61 QString aStrValue = locale().toString(theValue, myPrecision >= 0 ? 'f' : 'g', qAbs(myPrecision));
62 myLabelValue->setText(aStrValue);
63 myLabelValue->setToolTip(aStrValue);