X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_HypothesesUtils.cxx;h=585562c8f233c43684c698be5372c5c77d2e126c;hp=96f59ae8af1c8c99463bb220e114fb358b7a0377;hb=60bdcf56b18b6a2e8e6b90906a99ff43241991b8;hpb=f4cb697fcc605c3b9cdb517f9b4eef6b8532dc1a diff --git a/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx b/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx index 96f59ae8a..585562c8f 100644 --- a/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx +++ b/src/SMESHGUI/SMESHGUI_HypothesesUtils.cxx @@ -66,14 +66,7 @@ namespace SMESH{ typedef map THypCreatorMap; THypCreatorMap myHypCreatorMap; - void addMap(const THypothesisDataMap& theMap, - THypothesisDataMap& toMap) - { - THypothesisDataMap::const_iterator it; - for (it = theMap.begin(); it != theMap.end(); it++) - toMap.insert(*it); - } - + list myListOfHypothesesSets; void processHypothesisStatus(const int theHypStatus, SMESH::SMESH_Hypothesis_ptr theHyp, @@ -160,8 +153,12 @@ namespace SMESH{ bool ok = reader.parse(source); file.close(); if (ok) { - addMap(aXmlHandler->myHypothesesMap, myHypothesesMap); - addMap(aXmlHandler->myAlgorithmsMap, myAlgorithmsMap); + myHypothesesMap.insert( aXmlHandler->myHypothesesMap.begin(), + aXmlHandler->myHypothesesMap.end() ); + myAlgorithmsMap.insert( aXmlHandler->myAlgorithmsMap.begin(), + aXmlHandler->myAlgorithmsMap.end() ); + myListOfHypothesesSets.splice( myListOfHypothesesSets.begin(), + aXmlHandler->myListOfHypothesesSets ); } else { SUIT_MessageBox::error1(SMESHGUI::desktop(), @@ -215,6 +212,37 @@ namespace SMESH{ } + QStringList GetHypothesesSets() + { + QStringList aSetNameList; + + // Init list of available hypotheses, if needed + InitAvailableHypotheses(); + + list::iterator hypoSet = myListOfHypothesesSets.begin(); + for ( ; hypoSet != myListOfHypothesesSets.end(); ++hypoSet ) + { + HypothesesSet* aSet = *hypoSet; + if ( aSet && aSet->AlgoList.count() ) { + aSetNameList.append( aSet->HypoSetName ); + } + } + + return aSetNameList; + } + + HypothesesSet* GetHypothesesSet(const QString theSetName) + { + list::iterator hypoSet = myListOfHypothesesSets.begin(); + for ( ; hypoSet != myListOfHypothesesSets.end(); ++hypoSet ) + { + HypothesesSet* aSet = *hypoSet; + if ( aSet && aSet->HypoSetName == theSetName ) + return aSet; + } + return 0; + } + HypothesisData* GetHypothesisData (const char* aHypType) { HypothesisData* aHypData = 0;