X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_WidgetReader.cpp;h=4a6590c68a20446a7300d17e4da827ca498b5730;hb=3f1a42a51c7de1911c75453ff7134593d7d2c6b1;hp=c8ea412d88f56bf539534ffa743644c20b931b02;hpb=3c2d6c409d80a9e63a593e775fb2b35f2497ee1b;p=modules%2Fshaper.git diff --git a/src/Config/Config_WidgetReader.cpp b/src/Config/Config_WidgetReader.cpp index c8ea412d8..4a6590c68 100644 --- a/src/Config/Config_WidgetReader.cpp +++ b/src/Config/Config_WidgetReader.cpp @@ -45,9 +45,9 @@ std::string Config_WidgetReader::featureDescription(const std::string& theFeatur void Config_WidgetReader::processNode(xmlNodePtr theNode) { if (isNode(theNode, NODE_FEATURE, NULL)) { - myCurrentFeature = getProperty(theNode, _ID); - myWidgetCache[myCurrentFeature] = dumpNode(theNode); - myDescriptionCache[myCurrentFeature] = getProperty(theNode, FEATURE_TEXT); + std::string aFeature = getProperty(theNode, _ID); + myWidgetCache[aFeature] = dumpNode(theNode); + myDescriptionCache[aFeature] = getProperty(theNode, FEATURE_TEXT); } //Process SOURCE nodes. Config_XMLReader::processNode(theNode); @@ -94,6 +94,14 @@ std::string Config_WidgetReader::dumpNode(xmlNodePtr theNode) { std::string result = ""; if (!hasChild(theNode)) { + // feature which has the next property should be dumped itself + std::string anOwnPanel = getProperty(theNode, PROPERTY_PANEL_ID); + if (!anOwnPanel.empty()) { + xmlBufferPtr buffer = xmlBufferCreate(); + int size = xmlNodeDump(buffer, theNode->doc, theNode, 0, 0); + result = std::string((char*) (buffer->content)); + xmlBufferFree(buffer); + } return result; } //Replace all "source" nodes with content;