Salome HOME
ffe5139479fdc09fdcc09043798e4b6fcd413786
[modules/shaper.git] / src / ModuleBase / ModuleBase_IModule.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D\r
2 \r
3 #ifndef ModuleBase_IModule_H\r
4 #define ModuleBase_IModule_H\r
5 \r
6 #include "ModuleBase.h"\r
7 #include "ModuleBase_IWorkshop.h"\r
8 \r
9 #include <ModelAPI_Feature.h>\r
10 \r
11 #include <QString>\r
12 #include <QObject>\r
13 \r
14 #include <string>\r
15 #include <map>\r
16 \r
17 class QAction;\r
18 class QMouseEvent;\r
19 class QKeyEvent;\r
20 class QMenu;\r
21 class Config_WidgetAPI;\r
22 class ModuleBase_ModelWidget;\r
23 class ModuleBase_Operation;\r
24 class ModuleBase_IWorkshop;\r
25 \r
26 /**\r
27  * \ingroup GUI\r
28  * Interface to a module\r
29  */\r
30 class MODULEBASE_EXPORT ModuleBase_IModule : public QObject\r
31 {\r
32   Q_OBJECT\r
33  public:\r
34 \r
35    /// Constructor\r
36    /// \param theParent instance of workshop intrface\r
37    ModuleBase_IModule(ModuleBase_IWorkshop* theParent);\r
38 \r
39   virtual ~ModuleBase_IModule() {}\r
40 \r
41   /// Reads description of features from XML file \r
42   virtual void createFeatures();\r
43 \r
44   /// Called on creation of menu item in desktop\r
45   virtual void actionCreated(QAction*);\r
46 \r
47   /// Launching of a edit operation on the feature \r
48   /// \param theFeature feature for editing\r
49   virtual void editFeature(FeaturePtr theFeature);\r
50 \r
51   /// Creates an operation and send it to loop\r
52   /// \param theCmdId the operation name\r
53   virtual void launchOperation(const QString& theCmdId);\r
54 \r
55   /// Realizes some functionality by an operation start\r
56   /// \param theOperation a started operation\r
57   virtual void operationStarted(ModuleBase_Operation* theOperation) {}\r
58 \r
59   /// Realizes some functionality by an operation resume\r
60   /// \param theOperation a resumed operation\r
61   virtual void operationResumed(ModuleBase_Operation* theOperation) {}\r
62 \r
63   /// Realizes some functionality by an operation stop\r
64   virtual void operationStopped(ModuleBase_Operation* theOperation) {}\r
65 \r
66   /// Realizes some functionality by an operation commit\r
67   virtual void operationCommitted(ModuleBase_Operation* theOperation) {}\r
68 \r
69   /// Realizes some functionality by an operation abort\r
70   virtual void operationAborted(ModuleBase_Operation* theOperation) {}\r
71 \r
72   /// Realizes some functionality by an operation start\r
73   /// \param theOperation a started operation\r
74   virtual ModuleBase_Operation* currentOperation() const = 0;\r
75 \r
76   /// Add menu atems for viewer into the given menu\r
77   /// \param theMenu a popup menu to be shown in the viewer\r
78   virtual void addViewerItems(QMenu* theMenu) const {}\r
79 \r
80   /// Add menu atems for object browser into the given menu\r
81   /// \param theMenu a popup menu to be shown in the object browser\r
82   virtual void addObjectBrowserItems(QMenu* theMenu) const {};\r
83 \r
84   /// Called when it is necessary to update a command state (enable or disable it)\r
85   //virtual bool isFeatureEnabled(const QString& theCmdId) const = 0;\r
86 \r
87   /// Creates custom widgets for property panel\r
88   /// \param theType a type of widget\r
89   /// \param theParent the parent object\r
90   /// \param theWidgetApi the widget configuation. The attribute of the model widget is obtained from\r
91   /// \param theParentId is Id of a parent of the current attribute\r
92   /// \param theModelWidgets list of widget objects\r
93   virtual ModuleBase_ModelWidget* createWidgetByType(const std::string& theType, QWidget* theParent,\r
94                                       Config_WidgetAPI* theWidgetApi, std::string theParentId)\r
95   {\r
96     return 0;\r
97   }\r
98 \r
99   /// Returns current workshop\r
100   ModuleBase_IWorkshop* workshop() const { return myWorkshop; }\r
101 \r
102   /// Call back forlast tuning of property panel before operation performance\r
103   /// It is called as on clearing of property panel as on filling with new widgets\r
104   virtual void propertyPanelDefined(ModuleBase_Operation* theOperation) {}\r
105 \r
106   //! Returns True if there are available Undos and there is not an active operation\r
107   virtual bool canUndo() const;\r
108 \r
109   //! Returns True if there are available Redos and there is not an active operation\r
110   virtual bool canRedo() const;\r
111 \r
112   /// Returns whether the object can be displayed at the bounds of the active operation.\r
113   /// Display only current operation results\r
114   /// \param theObject a model object\r
115   virtual bool canDisplayObject(const ObjectPtr& theObject) const;\r
116 \r
117   /// Reacts to the delete action in module\r
118   /// \returns true if the action is processed\r
119   virtual bool deleteObjects() { return false; };\r
120 \r
121 public slots:\r
122   /// Called on call of command corresponded to a feature\r
123   void onFeatureTriggered();\r
124 \r
125 protected slots:\r
126   /// Called on selection changed event\r
127   virtual void onSelectionChanged() {}\r
128 \r
129  protected:\r
130   /// Sends the operation for launching\r
131   /// \param theOperation the operation\r
132   void sendOperation(ModuleBase_Operation* theOperation);\r
133 \r
134   /// Creates a new operation\r
135   /// \param theCmdId the operation name\r
136   virtual ModuleBase_Operation* createOperation(const std::string& theCmdId);\r
137 \r
138   /// Register validators for this module\r
139   virtual void registerValidators() {}\r
140 \r
141   /// Register selection filters for this module\r
142   virtual void registerFilters() {}\r
143 \r
144   /// Register properties of this module\r
145   virtual void registerProperties() {}\r
146 \r
147   /// Returns new instance of operation object (used in createOperation for customization)\r
148   virtual ModuleBase_Operation* getNewOperation(const std::string& theFeatureId);\r
149 \r
150 protected:\r
151 \r
152   /// Reference to workshop\r
153   ModuleBase_IWorkshop* myWorkshop;\r
154 \r
155   /// Map of features in XML\r
156   std::map<std::string, std::string> myFeaturesInFiles;\r
157 };\r
158 \r
159 \r
160 \r
161 //! This function must return a new module instance.\r
162 extern "C" {\r
163 typedef ModuleBase_IModule* (*CREATE_FUNC)(ModuleBase_IWorkshop*);\r
164 }\r
165 \r
166 #define CREATE_MODULE "createModule"\r
167 \r
168 #endif //ModuleBase_IModule\r