Salome HOME
Merge with Dev_1.5.0
[modules/shaper.git] / src / XGUI / XGUI_WorkshopListener.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 #ifndef XGUI_WORKSHOP_LISTENER_H
4 #define XGUI_WORKSHOP_LISTENER_H
5
6 #include "XGUI.h"
7 #include <Events_Listener.h>
8 #include <Events_Message.h>
9
10 #include <ModelAPI_Feature.h>
11
12 #include <QObject>
13
14 class Config_FeatureMessage;
15
16 class ModelAPI_ObjectUpdatedMessage;
17 class XGUI_Workshop;
18
19 class ModuleBase_IWorkshop;
20
21 class QString;
22
23 /**\class XGUI_WorkshopListener
24  * \ingroup GUI
25  * \brief Class which process the events from the event loop.
26  */
27 class XGUI_EXPORT XGUI_WorkshopListener : public QObject, public Events_Listener
28 {
29   Q_OBJECT
30 public:
31   /// Constructor. Used only if the workshop is launched in Salome environment
32   /// \param theWorkshop a reference to workshop. 
33    XGUI_WorkshopListener(ModuleBase_IWorkshop* theWorkshop);
34   virtual ~XGUI_WorkshopListener();
35
36   /// Register this class in the events loop for several types of events
37   void initializeEventListening();
38
39   //! Redefinition of Events_Listener method
40   virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
41
42 signals:
43   /// Emitted when error in applivation happens
44   void errorOccurred(const QString&);
45
46 protected:
47   /// Procedure to process postponed events
48   bool event(QEvent * theEvent);
49
50    /// Process event "Add a feature"
51   void addFeature(const std::shared_ptr<Config_FeatureMessage>&);
52
53   /// Process feature update message
54   void onFeatureUpdatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& );
55
56   /// Process feature created message
57   void onFeatureCreatedMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& );
58
59   /// Process feature redisplay message
60   void onFeatureRedisplayMsg(const std::shared_ptr<ModelAPI_ObjectUpdatedMessage>& );
61
62   /// Displaus object and fit all viewer if the object is first (update viewer will not be called)
63   /// Asks the module whether the object can be displayed
64   /// \param theObj an object
65   /// \param theFirstVisualizedBody an output state whether there are not object displayed in the view
66   /// and the displayed object is a body
67   /// \return true if the object is displayed
68   bool displayObject(ObjectPtr theObj, bool& theFirstVisualizedBody);
69
70   /// Calls the module method of cusomize object for the feature of the current operation
71   /// \return true if the object is modified
72   bool customizeCurrentObject();
73
74   /// Returns the workshop
75   XGUI_Workshop* workshop() const;
76
77 private:
78   ModuleBase_IWorkshop* myWorkshop; // the current workshop
79
80   bool myUpdatePrefs;
81 };
82
83 #endif