Salome HOME
Restore selection in the viewer by multi selector widget activation.
[modules/shaper.git] / src / XGUI / XGUI_Tools.cpp
index 84e43abf37a498af1a52a8c1a7e768d1747af2f4..42ddf7318fdcc02e4f6521763f192386bd5dc4b9 100644 (file)
@@ -1,7 +1,12 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 #include "XGUI_Tools.h"
 
 #include <TopoDS_Shape.hxx>
 #include <ModelAPI_Object.h>
+#include <ModelAPI_Result.h>
+#include <ModelAPI_ResultParameter.h>
+#include <ModelAPI_Feature.h>
 #include <GeomAPI_Shape.h>
 
 #include <QDir>
@@ -33,12 +38,6 @@ QString file(const QString& path, bool withExt)
     return QFileInfo(fPath).completeBaseName();
 }
 
-//******************************************************************
-QString extension(const QString& path, bool full)
-{
-  return full ? QFileInfo(path).completeSuffix() : QFileInfo(path).suffix();
-}
-
 //******************************************************************
 QString addSlash(const QString& path)
 {
@@ -49,12 +48,6 @@ QString addSlash(const QString& path)
   return res;
 }
 
-//******************************************************************
-QRect makeRect(const int x1, const int y1, const int x2, const int y2)
-{
-  return QRect(qMin(x1, x2), qMin(y1, y2), qAbs(x2 - x1), qAbs(y2 - y1));
-}
-
 //******************************************************************
 bool isModelObject(FeaturePtr theFeature)
 {
@@ -81,4 +74,6 @@ std::string featureInfo(FeaturePtr theFeature)
  }
  }*/
 
+
+
 }