X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParametersPlugin%2FParametersPlugin_EvalListener.h;h=96181169a88382d1112348ab5c66fcc975bf59b0;hb=1cef78af4c4328ecf99a3ced86bda38e6e82e15c;hp=b9004c3d32ff7e749f5bfc7c06c69de92884ef7d;hpb=26d4e526ae2c0ae52e880908f76ab71d1c25e9d9;p=modules%2Fshaper.git diff --git a/src/ParametersPlugin/ParametersPlugin_EvalListener.h b/src/ParametersPlugin/ParametersPlugin_EvalListener.h index b9004c3d3..96181169a 100644 --- a/src/ParametersPlugin/ParametersPlugin_EvalListener.h +++ b/src/ParametersPlugin/ParametersPlugin_EvalListener.h @@ -13,33 +13,52 @@ class ModelAPI_Attribute; class ModelAPI_Document; +class ModelAPI_ResultParameter; class ParametersPlugin_Parameter; class ParametersPlugin_PyInterp; -class PARAMETERSPLUGIN_EXPORT ParametersPlugin_EvalListener : public Events_Listener +/** + * \class ParametersPlugin_EvalListener + * \ingroup Plugins + * \brief Class which process the events from the event loop. + */ +class ParametersPlugin_EvalListener : public Events_Listener { public: - ParametersPlugin_EvalListener(); - virtual ~ParametersPlugin_EvalListener(); + PARAMETERSPLUGIN_EXPORT ParametersPlugin_EvalListener(); + PARAMETERSPLUGIN_EXPORT virtual ~ParametersPlugin_EvalListener(); - virtual void processEvent(const std::shared_ptr& theMessage); + /// Reimplemented from Events_Listener::processEvent(). + PARAMETERSPLUGIN_EXPORT virtual void processEvent(const std::shared_ptr& theMessage); protected: + /// Evaluates theExpression and returns its value. double evaluate(const std::string& theExpression, std::string& theError, const std::shared_ptr& theDocument); + /// Processes Evaluation event. void processEvaluationEvent(const std::shared_ptr& theMessage); + /// Processes ObjectRenamed event. void processObjectRenamedEvent(const std::shared_ptr& theMessage); + /// Processes ReplaceParameter event. + void processReplaceParameterEvent(const std::shared_ptr& theMessage); + /// Renames theOldName in theExpression by theNewName. std::string renameInPythonExpression(const std::string& theExpression, const std::string& theOldName, const std::string& theNewName); + /// Renames theOldName in the expression attribute of theParameter by theNewName. void renameInParameter(std::shared_ptr theParameter, const std::string& theOldName, const std::string& theNewName); + /// Renames theOldName in the text fields of theAttribute by theNewName. void renameInAttribute(std::shared_ptr theAttribute, const std::string& theOldName, const std::string& theNewName); + /// Renames theOldName in all dependents of theResultParameter by theNewName. + void renameInDependents(std::shared_ptr theResultParameter, + const std::string& theOldName, + const std::string& theNewName); private: std::shared_ptr myInterp;