Salome HOME
Merge branch 'master' into Dev_1.1.0
[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   /// Add menu atems for viewer into the given menu\r
73   /// \param theMenu a popup menu to be shown in the viewer\r
74   virtual void addViewerItems(QMenu* theMenu) const {}\r
75 \r
76   /// Add menu atems for object browser into the given menu\r
77   /// \param theMenu a popup menu to be shown in the object browser\r
78   virtual void addObjectBrowserItems(QMenu* theMenu) const {};\r
79 \r
80   /// Called when it is necessary to update a command state (enable or disable it)\r
81   //virtual bool isFeatureEnabled(const QString& theCmdId) const = 0;\r
82 \r
83   /// Creates custom widgets for property panel\r
84   /// \param theType a type of widget\r
85   /// \param theParent the parent object\r
86   /// \param theWidgetApi the widget configuation. The attribute of the model widget is obtained from\r
87   /// \param theParentId is Id of a parent of the current attribute\r
88   /// \param theModelWidgets list of widget objects\r
89   virtual QWidget* createWidgetByType(const std::string& theType, QWidget* theParent,\r
90                                       Config_WidgetAPI* theWidgetApi, std::string theParentId,\r
91                                       QList<ModuleBase_ModelWidget*>& theModelWidgets)\r
92   {\r
93     return 0;\r
94   }\r
95 \r
96   /// Returns current workshop\r
97   ModuleBase_IWorkshop* workshop() const { return myWorkshop; }\r
98 \r
99   /// Call back forlast tuning of property panel before operation performance\r
100   /// It is called as on clearing of property panel as on filling with new widgets\r
101   virtual void propertyPanelDefined(ModuleBase_Operation* theOperation) {}\r
102 \r
103   /// Returns whether the object can be displayed at the bounds of the active operation.\r
104   /// Display only current operation results\r
105   /// \param theObject a model object\r
106   virtual bool canDisplayObject(const ObjectPtr& theObject) const;\r
107 \r
108 public slots:\r
109   /// Called on call of command corresponded to a feature\r
110   void onFeatureTriggered();\r
111 \r
112 protected slots:\r
113   /// Called on selection changed event\r
114   virtual void onSelectionChanged() {}\r
115 \r
116  protected:\r
117   /// Sends the operation for launching\r
118   /// \param theOperation the operation\r
119   void sendOperation(ModuleBase_Operation* theOperation);\r
120 \r
121   /// Creates a new operation\r
122   /// \param theCmdId the operation name\r
123   virtual ModuleBase_Operation* createOperation(const std::string& theCmdId);\r
124 \r
125   /// Register validators for this module\r
126   virtual void registerValidators() {}\r
127 \r
128   /// Register selection filters for this module\r
129   virtual void registerFilters() {}\r
130
131   /// Register properties of this module
132   virtual void registerProperties() {}
133 \r
134   /// Register properties of this module\r
135   virtual void registerProperties() {}\r
136 \r
137   /// Returns new instance of operation object (used in createOperation for customization)\r
138   virtual ModuleBase_Operation* getNewOperation(const std::string& theFeatureId);\r
139 \r
140 protected:\r
141 \r
142   /// Reference to workshop\r
143   ModuleBase_IWorkshop* myWorkshop;\r
144 \r
145   /// Map of features in XML\r
146   std::map<std::string, std::string> myFeaturesInFiles;\r
147 };\r
148 \r
149 \r
150 \r
151 //! This function must return a new module instance.\r
152 extern "C" {\r
153 typedef ModuleBase_IModule* (*CREATE_FUNC)(ModuleBase_IWorkshop*);\r
154 }\r
155 \r
156 #define CREATE_MODULE "createModule"\r
157 \r
158 #endif //ModuleBase_IModule\r