Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / PartSet / PartSet_Module.h
1 #ifndef PartSet_Module_H
2 #define PartSet_Module_H
3
4 #include "PartSet.h"
5
6 #include <ModuleBase_IModule.h>
7 #include <ModuleBase_Definitions.h>
8 #include <XGUI_Command.h>
9 #include <ModelAPI_Feature.h>
10
11 #include <QMap>
12 #include <QObject>
13
14 #include <string>
15
16 #include <boost/shared_ptr.hpp>
17
18 class QMouseEvent;
19 class QKeyEvent;
20 class PartSet_Listener;
21 class ModelAPI_Feature;
22 class XGUI_ViewerPrs;
23 class ModuleBase_Operation;
24 class GeomAPI_AISObject;
25
26 class PARTSET_EXPORT PartSet_Module : public ModuleBase_IModule
27 {
28 Q_OBJECT
29
30  public:
31   PartSet_Module(XGUI_Workshop* theWshop);
32   virtual ~PartSet_Module();
33
34   /// Returns the module workshop
35   /// \returns a workshop instance
36   XGUI_Workshop* workshop() const;
37
38   /// Reads description of features from XML file 
39   virtual void createFeatures();
40
41   /// Called on creation of menu item in desktop
42   virtual void featureCreated(QAction* theFeature);
43
44   /// Returnc list of nested commands for the given feature
45   virtual QStringList nestedFeatures(QString theFeature);
46   std::string featureFile(const std::string&);
47
48   /// Creates an operation and send it to loop
49   /// \param theCmdId the operation name
50   virtual void launchOperation(const QString& theCmdId);
51
52   /// Called when it is necessary to update a command state (enable or disable it)
53   //virtual bool isFeatureEnabled(const QString& theCmdId) const;
54
55   /// Displays or erase the current operation preview, if it has it.
56   /// \param theFeature the feature instance to be displayed
57   /// \param isDisplay the state whether the presentation should be displayed or erased
58   /// \param isUpdateViewer the flag whether the viewer should be updated
59   //void visualizePreview(FeaturePtr theFeature, bool isDisplay,
60   //                      const bool isUpdateViewer = true);
61
62   /// Activates the feature in the displayer
63   /// \param theFeature the feature instance to be displayed
64   /// \param isUpdateViewer the flag whether the viewer should be updated
65   void activateFeature(ObjectPtr theFeature, const bool isUpdateViewer);
66
67   /// Updates current operation preview, if it has it.
68   /// \param theCmdId the operation name
69   void updateCurrentPreview(const std::string& theCmdId);
70
71   /// Creates custom widgets for property panel
72   virtual QWidget* createWidgetByType(const std::string& theType, QWidget* theParent,
73                                       Config_WidgetAPI* theWidgetApi,
74                                       QList<ModuleBase_ModelWidget*>& theModelWidgets);
75
76  public slots:
77   void onFeatureTriggered();
78   /// SLOT, that is called after the operation is started. Connect on the focus activated signal
79   void onOperationStarted();
80   /// SLOT, that is called after the operation is stopped. Switched off the modfications performed
81   /// by the operation start
82   void onOperationStopped(ModuleBase_Operation* theOperation);
83   /// SLOT, that is called afetr the popup menu action clicked.
84   void onContextMenuCommand(const QString& theId, bool isChecked);
85   /// SLOT, that is called by mouse press in the viewer.
86   /// The mouse released point is sent to the current operation to be processed.
87   /// \param theEvent the mouse event
88   void onMousePressed(QMouseEvent* theEvent);
89   /// SLOT, that is called by mouse release in the viewer.
90   /// The mouse released point is sent to the current operation to be processed.
91   /// \param theEvent the mouse event
92   void onMouseReleased(QMouseEvent* theEvent);
93   /// SLOT, that is called by mouse move in the viewer.
94   /// The mouse moved point is sent to the current operation to be processed.
95   /// \param theEvent the mouse event
96   void onMouseMoved(QMouseEvent* theEvent);
97
98   /// SLOT, that is called by the key in the viewer is clicked.
99   /// \param theEvent the mouse event
100   void onKeyRelease(QKeyEvent* theEvent);
101
102   /// SLOT, that is called by the mouse double click in the viewer.
103   /// \param theEvent the mouse event
104   void onMouseDoubleClick(QMouseEvent* theEvent);
105
106   /// SLOT, to apply to the current viewer the operation
107   /// \param theX the X projection value
108   /// \param theY the Y projection value
109   /// \param theZ the Z projection value
110   void onPlaneSelected(double theX, double theY, double theZ);
111
112   /// SLOT, to fit all current viewer
113   void onFitAllView();
114
115   void onLaunchOperation(std::string theName, ObjectPtr theFeature);
116
117   /// SLOT, to switch on/off the multi selection in the viewer
118   /// \param theEnabled the enabled state
119   void onMultiSelectionEnabled(bool theEnabled);
120
121   /// SLOT, to stop or start selection mode for the features
122   /// \param theFeatures a list of features to be disabled
123   /// \param theToStop the boolean state whether it it stopped or non stopped
124   void onStopSelection(const QList<ObjectPtr>& theFeatures, const bool isStop);
125
126   /// SLOT, to set selection
127   /// \param theFeatures a list of features to be selected
128   void onSetSelection(const QList<ObjectPtr>& theFeatures);
129
130   /// SLOT, to close the viewer local context
131   void onCloseLocalContext();
132
133   /// SLOT, to visualize the feature in another local context mode
134   /// \param theFeature the feature to be put in another local context mode
135   /// \param theMode the mode appeared on the feature
136   void onFeatureConstructed(ObjectPtr theFeature, int theMode);
137
138   /// Slot which reacts to the point 2d set to the feature. Creates a constraint
139   /// \param the feature
140   /// \param the attribute of the feature
141   void onStorePoint2D(ObjectPtr theFeature, const std::string& theAttribute);
142
143  protected:
144   /// Creates a new operation
145   /// \param theCmdId the operation name
146   /// \param theFeatureKind a kind of feature to get the feature xml description
147   ModuleBase_Operation* createOperation(const std::string& theCmdId,
148                                         const std::string& theFeatureKind = "");
149
150   /// Sends the operation
151   /// \param theOperation the operation
152   void sendOperation(ModuleBase_Operation* theOperation);
153
154  protected:
155   //! Edits the feature
156   void editFeature(FeaturePtr theFeature);
157
158  private:
159   XGUI_Workshop* myWorkshop;
160   PartSet_Listener* myListener;
161
162   std::map<std::string, std::string> myFeaturesInFiles;
163 };
164
165 #endif