X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Events.h;h=a7718d1de11721eaa0106e359d2666d62bc4b776;hb=d32b7de5f466bcf611537140d7410c2b5c151c3c;hp=006b4e7dbb92e0d08e461e3046852762f6f53129;hpb=782ddee7ec183e10378487f5bdd27d4b00124f81;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Events.h b/src/ModelAPI/ModelAPI_Events.h index 006b4e7db..a7718d1de 100644 --- a/src/ModelAPI/ModelAPI_Events.h +++ b/src/ModelAPI/ModelAPI_Events.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ModelAPI_Events.h -// Created: 10 Apr 2014 -// Author: Mikhail PONIKAROV +// 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 +// #ifndef MODELAPI_EVENTS_H_ #define MODELAPI_EVENTS_H_ @@ -21,6 +35,8 @@ class ModelAPI_Document; +class ModelAPI_ResultParameter; +class GeomAPI_Pnt2d; /// Event ID that feature is created (comes with ModelAPI_ObjectUpdatedMessage) static const char * EVENT_OBJECT_CREATED = "ObjectCreated"; @@ -39,7 +55,8 @@ static const char * EVENT_PLUGIN_LOADED = "PluginLoaded"; /// The active document becomes another one static const char * EVENT_DOCUMENT_CHANGED = "CurrentDocumentChanged"; -/// Event ID that order of objects in group is changed, so, tree must be fully rectreated (movement of feature) +/// Event ID that order of objects in group is changed, +/// so, tree must be fully rectreated (movement of feature) static const char * EVENT_ORDER_UPDATED = "OrderUpdated"; /// Event ID that the sketch is prepared and all grouped messages for the solver may be flushed static const char * EVENT_UPDATE_SELECTION = "UpdateSelection"; @@ -68,6 +85,13 @@ static const char * EVENT_SOLVER_FAILED = "SolverFailed"; /// Event ID that the problem in solver disappeared static const char * EVENT_SOLVER_REPAIRED = "SolverRepaired"; +/// Event Id that sketch has DoF = 0 +static const char * EVENT_SKETCH_FULLY_CONSTRAINED = "SketchFullyConstrainted"; +/// Event Id that sketch has DoF > 0 +static const char * EVENT_SKETCH_UNDER_CONSTRAINED = "SketchUnderConstrainted"; +/// Event Id that sketch has DoF < 0 +static const char * EVENT_SKETCH_OVER_CONSTRAINED = "SketchOverConstrainted"; + /// Event ID that informs that some object has changed the stability static const char * EVENT_STABILITY_CHANGED = "StabilityChanged"; @@ -124,7 +148,7 @@ public: class MODELAPI_EXPORT ModelAPI_OrderUpdatedMessage : public Events_Message { protected: - /// Creates a message: + /// Creates a message: ModelAPI_OrderUpdatedMessage(const Events_ID theID, const void* theSender = 0); /// The virtual destructor virtual ~ModelAPI_OrderUpdatedMessage(); @@ -246,6 +270,109 @@ class ModelAPI_AttributeEvalMessage : public Events_Message MODELAPI_EXPORT void setAttribute(AttributePtr theAttribute); }; +/// Message that parameter feature expression should be evaluated: value and error producing +class ModelAPI_ParameterEvalMessage : public Events_Message +{ + FeaturePtr myParam; ///< parameters that should be evaluated + bool myIsProcessed; ///< true if results were set + /// result of processing, list of parameters in expression found + std::list > myParamsList; + double myResult; ///< result of processing, the computed value of the expression + std::string myError; ///< error of processing, empty if there is no error + + public: + /// Static. Returns EventID of the message. + MODELAPI_EXPORT static Events_ID& eventId() + { + static const char * MY_PARAMETER_EVALUATION_EVENT_ID("ParameterEvaluationRequest"); + static Events_ID anId = Events_Loop::eventByName(MY_PARAMETER_EVALUATION_EVENT_ID); + return anId; + } + + /// Useful method that creates and sends the event. + /// Returns the message, processed, with the resulting fields filled. + MODELAPI_EXPORT static std::shared_ptr + send(FeaturePtr theParameter, const void* theSender) + { + std::shared_ptr aMessage = + std::shared_ptr( + new ModelAPI_ParameterEvalMessage(eventId(), theSender)); + aMessage->setParameter(theParameter); + Events_Loop::loop()->send(aMessage); + return aMessage; + } + + /// Creates an empty message + MODELAPI_EXPORT ModelAPI_ParameterEvalMessage(const Events_ID theID, const void* theSender = 0); + /// The virtual destructor + MODELAPI_EXPORT virtual ~ModelAPI_ParameterEvalMessage(); + + /// Returns a parameter stored in the message + MODELAPI_EXPORT FeaturePtr parameter() const; + /// Sets a parameter to the message + MODELAPI_EXPORT void setParameter(FeaturePtr theParam); + /// Sets the results of processing + MODELAPI_EXPORT void setResults( + const std::list >& theParamsList, + const double theResult, const std::string& theError); + /// Returns true if the expression is processed + MODELAPI_EXPORT bool isProcessed(); + /// Returns the results of processing: list of parameters found in the expression + MODELAPI_EXPORT const std::list >& params() const; + /// Returns the expression result + MODELAPI_EXPORT const double& result() const; + /// Returns the interpreter error (empty if no error) + MODELAPI_EXPORT const std::string& error() const; +}; + + +/// Message to ask compute the positions of parameters in the expression +class ModelAPI_ComputePositionsMessage : public Events_Message +{ + std::string myExpression; ///< the expression string + std::string myParamName; ///< name of the parameter to be searched + std::list > myPositions; ///< computation result: start-end position indices + +public: + /// Static. Returns EventID of the message. + MODELAPI_EXPORT static Events_ID& eventId() + { + static const char * MY_COMPUTE_POSITIOND_EVENT_ID("ComputePositionsRequest"); + static Events_ID anId = Events_Loop::eventByName(MY_COMPUTE_POSITIOND_EVENT_ID); + return anId; + } + + /// Useful method that creates and sends the AttributeEvalMessage event + /// Returns the message, processed, with the resulting fields filled + MODELAPI_EXPORT static std::shared_ptr + send(const std::string& theExpression, const std::string& theParameter, const void* theSender) + { + std::shared_ptr aMessage = + std::shared_ptr( + new ModelAPI_ComputePositionsMessage(eventId(), theSender)); + aMessage->set(theExpression, theParameter); + Events_Loop::loop()->send(aMessage); + return aMessage; + } + + /// Creates an empty message + MODELAPI_EXPORT ModelAPI_ComputePositionsMessage( + const Events_ID theID, const void* theSender = 0); + /// The virtual destructor + MODELAPI_EXPORT virtual ~ModelAPI_ComputePositionsMessage(); + + /// Returns an expression stored in the message + MODELAPI_EXPORT const std::string& expression() const; + /// Returns a parameter name stored in the message + MODELAPI_EXPORT const std::string& parameter() const; + /// Sets an expression and parameter needed for computation + MODELAPI_EXPORT void set(const std::string& theExpression, const std::string& theParameter); + /// Sets the results of processing + MODELAPI_EXPORT void setPositions(const std::list >& thePositions); + /// Returns the results of processing: position start and end indices + MODELAPI_EXPORT const std::list >& positions() const; +}; + /// Message that the object is renamed class ModelAPI_ObjectRenamedMessage : public Events_Message { @@ -306,7 +433,8 @@ class ModelAPI_ReplaceParameterMessage : public Events_Message const void* theSender); /// Creates an empty message - MODELAPI_EXPORT ModelAPI_ReplaceParameterMessage(const Events_ID theID, const void* theSender = 0); + MODELAPI_EXPORT + ModelAPI_ReplaceParameterMessage(const Events_ID theID, const void* theSender = 0); /// The virtual destructor MODELAPI_EXPORT virtual ~ModelAPI_ReplaceParameterMessage(); @@ -340,4 +468,46 @@ private: int myDOF; }; +/// Message sent when feature or attrubute has been moved. +/// Stores the moving object/attribute, original and new positions of mouse. +class ModelAPI_ObjectMovedMessage : public Events_Message +{ + ObjectPtr myMovedObject; + AttributePtr myMovedAttribute; + + std::shared_ptr myOriginalPosition; + std::shared_ptr myCurrentPosition; + +public: + MODELAPI_EXPORT ModelAPI_ObjectMovedMessage(const void* theSender = 0); + + /// Set object which is being moved (if the message already contains attribute it will be cleared) + MODELAPI_EXPORT void setMovedObject(const ObjectPtr& theMovedObject); + /// Set attribute which is being moved (if the message already contains object it will be cleared) + MODELAPI_EXPORT void setMovedAttribute(const AttributePtr& theMovedAttribute); + + /// Return moved object + ObjectPtr movedObject() const + { return myMovedObject; } + /// Return moved attribute + AttributePtr movedAttribute() const + { return myMovedAttribute; } + + /// Set original mouse position + MODELAPI_EXPORT void setOriginalPosition(double theX, double theY); + /// Set original mouse position + MODELAPI_EXPORT void setOriginalPosition(const std::shared_ptr& thePoint); + /// Return original mouse position + const std::shared_ptr& originalPosition() const + { return myOriginalPosition; } + + /// Set current mouse position + MODELAPI_EXPORT void setCurrentPosition(double theX, double theY); + /// Set current mouse position + MODELAPI_EXPORT void setCurrentPosition(const std::shared_ptr& thePoint); + /// Return current mouse position + const std::shared_ptr& currentPosition() const + { return myCurrentPosition; } +}; + #endif