X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Tools.cpp;h=84e43abf37a498af1a52a8c1a7e768d1747af2f4;hb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;hp=8ce0a36ac0bcb25349a31bd518513a43d995496f;hpb=e3cdcd3e1329acba45cd12baf064345ab94fd98b;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Tools.cpp b/src/XGUI/XGUI_Tools.cpp index 8ce0a36ac..84e43abf3 100644 --- a/src/XGUI/XGUI_Tools.cpp +++ b/src/XGUI/XGUI_Tools.cpp @@ -1,13 +1,15 @@ #include "XGUI_Tools.h" #include -#include +#include +#include #include #include #include +namespace XGUI_Tools { //****************************************************************** QString dir(const QString& path, bool isAbs) { @@ -22,7 +24,7 @@ QString dir(const QString& path, bool isAbs) QString file(const QString& path, bool withExt) { QString fPath = path; - while(!fPath.isEmpty() && (fPath[fPath.length() - 1] == '\\' || fPath[fPath.length() - 1] == '/')) + while (!fPath.isEmpty() && (fPath[fPath.length() - 1] == '\\' || fPath[fPath.length() - 1] == '/')) fPath.remove(fPath.length() - 1, 1); if (withExt) @@ -54,11 +56,29 @@ QRect makeRect(const int x1, const int y1, const int x2, const int y2) } //****************************************************************** -std::string featureInfo(boost::shared_ptr theFeature) +bool isModelObject(FeaturePtr theFeature) { - std::ostringstream aStream; + return theFeature && !theFeature->data(); +} + +//****************************************************************** +std::string featureInfo(FeaturePtr theFeature) +{ + std::ostringstream aStream; if (theFeature) aStream << theFeature.get() << " " << theFeature->getKind(); return QString(aStream.str().c_str()).toStdString(); } +//****************************************************************** +/*FeaturePtr realFeature(const FeaturePtr theFeature) + { + if (theFeature->data()) { + return theFeature; + } else { + ObjectPtr aObject = std::dynamic_pointer_cast(theFeature); + return aObject->featureRef(); + } + }*/ + +}