X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Tools.cpp;h=b52be827ea67d9ce23d0112942fb36c1b75eeab2;hb=0cd070a0e4106dd57c5679d5bac26a0d0afd40b5;hp=84e43abf37a498af1a52a8c1a7e768d1747af2f4;hpb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Tools.cpp b/src/XGUI/XGUI_Tools.cpp index 84e43abf3..b52be827e 100644 --- a/src/XGUI/XGUI_Tools.cpp +++ b/src/XGUI/XGUI_Tools.cpp @@ -1,13 +1,51 @@ +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// + #include "XGUI_Tools.h" +#include "XGUI_ModuleConnector.h" +#include "XGUI_Workshop.h" + +#include "ModuleBase_IWorkshop.h" +#include "ModuleBase_Tools.h" + #include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include + #include #include +#include #include #include +#include namespace XGUI_Tools { //****************************************************************** @@ -24,7 +62,8 @@ 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) @@ -33,12 +72,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) { @@ -50,9 +83,18 @@ QString addSlash(const QString& path) } //****************************************************************** -QRect makeRect(const int x1, const int y1, const int x2, const int y2) +QString unionOfObjectNames(const QObjectPtrList& theObjects, const QString& theSeparator) { - return QRect(qMin(x1, x2), qMin(y1, y2), qAbs(x2 - x1), qAbs(y2 - y1)); + QStringList aObjectNames; + foreach (ObjectPtr aObj, theObjects) { + if (aObj->data()->isValid()) + aObjectNames << QString::fromStdString(aObj->data()->name()); + } + if (aObjectNames.count() == 0) + return QString(); + if (aObjectNames.count() == 1) + return aObjectNames.first(); + return aObjectNames.join(theSeparator); } //****************************************************************** @@ -81,4 +123,53 @@ std::string featureInfo(FeaturePtr theFeature) } }*/ + +//****************************************************************** +bool canRemoveOrRename(QWidget* theParent, const std::set& theFeatures) +{ + bool aResult = true; + std::string aNotActivatedNames; + if (!ModelAPI_Tools::allDocumentsActivated(aNotActivatedNames)) { + bool aFoundPartSetObject = ModuleBase_Tools::hasModuleDocumentFeature(theFeatures); + if (aFoundPartSetObject) { + const char* aKeyStr = "Selected objects can be used in Part documents which are not loaded: " + "%1. Whould you like to continue?"; + QMessageBox::StandardButton aRes = QMessageBox::warning(theParent, QObject::tr("Warning"), + QObject::tr(aKeyStr).arg(aNotActivatedNames.c_str()), + QMessageBox::No | QMessageBox::Yes, QMessageBox::No); + aResult = aRes == QMessageBox::Yes; + } + } + return aResult; +} + +//****************************************************************** +bool canRename(const ObjectPtr& theObject, const QString& theName) +{ + if (std::dynamic_pointer_cast(theObject).get()) { + double aValue; + ResultParameterPtr aParam; + if (ModelAPI_Tools::findVariable(theObject->document(), + FeaturePtr(), qPrintable(theName), aValue, aParam)) { + const char* aKeyStr = "Selected parameter can not be renamed to: %1. " + "There is a parameter with the same name. Its value is: %2."; + QString aErrMsg(QObject::tr(aKeyStr).arg(qPrintable(theName)).arg(aValue)); + // We can not use here a dialog box for message - + // it will crash editing process in ObjectBrowser + Events_InfoMessage("XGUI_Tools", aErrMsg.toStdString()).send(); + return false; + } + } + + return true; +} + +//************************************************************** + +XGUI_Workshop* workshop(ModuleBase_IWorkshop* theWorkshop) +{ + XGUI_ModuleConnector* aConnector = dynamic_cast(theWorkshop); + return aConnector ? aConnector->workshop() : 0; +} + }