Salome HOME
Issue #2155 Trim removes multi-rotation constraint, undo leads to wrong DOF
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Tools.cpp
index 5a65fc1dabe8cd3b01adebced56f97ab49d88d7e..c4299c30e248f0bed5cc410e54853d33501addfe 100644 (file)
@@ -20,31 +20,60 @@ std::list<std::string> ExchangePlugin_Tools::split(const std::string& theString,
 
 std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& theType)
 {
-  if (theType == "Vertices")
+  if (theType == "Vertices" || theType == "vertex")
     return "vertex";
-  else if (theType == "Edges")
+  else if (theType == "Edges" || theType == "edge")
     return "edge";
-  else if (theType == "Faces")
+  else if (theType == "Faces" || theType == "face")
     return "face";
-  else if (theType == "Solids")
+  else if (theType == "Solids" || theType == "solid")
     return "solid";
+  else if (theType == "Part" || theType == "part")
+    return "part";
 
   return std::string();
 }
 
 std::string ExchangePlugin_Tools::xaoDimension2selectionType(const std::string& theDimension)
 {
-//  return theDimension;
-
   if (theDimension == "vertex")
-    return "Vertices";
+    return "vertex";
   else if (theDimension == "edge")
-    return "Edges";
+    return "edge";
   else if (theDimension == "face")
-    return "Faces";
+    return "face";
   else if (theDimension == "solid")
-    return "Solids";
+    return "solid";
 
   return std::string();
 }
 
+
+std::string ExchangePlugin_Tools::valuesType2xaoType(
+  const ModelAPI_AttributeTables::ValueType& theType)
+{
+  switch(theType) {
+  case ModelAPI_AttributeTables::BOOLEAN:
+    return "boolean";
+  case ModelAPI_AttributeTables::INTEGER:
+    return "integer";
+  case ModelAPI_AttributeTables::DOUBLE:
+    return "double";
+  case ModelAPI_AttributeTables::STRING:
+    return "string";
+  }
+  return "";
+}
+
+ModelAPI_AttributeTables::ValueType ExchangePlugin_Tools::xaoType2valuesType(std::string theType)
+{
+  if (theType == "boolean")
+    return ModelAPI_AttributeTables::BOOLEAN;
+  if (theType == "integer")
+    return ModelAPI_AttributeTables::INTEGER;
+  if (theType == "double")
+    return ModelAPI_AttributeTables::DOUBLE;
+  if (theType == "string")
+    return ModelAPI_AttributeTables::STRING;
+  return ModelAPI_AttributeTables::DOUBLE;
+}