X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Tools.cpp;h=5672163dcf06273e50eaa790bec519328784fb9b;hb=0caee92b045249b15dd6df72d52b44335e05cc3f;hp=8ce0a36ac0bcb25349a31bd518513a43d995496f;hpb=118e2ee9b8627855a172fa5ea0aa7945aab48e99;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Tools.cpp b/src/XGUI/XGUI_Tools.cpp index 8ce0a36ac..5672163dc 100644 --- a/src/XGUI/XGUI_Tools.cpp +++ b/src/XGUI/XGUI_Tools.cpp @@ -1,13 +1,16 @@ #include "XGUI_Tools.h" #include -#include +#include +#include #include #include #include +namespace XGUI_Tools +{ //****************************************************************** QString dir(const QString& path, bool isAbs) { @@ -54,7 +57,13 @@ 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) +{ + return theFeature && !theFeature->data(); +} + +//****************************************************************** +std::string featureInfo(FeaturePtr theFeature) { std::ostringstream aStream; if (theFeature) @@ -62,3 +71,16 @@ std::string featureInfo(boost::shared_ptr theFeature) return QString(aStream.str().c_str()).toStdString(); } +//****************************************************************** +/*FeaturePtr realFeature(const FeaturePtr theFeature) +{ + if (theFeature->data()) { + return theFeature; + } else { + ObjectPtr aObject = boost::dynamic_pointer_cast(theFeature); + return aObject->featureRef(); + } +}*/ + + +}