X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Tools.cpp;h=26672cd89bc4cdf295c2152632fe497bdb6c8048;hb=be7d83df0061448606f62fcb370f59e2617557d1;hp=bc462b8000a58e9fc30ff3434adc5824b646a8ce;hpb=e1f8fb3cfc1ee565db16fbbd9fe6f65121c4577c;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Tools.cpp b/src/XGUI/XGUI_Tools.cpp index bc462b800..26672cd89 100644 --- a/src/XGUI/XGUI_Tools.cpp +++ b/src/XGUI/XGUI_Tools.cpp @@ -1,38 +1,17 @@ -#include "XGUI_Tools.h" - -#include - -//****************************************************************** -QString library(const QString& str) -{ - QString path = dir(str, false); - QString name = file(str, false); - QString ext = extension(str); +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> -#ifndef WIN32 - if ( !name.startsWith( "lib" ) ) - name = QString( "lib" ) + name; -#endif - -#ifdef WIN32 - QString libExt("dll"); -#else - QString libExt( "so" ); -#endif - - if (ext.toLower() != QString("so") && ext.toLower() != QString("dll")) { - if (!name.isEmpty() && !ext.isEmpty()) - name += QString("."); - name += ext; - } +#include "XGUI_Tools.h" - ext = libExt; +#include +#include +#include - QString fileName = addSlash(path) + name + QString(".") + ext; +#include - return fileName; -} +#include +#include +namespace XGUI_Tools { //****************************************************************** QString dir(const QString& path, bool isAbs) { @@ -47,7 +26,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) @@ -56,12 +35,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) { @@ -73,7 +46,29 @@ QString addSlash(const QString& path) } //****************************************************************** -QRect makeRect(const int x1, const int y1, const int x2, const int y2) +bool isModelObject(FeaturePtr theFeature) { - return QRect(qMin(x1, x2), qMin(y1, y2), qAbs(x2 - x1), qAbs(y2 - y1)); + 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(); + } + }*/ + }