X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFactory.cpp;h=c9561a13ba458fddc63d95e139bcaa1c7bc18fb1;hb=af851100774c4ff33b515c884abe0cd03c3f0528;hp=023c728a9820d246da78e29c69444f4a470fbdb3;hpb=31e91a8d11e03ddce87e8c2aa04695961a266a97;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFactory.cpp b/src/ModuleBase/ModuleBase_WidgetFactory.cpp index 023c728a9..c9561a13b 100644 --- a/src/ModuleBase/ModuleBase_WidgetFactory.cpp +++ b/src/ModuleBase/ModuleBase_WidgetFactory.cpp @@ -11,14 +11,11 @@ #include #include -//#include -//#include #include #include #include #include #include -//#include #include #include #include @@ -31,6 +28,7 @@ #include #include #include +#include #include #include @@ -103,13 +101,9 @@ void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage) QString aCaseId = qs(myWidgetApi->getProperty(_ID)); ModuleBase_PageBase* aPage = new ModuleBase_PageWidget(aWidget); createWidget(aPage); - QWidget* aCasePageWidget = dynamic_cast(aPage); - if (aWdgType == WDG_SWITCH) { - ModuleBase_WidgetSwitch* aSwitch = qobject_cast(aWidget); - aSwitch->addPage(aCasePageWidget, aPageName); - } else if (aWdgType == WDG_TOOLBOX) { - ModuleBase_WidgetToolbox* aToolbox = qobject_cast(aWidget); - aToolbox->addPage(aPage, aPageName, aCaseId); + if (aWdgType == WDG_SWITCH || aWdgType == WDG_TOOLBOX) { + ModuleBase_PagedContainer* aContainer = qobject_cast(aWidget); + aContainer->addPage(aPage, aPageName, aCaseId); } } while (myWidgetApi->toNextWidget()); } @@ -119,54 +113,45 @@ void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage) thePage->alignToTop(); } -ModuleBase_ModelWidget* ModuleBase_WidgetFactory -::createWidgetByType(const std::string& theType, QWidget* theParent) +ModuleBase_ModelWidget* ModuleBase_WidgetFactory::createWidgetByType(const std::string& theType, + QWidget* theParent) { ModuleBase_ModelWidget* result = NULL; if (theType == WDG_INFO) { result = new ModuleBase_WidgetLabel(theParent, myWidgetApi, myParentId); - } else if (theType == WDG_DOUBLEVALUE) { result = new ModuleBase_WidgetDoubleValue(theParent, myWidgetApi, myParentId); - } else if (theType == WDG_SHAPE_SELECTOR) { - result = new ModuleBase_WidgetShapeSelector(theParent, myWorkshop, myWidgetApi, myParentId); - + result = new ModuleBase_WidgetShapeSelector(theParent, myWorkshop, myWidgetApi, myParentId); } else if (theType == WDG_BOOLVALUE) { result = new ModuleBase_WidgetBoolValue(theParent, myWidgetApi, myParentId); - - } else if (theType == WDG_DOUBLEVALUE_EDITOR) { - result = new ModuleBase_WidgetEditor(theParent, myWidgetApi, myParentId); - + //} else if (theType == WDG_DOUBLEVALUE_EDITOR) { + // result = new ModuleBase_WidgetEditor(theParent, myWidgetApi, myParentId); } else if (theType == WDG_FILE_SELECTOR) { result = new ModuleBase_WidgetFileSelector(theParent, myWidgetApi, myParentId); - } else if (theType == WDG_CHOICE) { - result = new ModuleBase_WidgetChoice(theParent, myWidgetApi,myParentId); - + result = new ModuleBase_WidgetChoice(theParent, myWidgetApi, myParentId); } else if (theType == WDG_STRINGVALUE) { - result = new ModuleBase_WidgetLineEdit(theParent, myWidgetApi,myParentId); - + result = new ModuleBase_WidgetLineEdit(theParent, myWidgetApi, myParentId); + } else if (theType == WDG_EXPR_EDITOR) { + result = new ModuleBase_WidgetExprEditor(theParent, myWidgetApi, myParentId); } else if (theType == WDG_MULTISELECTOR) { - result = new ModuleBase_WidgetMultiSelector(theParent, myWorkshop, myWidgetApi,myParentId); - + result = new ModuleBase_WidgetMultiSelector(theParent, myWorkshop, myWidgetApi, myParentId); } else if (theType == WDG_TOOLBOX) { result = new ModuleBase_WidgetToolbox(theParent, myWidgetApi, myParentId); - } else if (theType == WDG_SWITCH) { result = new ModuleBase_WidgetSwitch(theParent, myWidgetApi, myParentId); - return result; - } else if (theType == WDG_TOOLBOX_BOX || theType == WDG_SWITCH_CASE) { // Do nothing for "box" and "case" result = NULL; } else { - result = myWorkshop->module()->createWidgetByType(theType, theParent, myWidgetApi, - myParentId); -#ifdef _DEBUG - if (!result) {qDebug("ModuleBase_WidgetFactory::fillWidget: find bad widget type");} -#endif + result = myWorkshop->module()->createWidgetByType(theType, theParent, myWidgetApi, myParentId); + #ifdef _DEBUG + if (!result) { + qDebug("ModuleBase_WidgetFactory::fillWidget: find bad widget type"); + } + #endif } if (result) { myModelWidgets.append(result);