Salome HOME
Issue #3222: 1d fillet
[modules/shaper.git] / src / ModelAPI / ModelAPI_Events.h
1 // Copyright (C) 2014-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef MODELAPI_EVENTS_H_
21 #define MODELAPI_EVENTS_H_
22
23 #include <ModelAPI.h>
24 #include <ModelAPI_Object.h>
25 #include <ModelAPI_Feature.h>
26 #include <ModelAPI_Attribute.h>
27 #include <Events_MessageGroup.h>
28 #include <Events_Loop.h>
29
30 #include <memory>
31 #include <string>
32 #include <set>
33 #include <map>
34
35
36 class ModelAPI_Document;
37 class ModelAPI_ResultParameter;
38 class GeomAPI_Pnt2d;
39 class GeomAPI_Shape;
40
41 #if defined __GNUC__ || defined __clang__
42 #define MAYBE_UNUSED __attribute__((unused))
43 #else
44 #define MAYBE_UNUSED
45 #endif
46
47 /// Event ID that feature is created (comes with ModelAPI_ObjectUpdatedMessage)
48 MAYBE_UNUSED static const char * EVENT_OBJECT_CREATED = "ObjectCreated";
49 /// Event ID that data of feature is updated (comes with Model_ObjectUpdatedMessage)
50 MAYBE_UNUSED static const char * EVENT_OBJECT_UPDATED = "ObjectUpdated";
51 /// Event ID that data of feature is deleted (comes with Model_ObjectDeletedMessage)
52 MAYBE_UNUSED static const char * EVENT_OBJECT_DELETED = "ObjectDeleted";
53 /// Event ID that name of feature is changed (comes with Model_ObjectRenamedMessage)
54 MAYBE_UNUSED static const char * EVENT_OBJECT_RENAMED = "ObjectRenamed";
55 /// Event ID that data of feature is updated (comes with ModelAPI_ObjectUpdatedMessage)
56 MAYBE_UNUSED static const char * EVENT_OBJECT_MOVED = "ObjectsMoved";
57 /// Event ID that visualization must be redisplayed (comes with ModelAPI_ObjectUpdatedMessage)
58 MAYBE_UNUSED static const char * EVENT_OBJECT_TO_REDISPLAY = "ObjectsToRedisplay";
59 /// Event ID that plugin is loaded (comes with ModelAPI_ObjectUpdatedMessage)
60 MAYBE_UNUSED static const char * EVENT_PLUGIN_LOADED = "PluginLoaded";
61 /// The active document becomes another one
62 MAYBE_UNUSED static const char * EVENT_DOCUMENT_CHANGED = "CurrentDocumentChanged";
63
64 /// Event ID that order of objects in group is changed,
65 /// so, tree must be fully recreated (movement of feature)
66 MAYBE_UNUSED static const char * EVENT_ORDER_UPDATED = "OrderUpdated";
67 /// Event ID that the sketch is prepared and all grouped messages for the solver may be flushed
68 MAYBE_UNUSED static const char * EVENT_UPDATE_SELECTION = "UpdateSelection";
69
70 /// Request for the enabled/disabled actions behavior for some specific features
71 MAYBE_UNUSED static const char * EVENT_FEATURE_STATE_REQUEST = "FeatureStateRequest";
72 /// Reply for the enabled/disabled actions behavior for some specific features
73 MAYBE_UNUSED static const char * EVENT_FEATURE_STATE_RESPONSE = "FeatureStateResponse";
74
75 /// To block the viewer updates
76 MAYBE_UNUSED static const char * EVENT_UPDATE_VIEWER_BLOCKED = "UpdateViewerBlocked";
77 /// To unblock the viewer updates
78 MAYBE_UNUSED static const char * EVENT_UPDATE_VIEWER_UNBLOCKED = "UpdateViewerUnblocked";
79
80 /// To inform that there is an empty presentation in the viewer
81 MAYBE_UNUSED static const char * EVENT_EMPTY_AIS_PRESENTATION = "EmptyAISPresentation";
82 /// To inform that there is an empty operation for presentation in the viewer
83 MAYBE_UNUSED static const char * EVENT_EMPTY_OPERATION_PRESENTATION = "EmptyOperationPresentation";
84 /// To block preview
85 MAYBE_UNUSED static const char * EVENT_PREVIEW_BLOCKED = "PreviewBlocked";
86 /// To preview the current feature in the viewer (to compute the result)
87 MAYBE_UNUSED static const char * EVENT_PREVIEW_REQUESTED = "PreviewRequested";
88 /// To block automatic recomputation of any feature (by the GUI button press)
89 MAYBE_UNUSED static const char * EVENT_AUTOMATIC_RECOMPUTATION_DISABLE
90                                                          = "DisableAutomaticRecomputation";
91 /// To unblock block automatic recomputation (default state: the GUI button unpressed)
92 MAYBE_UNUSED static const char * EVENT_AUTOMATIC_RECOMPUTATION_ENABLE
93                                                          = "EnableAutomaticRecomputation";
94
95 /// Event ID that solver has conflicting constraints (comes with ModelAPI_SolverFailedMessage)
96 MAYBE_UNUSED static const char * EVENT_SOLVER_FAILED = "SolverFailed";
97 /// Event ID that the problem in solver disappeared
98 MAYBE_UNUSED static const char * EVENT_SOLVER_REPAIRED = "SolverRepaired";
99
100 /// Event Id that sketch has DoF = 0
101 MAYBE_UNUSED static const char * EVENT_SKETCH_FULLY_CONSTRAINED = "SketchFullyConstrainted";
102 /// Event Id that sketch has DoF > 0
103 MAYBE_UNUSED static const char * EVENT_SKETCH_UNDER_CONSTRAINED = "SketchUnderConstrainted";
104 /// Event Id that sketch has DoF < 0
105 MAYBE_UNUSED static const char * EVENT_SKETCH_OVER_CONSTRAINED  = "SketchOverConstrainted";
106
107 /// Event ID that informs that some object has changed the stability
108 MAYBE_UNUSED static const char * EVENT_STABILITY_CHANGED = "StabilityChanged";
109
110 /// Event ID that the sketch is prepared and all grouped messages for the solver may be flushed
111 MAYBE_UNUSED static const char * EVENT_SKETCH_PREPARED = "SketchPrepared";
112
113 /// Event ID that provides a request for list of non-fixed objects necessary for DoF = 0
114 MAYBE_UNUSED static const char * EVENT_GET_DOF_OBJECTS = "GetDoFObjects";
115
116 /// Event ID that provides a request for list of non-fixed objects necessary for DoF = 0
117 MAYBE_UNUSED static const char * EVENT_DOF_OBJECTS = "DoFObjects";
118
119 /// Event ID that requests updates visual attributes for presentations
120 MAYBE_UNUSED static const char * EVENT_VISUAL_ATTRIBUTES = "UpdateVisualAttributes";
121
122
123 /// Event ID that 1D-fillet failed (comes with ModelAPI_Fillet1DFailedMessage)
124 static const char * EVENT_1DFILLET_FAILED = "1DFilletFailed";
125
126 /// Message that feature was changed (used for Object Browser update): moved, updated and deleted
127 class MODELAPI_EXPORT ModelAPI_ObjectUpdatedMessage : public Events_MessageGroup
128 {
129  protected:
130   /// Creates an empty message
131   ModelAPI_ObjectUpdatedMessage(const Events_ID theID, const void* theSender = 0);
132   /// The virtual destructor
133   virtual ~ModelAPI_ObjectUpdatedMessage();
134
135  public:
136   /// Returns the feature that has been updated
137   virtual const std::set<ObjectPtr>& objects() const = 0;
138
139   //! Creates a new empty group (to store it in the loop before flush)
140   virtual std::shared_ptr<Events_MessageGroup> newEmpty() = 0;
141
142   //! Allows to join the given message with the current one
143   virtual void Join(const std::shared_ptr<Events_MessageGroup>& theJoined) = 0;
144 };
145
146 /// Message that feature was deleted (used for Object Browser update)
147 class MODELAPI_EXPORT ModelAPI_ObjectDeletedMessage : public Events_MessageGroup
148 {
149 protected:
150   /// Creates an empty message
151   ModelAPI_ObjectDeletedMessage(const Events_ID theID, const void* theSender = 0);
152   /// The virtual destructor
153   virtual ~ModelAPI_ObjectDeletedMessage();
154
155 public:
156   /// Returns the groups where the objects were deleted
157   virtual const std::list<std::pair<std::shared_ptr<ModelAPI_Document>, std::string> >&
158     groups() const = 0;
159
160   /// Creates the new empty message of this kind
161   virtual std::shared_ptr<Events_MessageGroup> newEmpty() = 0;
162
163   /// Returns the identifier of the kind of a message
164   virtual const Events_ID messageId() = 0;
165
166   /// Appends to this message the given one.
167   virtual void Join(const std::shared_ptr<Events_MessageGroup>& theJoined) = 0;
168 };
169
170 /// Message that order changed (used for Object Browser update)
171 class MODELAPI_EXPORT ModelAPI_OrderUpdatedMessage : public Events_Message
172 {
173 protected:
174   /// Creates a message:
175   ModelAPI_OrderUpdatedMessage(const Events_ID theID, const void* theSender = 0);
176   /// The virtual destructor
177   virtual ~ModelAPI_OrderUpdatedMessage();
178
179 public:
180   /// Returns the document that has been updated
181   virtual std::shared_ptr<ModelAPI_Feature> reordered() = 0;
182
183   /// Returns the identifier of the kind of a message
184   virtual const Events_ID messageId() = 0;
185 };
186
187 /// Allows to create ModelAPI messages
188 class MODELAPI_EXPORT ModelAPI_EventCreator
189 {
190 public:
191   virtual ~ModelAPI_EventCreator() {}
192
193   /// creates created, updated or moved messages and sends to the loop
194   virtual void sendUpdated(const ObjectPtr& theObject, const Events_ID& theEvent,
195                            const bool isGroupped = true) const = 0;
196   /// creates created, updated or moved messages with the objects collection and sends to the loop
197   virtual void sendUpdated(const std::list<ObjectPtr>& theObjects, const Events_ID& theEvent,
198     const bool isGroupped = true) const = 0;
199   /// creates deleted message and sends to the loop
200   virtual void sendDeleted(const std::shared_ptr<ModelAPI_Document>& theDoc,
201                            const std::string& theGroup) const = 0;
202   /// creates reordered message and sends to the loop
203   virtual void sendReordered(const std::shared_ptr<ModelAPI_Feature>& theReordered) const = 0;
204
205   /// returns the creator instance
206   static const ModelAPI_EventCreator* get();
207
208   /// sets the creator instance
209   static void set(const ModelAPI_EventCreator* theCreator);
210 };
211
212 /// Contains the state information about the feature: is it enabled or disabled.
213 class ModelAPI_FeatureStateMessage : public Events_Message
214 {
215 public:
216   /// Creates an empty message
217   MODELAPI_EXPORT ModelAPI_FeatureStateMessage(const Events_ID theID, const void* theSender = 0);
218   /// The virtual destructor
219   MODELAPI_EXPORT virtual ~ModelAPI_FeatureStateMessage();
220
221   /// Returns the feature this message is related to
222   MODELAPI_EXPORT std::shared_ptr<ModelAPI_Feature> feature() const;
223   /// Stores the feature this message is related to
224   MODELAPI_EXPORT void setFeature(std::shared_ptr<ModelAPI_Feature>& theFeature);
225   // For response
226   /// Returns true if feature has specific state
227   MODELAPI_EXPORT bool hasState(const std::string& theFeatureId) const;
228   /// Returns true if feature is enabled
229   MODELAPI_EXPORT bool state(const  std::string& theFeatureId, bool theDefault = false) const;
230   /// Stores the feature state
231   MODELAPI_EXPORT void setState(const std::string& theFeatureId, bool theValue);
232   /// Returns all feature IDs with states
233   MODELAPI_EXPORT std::list<std::string> features() const;
234
235  private:
236   /// For Request
237   std::shared_ptr<ModelAPI_Feature> myCurrentFeature;
238   /// For response
239   std::map<std::string, bool> myFeatureState;
240 };
241
242 /// Message that document (Part, PartSet) was created
243 class ModelAPI_DocumentCreatedMessage : public Events_Message
244 {
245   DocumentPtr myDocument;
246
247  public:
248   /// Creates an empty message
249   MODELAPI_EXPORT ModelAPI_DocumentCreatedMessage(const Events_ID theID, const void* theSender = 0);
250   /// The virtual destructor
251   MODELAPI_EXPORT virtual ~ModelAPI_DocumentCreatedMessage();
252   /// Static. Returns EventID of the message.
253   MODELAPI_EXPORT static Events_ID eventId()
254   {
255     static const char * MY_DOCUMENT_CREATED_EVENT_ID("DocumentCreated");
256     return Events_Loop::eventByName(MY_DOCUMENT_CREATED_EVENT_ID);
257   }
258
259   /// Returns a document stored in the message
260   MODELAPI_EXPORT DocumentPtr document() const;
261   /// Sets a document to the message
262   MODELAPI_EXPORT void setDocument(DocumentPtr theDocument);
263 };
264
265 /// Message that attribute text should be evaluated in the attribute value
266 class ModelAPI_AttributeEvalMessage : public Events_Message
267 {
268   AttributePtr myAttribute;
269
270  public:
271   /// Static. Returns EventID of the message.
272   MODELAPI_EXPORT static Events_ID& eventId()
273   {
274     static const char * MY_ATTRIBUTE_EVALUATION_EVENT_ID("AttributeEvaluationRequest");
275     static Events_ID anId = Events_Loop::eventByName(MY_ATTRIBUTE_EVALUATION_EVENT_ID);
276     return anId;
277   }
278
279   /// Useful method that creates and sends the AttributeEvalMessage event
280   MODELAPI_EXPORT static void send(AttributePtr theAttribute, const void* theSender)
281   {
282     std::shared_ptr<ModelAPI_AttributeEvalMessage> aMessage =
283       std::shared_ptr<ModelAPI_AttributeEvalMessage>(
284       new ModelAPI_AttributeEvalMessage(eventId(), theSender));
285     aMessage->setAttribute(theAttribute);
286     Events_Loop::loop()->send(aMessage);
287   }
288
289   /// Creates an empty message
290   MODELAPI_EXPORT ModelAPI_AttributeEvalMessage(const Events_ID theID, const void* theSender = 0);
291   /// The virtual destructor
292   MODELAPI_EXPORT virtual ~ModelAPI_AttributeEvalMessage();
293
294   /// Returns a document stored in the message
295   MODELAPI_EXPORT AttributePtr attribute() const;
296   /// Sets an attribute to the message
297   MODELAPI_EXPORT void setAttribute(AttributePtr theAttribute);
298 };
299
300 /// Message that parameter feature expression should be evaluated: value and error producing
301 class ModelAPI_ParameterEvalMessage : public Events_Message
302 {
303   FeaturePtr myParam; ///< parameters that should be evaluated
304   bool myIsProcessed; ///< true if results were set
305   /// result of processing, list of parameters in expression found
306   std::list<std::shared_ptr<ModelAPI_ResultParameter> > myParamsList;
307   double myResult; ///< result of processing, the computed value of the expression
308   std::string myError; ///< error of processing, empty if there is no error
309
310  public:
311   /// Static. Returns EventID of the message.
312   MODELAPI_EXPORT static Events_ID& eventId()
313   {
314     static const char * MY_PARAMETER_EVALUATION_EVENT_ID("ParameterEvaluationRequest");
315     static Events_ID anId = Events_Loop::eventByName(MY_PARAMETER_EVALUATION_EVENT_ID);
316     return anId;
317   }
318
319   /// Useful method that creates and sends the event.
320   /// Returns the message, processed, with the resulting fields filled.
321   MODELAPI_EXPORT static std::shared_ptr<ModelAPI_ParameterEvalMessage>
322     send(FeaturePtr theParameter, const void* theSender)
323   {
324     std::shared_ptr<ModelAPI_ParameterEvalMessage> aMessage =
325       std::shared_ptr<ModelAPI_ParameterEvalMessage>(
326       new ModelAPI_ParameterEvalMessage(eventId(), theSender));
327     aMessage->setParameter(theParameter);
328     Events_Loop::loop()->send(aMessage);
329     return aMessage;
330   }
331
332   /// Creates an empty message
333   MODELAPI_EXPORT ModelAPI_ParameterEvalMessage(const Events_ID theID, const void* theSender = 0);
334   /// The virtual destructor
335   MODELAPI_EXPORT virtual ~ModelAPI_ParameterEvalMessage();
336
337   /// Returns a parameter stored in the message
338   MODELAPI_EXPORT FeaturePtr parameter() const;
339   /// Sets a parameter to the message
340   MODELAPI_EXPORT void setParameter(FeaturePtr theParam);
341   /// Sets the results of processing
342   MODELAPI_EXPORT void setResults(
343     const std::list<std::shared_ptr<ModelAPI_ResultParameter> >& theParamsList,
344     const double theResult, const std::string& theError);
345   /// Returns true if the expression is processed
346   MODELAPI_EXPORT bool isProcessed();
347   /// Returns the results of processing: list of parameters found in the expression
348   MODELAPI_EXPORT const std::list<std::shared_ptr<ModelAPI_ResultParameter> >& params() const;
349   /// Returns the expression result
350   MODELAPI_EXPORT const double& result() const;
351   /// Returns the interpreter error (empty if no error)
352   MODELAPI_EXPORT const std::string& error() const;
353 };
354
355
356 /// Message to ask compute the positions of parameters in the expression
357 class ModelAPI_ComputePositionsMessage : public Events_Message
358 {
359   std::string myExpression; ///< the expression string
360   std::string myParamName; ///< name of the parameter to be searched
361   std::list<std::pair<int, int> > myPositions; ///< computation result: start-end position indices
362
363 public:
364   /// Static. Returns EventID of the message.
365   MODELAPI_EXPORT static Events_ID& eventId()
366   {
367     static const char * MY_COMPUTE_POSITIOND_EVENT_ID("ComputePositionsRequest");
368     static Events_ID anId = Events_Loop::eventByName(MY_COMPUTE_POSITIOND_EVENT_ID);
369     return anId;
370   }
371
372   /// Useful method that creates and sends the AttributeEvalMessage event
373   /// Returns the message, processed, with the resulting fields filled
374   MODELAPI_EXPORT static std::shared_ptr<ModelAPI_ComputePositionsMessage>
375     send(const std::string& theExpression, const std::string& theParameter, const void* theSender)
376   {
377     std::shared_ptr<ModelAPI_ComputePositionsMessage> aMessage =
378       std::shared_ptr<ModelAPI_ComputePositionsMessage>(
379       new ModelAPI_ComputePositionsMessage(eventId(), theSender));
380     aMessage->set(theExpression, theParameter);
381     Events_Loop::loop()->send(aMessage);
382     return aMessage;
383   }
384
385   /// Creates an empty message
386   MODELAPI_EXPORT ModelAPI_ComputePositionsMessage(
387     const Events_ID theID, const void* theSender = 0);
388   /// The virtual destructor
389   MODELAPI_EXPORT virtual ~ModelAPI_ComputePositionsMessage();
390
391   /// Returns an expression stored in the message
392   MODELAPI_EXPORT const std::string& expression() const;
393   /// Returns a parameter name stored in the message
394   MODELAPI_EXPORT const std::string& parameter() const;
395   /// Sets an expression and parameter needed for computation
396   MODELAPI_EXPORT void set(const std::string& theExpression, const std::string& theParameter);
397   /// Sets the results of processing
398   MODELAPI_EXPORT void setPositions(const std::list<std::pair<int, int> >& thePositions);
399   /// Returns the results of processing: position start and end indices
400   MODELAPI_EXPORT const std::list<std::pair<int, int> >& positions() const;
401 };
402
403 /// Message that the object is renamed
404 class ModelAPI_ObjectRenamedMessage : public Events_Message
405 {
406   ObjectPtr myObject;
407   std::string myOldName;
408   std::string myNewName;
409
410  public:
411   /// Static. Returns EventID of the message.
412   MODELAPI_EXPORT static Events_ID& eventId()
413   {
414     static const char * MY_OBJECT_RENAMED_EVENT_ID("ObjectRenamed");
415     static Events_ID anId = Events_Loop::eventByName(MY_OBJECT_RENAMED_EVENT_ID);
416     return anId;
417   }
418
419   /// Useful method that creates and sends the AttributeEvalMessage event
420   MODELAPI_EXPORT static void send(ObjectPtr theObject,
421                                    const std::string& theOldName,
422                                    const std::string& theNewName,
423                                    const void* theSender);
424
425   /// Creates an empty message
426   MODELAPI_EXPORT ModelAPI_ObjectRenamedMessage(const Events_ID theID, const void* theSender = 0);
427   /// The virtual destructor
428   MODELAPI_EXPORT virtual ~ModelAPI_ObjectRenamedMessage();
429
430   /// Returns an object
431   MODELAPI_EXPORT ObjectPtr object() const;
432   /// Sets an object
433   MODELAPI_EXPORT void setObject(ObjectPtr theObject);
434   /// Returns an old name
435   MODELAPI_EXPORT std::string oldName() const;
436   /// Sets an old name
437   MODELAPI_EXPORT void setOldName(const std::string& theOldName);
438   /// Returns a new name
439   MODELAPI_EXPORT std::string newName() const;
440   /// Sets a new name
441   MODELAPI_EXPORT void setNewName(const std::string& theNewName);
442 };
443
444 /// Message that the parameter should be replaced with its value
445 class ModelAPI_ReplaceParameterMessage : public Events_Message
446 {
447   ObjectPtr myObject;
448
449  public:
450   /// Static. Returns EventID of the message.
451   MODELAPI_EXPORT static Events_ID& eventId()
452   {
453     static const char * MY_EVENT_ID("ReplaceParameter");
454     static Events_ID anId = Events_Loop::eventByName(MY_EVENT_ID);
455     return anId;
456   }
457
458   /// Useful method that creates and sends the AttributeEvalMessage event
459   MODELAPI_EXPORT static void send(ObjectPtr theObject,
460                                    const void* theSender);
461
462   /// Creates an empty message
463   MODELAPI_EXPORT
464     ModelAPI_ReplaceParameterMessage(const Events_ID theID, const void* theSender = 0);
465   /// The virtual destructor
466   MODELAPI_EXPORT virtual ~ModelAPI_ReplaceParameterMessage();
467
468   /// Returns an object
469   MODELAPI_EXPORT ObjectPtr object() const;
470   /// Sets an object
471   MODELAPI_EXPORT void setObject(ObjectPtr theObject);
472 };
473
474 /// Message that sends the sketch solver and sketcher GUI processes to show in the property panel
475 class ModelAPI_SolverFailedMessage : public Events_Message
476 {
477 public:
478   /// Creates an message
479   MODELAPI_EXPORT ModelAPI_SolverFailedMessage(const Events_ID theID, const void* theSender = 0);
480   /// Default destructor
481   MODELAPI_EXPORT virtual ~ModelAPI_SolverFailedMessage();
482
483   /// Sets list of conflicting constraints
484   MODELAPI_EXPORT void setObjects(const std::set<ObjectPtr>& theObjects);
485   /// Returns list of conflicting constraints
486   MODELAPI_EXPORT const std::set<ObjectPtr>& objects() const;
487
488   /// Sets degrees of freedom
489   void dof(const int theDOF) { myDOF = theDOF; }
490   /// Returns degrees of freedom
491   const int& dof() const { return myDOF; }
492
493 private:
494   std::set<ObjectPtr> myObjects;
495   int myDOF;
496 };
497
498 /// Message sent when feature or attribute has been moved.
499 /// Stores the moving object/attribute, original and new positions of mouse.
500 class ModelAPI_ObjectMovedMessage : public Events_Message
501 {
502   ObjectPtr myMovedObject;
503   AttributePtr myMovedAttribute;
504   int myMovedPointIndex;
505
506   std::shared_ptr<GeomAPI_Pnt2d> myOriginalPosition;
507   std::shared_ptr<GeomAPI_Pnt2d> myCurrentPosition;
508
509 public:
510   MODELAPI_EXPORT ModelAPI_ObjectMovedMessage(const void* theSender = 0);
511
512   /// Set object which is being moved (if the message already contains attribute it will be cleared)
513   MODELAPI_EXPORT void setMovedObject(const ObjectPtr& theMovedObject);
514   /// Set attribute which is being moved (if the message already contains object it will be cleared)
515   /// \param[in] theMovedAttribute moved attribute
516   /// \param[in] thePointIndex     index of the point if the moved attribute is an array of points
517   MODELAPI_EXPORT void setMovedAttribute(const AttributePtr& theMovedAttribute,
518                                          const int thePointIndex = -1);
519
520   /// Return moved object
521   ObjectPtr movedObject() const
522   { return myMovedObject; }
523   /// Return moved attribute
524   AttributePtr movedAttribute() const
525   { return myMovedAttribute; }
526   /// Return index of the moved point
527   int movedPointIndex() const
528   { return myMovedPointIndex; }
529
530   /// Set original mouse position
531   MODELAPI_EXPORT void setOriginalPosition(double theX, double theY);
532   /// Set original mouse position
533   MODELAPI_EXPORT void setOriginalPosition(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
534   /// Return original mouse position
535   const std::shared_ptr<GeomAPI_Pnt2d>& originalPosition() const
536   { return myOriginalPosition; }
537
538   /// Set current mouse position
539   MODELAPI_EXPORT void setCurrentPosition(double theX, double theY);
540   /// Set current mouse position
541   MODELAPI_EXPORT void setCurrentPosition(const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
542   /// Return current mouse position
543   const std::shared_ptr<GeomAPI_Pnt2d>& currentPosition() const
544   { return myCurrentPosition; }
545 };
546
547 /// Message that sends the failed vertices of 1D-fillet to highlight them in 3D viewer
548 class ModelAPI_Fillet1DFailedMessage : public Events_Message
549 {
550 public:
551   /// Creates an message
552   MODELAPI_EXPORT ModelAPI_Fillet1DFailedMessage(const Events_ID theID, const void* theSender = 0);
553   /// Default destructor
554   MODELAPI_EXPORT virtual ~ModelAPI_Fillet1DFailedMessage();
555   /// Static. Returns EventID of the message.
556   MODELAPI_EXPORT static Events_ID eventId()
557   {
558     return Events_Loop::eventByName(EVENT_1DFILLET_FAILED);
559   }
560
561   /// Sets list of failed vertices
562   MODELAPI_EXPORT void setVertices(const std::list< std::shared_ptr<GeomAPI_Shape> >& theVertices);
563   /// Returns list of failed vertices
564   MODELAPI_EXPORT const std::list< std::shared_ptr<GeomAPI_Shape> >& vertices() const;
565
566 private:
567   std::list< std::shared_ptr<GeomAPI_Shape> > myVertices;
568 };
569
570 #endif