Salome HOME
Parts results and activation/deactivation management (show/hide also)
[modules/shaper.git] / src / ModelAPI / ModelAPI_Events.h
index 89be2d89985c956e785d783abde00e6b0f93ed25..741aa0a8b00465a03a8f6220a16a21c38870cc46 100644 (file)
@@ -170,21 +170,33 @@ class ModelAPI_AttributeEvalMessage : public Events_Message
   AttributePtr myAttribute;
 
  public:
-  /// Creates an empty message
-  MODELAPI_EXPORT ModelAPI_AttributeEvalMessage(const Events_ID theID, const void* theSender = 0);
-  /// The virtual destructor
-  MODELAPI_EXPORT virtual ~ModelAPI_AttributeEvalMessage();
   /// Static. Returns EventID of the message.
-  MODELAPI_EXPORT static Events_ID eventId()
+  MODELAPI_EXPORT static Events_ID& eventId()
   {
     static const char * MY_ATTRIBUTE_EVALUATION_EVENT_ID("AttributeEvaluationRequest");
-    return Events_Loop::eventByName(MY_ATTRIBUTE_EVALUATION_EVENT_ID);
+    static Events_ID anId = Events_Loop::eventByName(MY_ATTRIBUTE_EVALUATION_EVENT_ID);
+    return anId;
+  }
+
+  /// usefull method that creates and sends the AttributeEvalMessage event
+  MODELAPI_EXPORT static void send(AttributePtr theAttribute, const void* theSender)
+  {
+    std::shared_ptr<ModelAPI_AttributeEvalMessage> aMessage =
+      std::shared_ptr<ModelAPI_AttributeEvalMessage>(
+      new ModelAPI_AttributeEvalMessage(eventId(), theSender));
+    aMessage->setAttribute(theAttribute);
+    Events_Loop::loop()->send(aMessage);
   }
 
+  /// Creates an empty message
+  MODELAPI_EXPORT ModelAPI_AttributeEvalMessage(const Events_ID theID, const void* theSender = 0);
+  /// The virtual destructor
+  MODELAPI_EXPORT virtual ~ModelAPI_AttributeEvalMessage();
+
   /// Returns a document stored in the message
   MODELAPI_EXPORT AttributePtr attribute() const;
-  /// Sets a document to the message
-  MODELAPI_EXPORT void setAttribute(AttributePtr theDocument);
+  /// Sets an attribute to the message
+  MODELAPI_EXPORT void setAttribute(AttributePtr theAttribute);
 };
 
 #endif