Salome HOME
Provide a Choice control
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetChoice.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_WidgetChoice.h"
22 #include "ModuleBase_Tools.h"
23 #include "ModuleBase_IconFactory.h"
24 #include "ModuleBase_ChoiceCtrl.h"
25
26 #include <ModelAPI_AttributeInteger.h>
27 #include <ModelAPI_AttributeStringArray.h>
28 #include <ModelAPI_Data.h>
29 #include <Config_WidgetAPI.h>
30 #include <Config_PropManager.h>
31
32 #include <QWidget>
33 #include <QLayout>
34 #include <QLabel>
35 #include <QComboBox>
36 #include <QButtonGroup>
37 #include <QGroupBox>
38 #include <QRadioButton>
39 #include <QToolButton>
40
41 ModuleBase_WidgetChoice::ModuleBase_WidgetChoice(QWidget* theParent,
42                                                  const Config_WidgetAPI* theData)
43 : ModuleBase_ModelWidget(theParent, theData)//, myCombo(0), myButtons(0)
44 {
45   QString aLabelText = translate(theData->widgetLabel());
46   QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
47   std::string aTypes = theData->getProperty("string_list");
48   QStringList aList;
49
50   foreach(QString aType, QString(aTypes.c_str()).split(' ')) {
51     aList.append(translate(aType.toStdString()));
52   }
53   if (aTypes.empty()) {
54     myStringListAttribute = theData->getProperty("string_list_attribute");
55     if (!myStringListAttribute.empty())
56       aList.clear();
57   }
58   if (theData->getBooleanAttribute("use_in_title", false))
59     myButtonTitles = aList;
60
61   bool aHasDefaultValue;
62   int aDefaultVal = QString::fromStdString(getDefaultValue()).toInt(&aHasDefaultValue);
63
64   // Widget type can be combobox or radiobuttons
65   std::string aWgtType = theData->getProperty("widget_type");
66   std::string aIcons = theData->getProperty("icons_list");
67   QStringList aIconList = QString(aIcons.c_str()).split(' ');
68
69   std::string aWgtDir = theData->getProperty("buttons_dir");
70
71   QHBoxLayout* aLayout = new QHBoxLayout(this);
72   myChoiceCtrl =  new ModuleBase_ChoiceCtrl(this, aList, aIconList,
73     (aWgtType == "radiobuttons")? ModuleBase_ChoiceCtrl::RadioButtons : ModuleBase_ChoiceCtrl::ComboBox,
74     (aWgtDir == "horizontal")? Qt::Horizontal : Qt::Vertical);
75   myChoiceCtrl->setLabel(aLabelText);
76
77   if (!aLabelIcon.isEmpty())
78     myChoiceCtrl->setLabelIcon(aLabelIcon);
79
80   connect(myChoiceCtrl, SIGNAL(valueChanged(int)), this, SLOT(onCurrentIndexChanged(int)));
81
82   int aCheckedId = aHasDefaultValue ? aDefaultVal : 0;
83   myChoiceCtrl->setValue(aCheckedId);
84   aLayout->addWidget(myChoiceCtrl);
85 }
86
87 ModuleBase_WidgetChoice::~ModuleBase_WidgetChoice()
88 {
89 }
90
91 bool ModuleBase_WidgetChoice::storeValueCustom()
92 {
93   DataPtr aData = myFeature->data();
94   std::shared_ptr<ModelAPI_AttributeInteger> aIntAttr = aData->integer(attributeID());
95
96   aIntAttr->setValue(myChoiceCtrl->value());
97   updateObject(myFeature);
98   return true;
99 }
100
101 bool ModuleBase_WidgetChoice::restoreValueCustom()
102 {
103   DataPtr aData = myFeature->data();
104   std::shared_ptr<ModelAPI_AttributeInteger> aIntAttr = aData->integer(attributeID());
105
106   if (aIntAttr->value() != -1) {
107     bool isBlocked = myChoiceCtrl->blockSignals(true);
108     if (!myStringListAttribute.empty()) {
109       AttributeStringArrayPtr aStrAttr = aData->stringArray(myStringListAttribute);
110       QStringList aChoiceList;
111       if (aStrAttr) {
112         for (int i = 0; i < aStrAttr->size(); i++) {
113           aChoiceList << aStrAttr->value(i).c_str();
114         }
115         myChoiceCtrl->setChoiceList(aChoiceList);
116       }
117     }
118     if (aIntAttr->isInitialized())
119       myChoiceCtrl->setValue(aIntAttr->value());
120     else {
121       bool aHasDefaultValue;
122       int aDefaultVal = QString::fromStdString(getDefaultValue()).toInt(&aHasDefaultValue);
123       myChoiceCtrl->setValue(aHasDefaultValue ? aDefaultVal : 0);
124     }
125     myChoiceCtrl->blockSignals(isBlocked);
126     emit itemSelected(this, aIntAttr->value());
127   }
128   return true;
129 }
130
131 bool ModuleBase_WidgetChoice::focusTo()
132 {
133   return myChoiceCtrl->focusTo();
134 }
135
136 QList<QWidget*> ModuleBase_WidgetChoice::getControls() const
137 {
138   return myChoiceCtrl->getControls();
139 }
140
141 QString ModuleBase_WidgetChoice::getPropertyPanelTitle(int theIndex)
142 {
143   QString aTitle;
144   if (myButtonTitles.length() > theIndex)
145     aTitle = myButtonTitles[theIndex];
146   return aTitle;
147 }
148
149 void ModuleBase_WidgetChoice::onCurrentIndexChanged(int theIndex)
150 {
151   emit valuesChanged();
152   // Don't transfer focus
153   // emit focusOutWidget(this);
154
155   emit itemSelected(this, theIndex);
156 }