X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParametersAPI%2FParametersAPI_Parameter.cpp;h=419f778f10cdbfe058e151c67f6823228bdd6438;hb=384c819a1edf4b726e3a523c1ffd2b5e6b16a4c0;hp=8781004a0c711f49df97c355fab7c5c6359435a3;hpb=483750cc09178e5fa392706e5d73820b1fe5ecfb;p=modules%2Fshaper.git diff --git a/src/ParametersAPI/ParametersAPI_Parameter.cpp b/src/ParametersAPI/ParametersAPI_Parameter.cpp index 8781004a0..419f778f1 100644 --- a/src/ParametersAPI/ParametersAPI_Parameter.cpp +++ b/src/ParametersAPI/ParametersAPI_Parameter.cpp @@ -1,14 +1,29 @@ -// Name : ParametersAPI_Parameter.cpp -// Purpose: +// 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 // -// History: -// 16/06/16 - Sergey POKHODENKO - Creation of the file -//-------------------------------------------------------------------------------------- #include "ParametersAPI_Parameter.h" //-------------------------------------------------------------------------------------- #include #include +#include +#include //-------------------------------------------------------------------------------------- ParametersAPI_Parameter::ParametersAPI_Parameter( const std::shared_ptr & theFeature) @@ -27,12 +42,29 @@ ParametersAPI_Parameter::ParametersAPI_Parameter( if (initialize()) { fillAttribute(theName, name()); fillAttribute(theExpression, expression()); - fillAttribute(theComment, comment()); + if (!theComment.empty()) + fillAttribute(theComment, comment()); execute(); } } +void ParametersAPI_Parameter::setValue(const double theValue) +{ + // convert value to the expression string + std::ostringstream aValueStr; + aValueStr<(feature()->firstResult()); + // it may raise an exception if result is invalid + return aRes->data()->real(ModelAPI_ResultParameter::VALUE())->value(); +} + ParametersAPI_Parameter::~ParametersAPI_Parameter() { } @@ -41,7 +73,7 @@ void ParametersAPI_Parameter::dump(ModelHighAPI_Dumper& theDumper) const { FeaturePtr aBase = feature(); const std::string& aDocName = theDumper.name(aBase->document()); - const std::string& aParamName = theDumper.name(aBase); + const std::string& aParamName = theDumper.name(aBase, false, true); AttributeStringPtr anExpr = aBase->string(ParametersPlugin_Parameter::EXPRESSION_ID()); AttributeStringPtr aComment = aBase->string(ParametersPlugin_Parameter::COMMENT_ID()); @@ -58,7 +90,17 @@ ParameterPtr addParameter(const std::shared_ptr & thePart, const std::string & theExpression, const std::string & theComment) { - // TODO(spo): check that thePart is not empty std::shared_ptr aFeature = thePart->addFeature(ParametersAPI_Parameter::ID()); return ParameterPtr(new ParametersAPI_Parameter(aFeature, theName, theExpression, theComment)); } + +//-------------------------------------------------------------------------------------- +void removeParameter(const std::shared_ptr & thePart, + const ParameterPtr & theParameter) +{ + FeaturePtr aParam = theParameter->feature(); + if (aParam) { + ModelAPI_ReplaceParameterMessage::send(aParam, 0); + thePart->removeFeature(aParam); + } +}