X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFactory.cpp;h=dec5f78ab6efc24d0e717b0b784ca7128f3e0052;hb=2413ba5e387ebc030eb89aaad917991844ae518d;hp=bedab8cb3d1856681c88eb3140678b9c0f70e926;hpb=1b93f1881c5fec599aa79707f93c84dd9c287bc0;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFactory.cpp b/src/ModuleBase/ModuleBase_WidgetFactory.cpp index bedab8cb3..dec5f78ab 100644 --- a/src/ModuleBase/ModuleBase_WidgetFactory.cpp +++ b/src/ModuleBase/ModuleBase_WidgetFactory.cpp @@ -31,6 +31,7 @@ #include #include #include +#include #include #include @@ -76,11 +77,12 @@ void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage) do { //Iterate over each node std::string aWdgType = myWidgetApi->widgetType(); // Create PageGroup TODO: extract - if (myWidgetApi->isGroupBoxWidget()) { + if (myWidgetApi->isGroupBoxWidget() || + ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) { + //if current widget is groupbox (container) process it's children recursively - QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME)); - ModuleBase_PageGroupBox* aPage = new ModuleBase_PageGroupBox(thePage->pageWidget()); - aPage->setTitle(aGroupName); + ModuleBase_PageBase* aPage = createPageByType(aWdgType, thePage->pageWidget()); + createWidget(aPage); thePage->addPageWidget(aPage); } else { @@ -118,6 +120,24 @@ void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage) thePage->alignToTop(); } +ModuleBase_PageBase* ModuleBase_WidgetFactory::createPageByType(const std::string& theType, + QWidget* theParent) +{ + ModuleBase_PageBase* aResult = NULL; + + if (theType == WDG_GROUP) { + QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME)); + ModuleBase_PageGroupBox* aPage = new ModuleBase_PageGroupBox(theParent); + aPage->setTitle(aGroupName); + aResult = aPage; + } + + if (!aResult) + aResult = ModuleBase_WidgetCreatorFactory::get()->createPageByType(theType, theParent); + + return aResult; +} + ModuleBase_ModelWidget* ModuleBase_WidgetFactory::createWidgetByType(const std::string& theType, QWidget* theParent) { @@ -159,15 +179,16 @@ ModuleBase_ModelWidget* ModuleBase_WidgetFactory::createWidgetByType(const std:: result = NULL; } else { result = myWorkshop->module()->createWidgetByType(theType, theParent, myWidgetApi, myParentId); + if (!result) + result = ModuleBase_WidgetCreatorFactory::get()->createWidgetByType(theType, theParent); #ifdef _DEBUG if (!result) { qDebug("ModuleBase_WidgetFactory::fillWidget: find bad widget type %s", theType.c_str()); } #endif } - if (result) { + if (result) myModelWidgets.append(result); - } return result; }