Salome HOME
Issue #1057: Update title of property panel on operation type change
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetChoice.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_WidgetChoice.cpp
4 // Created:     03 Sept 2014
5 // Author:      Vitaly Smetannikov
6
7 #include "ModuleBase_WidgetChoice.h"
8 #include <ModuleBase_Tools.h>
9
10 #include <ModelAPI_AttributeInteger.h>
11 #include <ModelAPI_Data.h>
12 #include <Config_WidgetAPI.h>
13
14 #include <QWidget>
15 #include <QLayout>
16 #include <QLabel>
17 #include <QComboBox>
18 #include <QButtonGroup>
19 #include <QGroupBox>
20 #include <QRadioButton>
21 #include <QToolButton>
22
23
24 ModuleBase_WidgetChoice::ModuleBase_WidgetChoice(QWidget* theParent, 
25                                                  const Config_WidgetAPI* theData, 
26                                                  const std::string& theParentId)
27     : ModuleBase_ModelWidget(theParent, theData, theParentId), myCombo(0), myButtons(0)
28 {
29   QHBoxLayout* aLayout = new QHBoxLayout(this);
30   ModuleBase_Tools::adjustMargins(aLayout);
31
32   QString aLabelText = QString::fromStdString(theData->widgetLabel());
33   QString aLabelIcon = QString::fromStdString(theData->widgetIcon());
34   std::string aTypes = theData->getProperty("string_list");
35   QStringList aList = QString(aTypes.c_str()).split(' ');
36
37   // Widget type can be combobox or radiobuttons
38   std::string aWgtType = theData->getProperty("widget_type");
39   if ((aWgtType.length() > 0) && (aWgtType == "radiobuttons")) {
40     myButtons = new QButtonGroup(this);
41     QGroupBox* aGroupBox = new QGroupBox(aLabelText, this);
42     aLayout->addWidget(aGroupBox);
43
44
45     QLayout* aBtnLayout = 0;
46     std::string aWgtDir = theData->getProperty("buttons_dir");
47     if (aWgtDir == "horizontal")
48       aBtnLayout = new QHBoxLayout(aGroupBox);
49     else 
50       aBtnLayout = new QVBoxLayout(aGroupBox);
51     ModuleBase_Tools::adjustMargins(aBtnLayout);
52
53     std::string aIcons = theData->getProperty("icons_list");
54     QStringList aIconList = QString(aIcons.c_str()).split(' ');
55     if (aIconList.length() == aList.length()) {
56       int aId = 0;
57       foreach(QString aBtnTxt, aList) {
58         QToolButton* aBtn = new QToolButton(aGroupBox);
59         aBtn->setCheckable(true);
60         aBtn->setToolTip(aBtnTxt);
61
62         QPixmap aIcon(aIconList.at(aId));
63         aBtn->setIcon(aIcon);
64         aBtn->setIconSize(aIcon.size());
65         
66         aBtnLayout->addWidget(aBtn);
67         myButtons->addButton(aBtn, aId++);
68       }
69
70     } else {
71       int aId = 0;
72       foreach(QString aBtnTxt, aList) {
73         QRadioButton* aBtn = new QRadioButton(aBtnTxt, aGroupBox);
74         aBtnLayout->addWidget(aBtn);
75         myButtons->addButton(aBtn, aId++);
76       }
77     }
78     myButtons->button(0)->setChecked(true);
79     connect(myButtons, SIGNAL(buttonClicked(int)), this, SLOT(onCurrentIndexChanged(int)));
80     connect(myButtons, SIGNAL(buttonClicked(int)), this, SIGNAL(itemSelected(int)));
81   } else {
82     myLabel = new QLabel(aLabelText, this);
83     if (!aLabelIcon.isEmpty())
84       myLabel->setPixmap(QPixmap(aLabelIcon));
85     aLayout->addWidget(myLabel);
86
87     std::string aToolstr = theData->widgetTooltip();
88     if (!aToolstr.empty()) {
89       myLabel->setToolTip(QString::fromStdString(aToolstr));
90     }
91
92     myCombo = new QComboBox(this);
93     aLayout->addWidget(myCombo, 1);
94  
95     myCombo->addItems(aList);
96
97     connect(myCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(onCurrentIndexChanged(int)));
98     connect(myCombo, SIGNAL(currentIndexChanged(int)), this, SIGNAL(itemSelected(int)));
99   }
100 }
101
102 ModuleBase_WidgetChoice::~ModuleBase_WidgetChoice()
103 {
104 }
105   
106 bool ModuleBase_WidgetChoice::storeValueCustom() const
107 {
108   DataPtr aData = myFeature->data();
109   std::shared_ptr<ModelAPI_AttributeInteger> aIntAttr = aData->integer(attributeID());
110
111   if (myCombo)
112     aIntAttr->setValue(myCombo->currentIndex());
113   else
114     aIntAttr->setValue(myButtons->checkedId());
115   updateObject(myFeature);
116   return true;
117 }
118
119 bool ModuleBase_WidgetChoice::restoreValueCustom()
120 {
121   DataPtr aData = myFeature->data();
122   std::shared_ptr<ModelAPI_AttributeInteger> aIntAttr = aData->integer(attributeID());
123
124   if (aIntAttr->value() != -1) {
125     if (myCombo) {
126       bool isBlocked = myCombo->blockSignals(true);
127       myCombo->setCurrentIndex(aIntAttr->value());
128       myCombo->blockSignals(isBlocked);
129     } else {
130       bool isBlocked = myButtons->blockSignals(true);
131       myButtons->button(aIntAttr->value())->setChecked(true);
132       myButtons->blockSignals(isBlocked);
133       emit itemSelected(aIntAttr->value());
134     }
135   }
136   return true;
137 }
138
139 bool ModuleBase_WidgetChoice::focusTo()
140 {
141   if (myCombo)
142     myCombo->setFocus();
143   else
144     return false;
145   return true;
146 }
147
148 QList<QWidget*> ModuleBase_WidgetChoice::getControls() const
149 {
150   QList<QWidget*> aControls;
151   if (myCombo)
152     aControls.append(myCombo);
153   //else {
154   //  //foreach(QAbstractButton* aBtn, myButtons->buttons())
155   //  //if (myButtons->checkedId() != -1)
156   //  //  aControls.append(myButtons->button(myButtons->checkedId()));
157   //}
158   return aControls;
159 }
160
161 void ModuleBase_WidgetChoice::onCurrentIndexChanged(int theIndex)
162 {
163   emit valuesChanged();
164   // Don't transfer focus
165   // emit focusOutWidget(this);
166 }