Salome HOME
Switch and Toolbox refactored: common methods are extracted into base class
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetFactory.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_WidgetFactory.cpp
5  *
6  *  Created on: Apr 3, 2014
7  *      Author: sbh
8  */
9
10 #include <ModuleBase_WidgetFactory.h>
11
12 #include <ModuleBase_Operation.h>
13 #include <ModuleBase_OperationDescription.h>
14 //#include <ModuleBase_WidgetFeatureOrAttribute.h>
15 //#include <ModuleBase_WidgetFeature.h>
16 #include <ModuleBase_WidgetEditor.h>
17 #include <ModuleBase_WidgetSwitch.h>
18 #include <ModuleBase_WidgetShapeSelector.h>
19 #include <ModuleBase_WidgetDoubleValue.h>
20 #include <ModuleBase_WidgetBoolValue.h>
21 //#include <ModuleBase_WidgetPoint2dDistance.h>
22 #include <ModuleBase_WidgetFileSelector.h>
23 #include <ModuleBase_WidgetChoice.h>
24 #include <ModuleBase_IWorkshop.h>
25 #include <ModuleBase_IModule.h>
26 #include <ModuleBase_Tools.h>
27 #include <ModuleBase_WidgetLineEdit.h>
28 #include <ModuleBase_WidgetMultiSelector.h>
29 #include <ModuleBase_WidgetLabel.h>
30 #include <ModuleBase_WidgetToolbox.h>
31 #include <ModuleBase_PageBase.h>
32 #include <ModuleBase_PageGroupBox.h>
33 #include <ModuleBase_PageWidget.h>
34
35 #include <ModelAPI_Validator.h>
36 #include <ModelAPI_Session.h>
37
38 #include <Config_Keywords.h>
39 #include <Config_WidgetAPI.h>
40
41 #include <QWidget>
42 #include <QHBoxLayout>
43 #include <QGridLayout>
44 #include <QSpinBox>
45 #include <QMetaProperty>
46 #include <QLabel>
47 #include <QPixmap>
48 #include <QGroupBox>
49 #include <QToolBox>
50
51 #ifdef _DEBUG
52 #include <QDebug>
53 #endif
54
55 #include <cfloat>
56 #include <climits>
57
58 ModuleBase_WidgetFactory::ModuleBase_WidgetFactory(const std::string& theXmlRepresentation,
59                                                    ModuleBase_IWorkshop* theWorkshop)
60     : myWorkshop(theWorkshop)
61 {
62   myWidgetApi = new Config_WidgetAPI(theXmlRepresentation);
63 }
64
65 ModuleBase_WidgetFactory::~ModuleBase_WidgetFactory()
66 {
67   delete myWidgetApi;
68 }
69
70 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage)
71 {
72   myParentId = myWidgetApi->widgetId();
73   if (!myWidgetApi->toChildWidget())
74     return;
75
76   do {  //Iterate over each node
77     std::string aWdgType = myWidgetApi->widgetType();
78     // Create PageGroup TODO: extract
79     if (myWidgetApi->isGroupBoxWidget()) {
80       //if current widget is groupbox (container) process it's children recursively
81       QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
82       ModuleBase_PageGroupBox* aPage = new ModuleBase_PageGroupBox(thePage->pageWidget());
83       aPage->setTitle(aGroupName);
84       createWidget(aPage);
85       thePage->addPageWidget(aPage);
86     } else {
87       // Create a ModelWidget
88       ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
89       if (aWidget) {
90         if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
91           thePage->addModelWidget(aWidget);
92         } else {
93           aWidget->setVisible(false);
94         }
95       }
96       // Create PagedContainer TODO: extract
97       if (myWidgetApi->isPagedWidget()) {
98         //If current widget is toolbox or switch-casebox then fetch all
99         //it's pages recursively and setup into the widget.
100         myWidgetApi->toChildWidget();
101         do {
102           QString aPageName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
103           QString aCaseId = qs(myWidgetApi->getProperty(_ID));
104           ModuleBase_PageBase* aPage = new ModuleBase_PageWidget(aWidget);
105           createWidget(aPage);
106           if (aWdgType == WDG_SWITCH || aWdgType == WDG_TOOLBOX) {
107             ModuleBase_PagedContainer* aContainer = qobject_cast<ModuleBase_PagedContainer*>(aWidget);
108             aContainer->addPage(aPage, aPageName, aCaseId);
109           }
110         } while (myWidgetApi->toNextWidget());
111       }
112     }
113   } while (myWidgetApi->toNextWidget());
114
115   thePage->alignToTop();
116 }
117
118 ModuleBase_ModelWidget* ModuleBase_WidgetFactory
119 ::createWidgetByType(const std::string& theType, QWidget* theParent)
120 {
121   ModuleBase_ModelWidget* result = NULL;
122
123   if (theType == WDG_INFO) {
124     result = new ModuleBase_WidgetLabel(theParent, myWidgetApi, myParentId);
125
126   } else if (theType == WDG_DOUBLEVALUE) {
127     result = new ModuleBase_WidgetDoubleValue(theParent, myWidgetApi, myParentId);
128
129   } else if (theType == WDG_SHAPE_SELECTOR) {
130     result =  new ModuleBase_WidgetShapeSelector(theParent, myWorkshop, myWidgetApi, myParentId);
131
132   } else if (theType == WDG_BOOLVALUE) {
133     result = new ModuleBase_WidgetBoolValue(theParent, myWidgetApi, myParentId);
134
135   } else if (theType == WDG_DOUBLEVALUE_EDITOR) {
136     result = new ModuleBase_WidgetEditor(theParent, myWidgetApi, myParentId);
137
138   } else if (theType == WDG_FILE_SELECTOR) {
139     result = new ModuleBase_WidgetFileSelector(theParent, myWidgetApi, myParentId);
140
141   } else if (theType == WDG_CHOICE) {
142     result = new ModuleBase_WidgetChoice(theParent, myWidgetApi,myParentId);
143
144   } else if (theType == WDG_STRINGVALUE) {
145     result = new ModuleBase_WidgetLineEdit(theParent, myWidgetApi,myParentId);
146
147   } else if (theType == WDG_MULTISELECTOR) {
148     result = new ModuleBase_WidgetMultiSelector(theParent, myWorkshop, myWidgetApi,myParentId);
149
150   } else if (theType == WDG_TOOLBOX) {
151     result = new ModuleBase_WidgetToolbox(theParent, myWidgetApi, myParentId);
152
153   } else if (theType == WDG_SWITCH) {
154     result = new ModuleBase_WidgetSwitch(theParent, myWidgetApi, myParentId);
155
156   } else if (theType == WDG_TOOLBOX_BOX || theType == WDG_SWITCH_CASE) {
157     // Do nothing for "box" and "case"
158     result = NULL;
159   } else {
160     result = myWorkshop->module()->createWidgetByType(theType, theParent, myWidgetApi,
161                                                       myParentId);
162 #ifdef _DEBUG
163     if (!result) {qDebug("ModuleBase_WidgetFactory::fillWidget: find bad widget type");}
164 #endif
165   }
166   if (result) {
167     myModelWidgets.append(result);
168   }
169   return result;
170 }
171
172 QString ModuleBase_WidgetFactory::qs(const std::string& theStdString)
173 {
174   return QString::fromStdString(theStdString);
175 }
176