Salome HOME
fcf98a0c32920465955216376030dec8541d88cd
[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 <XGUI_Module.h>
7 #include <XGUI_Command.h>
8
9 #include <QMap>
10 #include <QObject>
11
12 #include <string>
13
14 class PARTSET_EXPORT PartSet_Module: public QObject, public XGUI_Module
15 {
16 Q_OBJECT
17
18 public:
19   PartSet_Module(XGUI_Workshop* theWshop);
20   virtual ~PartSet_Module();
21
22   virtual void createFeatures();
23   virtual void featureCreated(XGUI_Command* theFeature);
24   std::string featureFile(const std::string&);
25
26 public slots:
27   void onFeatureTriggered();
28   /// SLOT, that is called after the operation is started. Perform some specific for module
29   /// actions, e.g. connect the sketch feature to the viewer selection and show the sketch preview.
30   void onOperationStarted();
31   /// SLOT, that is called after the operation is stopped. Disconnect the sketch feature
32   /// from the viewer selection and show the sketch preview.
33   void onOperationStopped(ModuleBase_Operation* theOperation);
34   /// SLOT, that is called by the selection in the viewer is changed.
35   /// The selection is sent to the current operation if it listen the selection.
36   void onViewSelectionChanged();
37
38 private:
39   /// Displays or erase the current operation preview, if it has it.
40   /// \param isDisplay the state whether the presentation should be displayed or erased
41   void visualizePreview(bool isDisplay);
42
43 private:
44   XGUI_Workshop* myWorkshop;
45
46   std::map<std::string, std::string> myFeaturesInFiles;
47 };
48
49 #endif