Salome HOME
This is an improvement to use one AND filter in the viewer context. It serves to...
[modules/shaper.git] / src / PartSet / PartSet_Module.h
index 86c2d95f6b38ed99599461e1907e740b96b9813f..085876eb23bbdf83af816698ed20782608e2db75 100644 (file)
 
 #include "PartSet.h"
 
-#include <XGUI_Module.h>
+#include <ModuleBase_IModule.h>
+#include <ModuleBase_Definitions.h>
+#include <ModuleBase_ViewerFilters.h>
 #include <XGUI_Command.h>
+#include <ModelAPI_Feature.h>
+#include <ModelAPI_Attribute.h>
+#include <ModelAPI_CompositeFeature.h>
+
+#include <StdSelect_FaceFilter.hxx>
+#include <TopoDS_Shape.hxx>
 
 #include <QMap>
 #include <QObject>
 
 #include <string>
 
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
-class QMouseEvent;
-class QKeyEvent;
-class PartSet_Listener;
-class ModelAPI_Feature;
+class ModuleBase_Operation;
+class ModuleBase_IViewWindow;
 
-class PARTSET_EXPORT PartSet_Module: public QObject, public XGUI_Module
+class PARTSET_EXPORT PartSet_Module : public ModuleBase_IModule
 {
 Q_OBJECT
 
-public:
-  PartSet_Module(XGUI_Workshop* theWshop);
+ public:
+  PartSet_Module(ModuleBase_IWorkshop* theWshop);
   virtual ~PartSet_Module();
 
-  /// Returns the module workshop
-  /// \returns a workshop instance
-  XGUI_Workshop* workshop() const;
+  /// Creates custom widgets for property panel
+  virtual QWidget* createWidgetByType(const std::string& theType, QWidget* theParent,
+                                      Config_WidgetAPI* theWidgetApi, std::string theParentId,
+                                      QList<ModuleBase_ModelWidget*>& theModelWidgets);
+
+  /// Call back forlast tuning of property panel before operation performance
+  virtual void propertyPanelDefined(ModuleBase_Operation* theOperation);
 
-  virtual void createFeatures();
-  virtual void featureCreated(XGUI_Command* theFeature);
-  virtual QStringList nestedFeatures(QString theFeature);
-  std::string featureFile(const std::string&);
+  QStringList sketchOperationIdList() const;
 
-  /// Creates an operation and send it to loop
-  /// \param theCmdId the operation name
-  virtual void launchOperation(const QString& theCmdId);
+protected slots:
+  /// Called when previous operation is finished
+  virtual void onOperationComitted(ModuleBase_Operation* theOperation);
 
-  /// Displays or erase the current operation preview, if it has it.
-  /// \param theF
-  /// \param isDisplay the state whether the presentation should be displayed or erased
-  void visualizePreview(boost::shared_ptr<ModelAPI_Feature> theFeature, bool isDisplay);
+  virtual void onOperationAborted(ModuleBase_Operation* theOperation);
 
-  /// Updates current operation preview, if it has it.
-  /// \param theCmdId the operation name
-  void updateCurrentPreview(const std::string& theCmdId);
+  virtual void onOperationStarted(ModuleBase_Operation* theOperation);
 
-public slots:
-  void onFeatureTriggered();
-  /// SLOT, that is called after the operation is stopped. Switched off the modfications performed
-  /// by the operation start
-  void onOperationStopped(ModuleBase_Operation* theOperation);
+  virtual void onOperationStopped(ModuleBase_Operation* theOperation);
+
+  /// Called when previous operation is finished
+  virtual void onSelectionChanged();
 
   /// SLOT, that is called by mouse press in the viewer.
   /// The mouse released point is sent to the current operation to be processed.
   /// \param theEvent the mouse event
-  void onMousePressed(QMouseEvent* theEvent);
+  void onMousePressed(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent);
+
   /// SLOT, that is called by mouse release in the viewer.
   /// The mouse released point is sent to the current operation to be processed.
   /// \param theEvent the mouse event
-  void onMouseReleased(QMouseEvent* theEvent);
+  virtual void onMouseReleased(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent);
+  
   /// SLOT, that is called by mouse move in the viewer.
   /// The mouse moved point is sent to the current operation to be processed.
   /// \param theEvent the mouse event
-  void onMouseMoved(QMouseEvent* theEvent);
+  virtual void onMouseMoved(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent);
 
-  /// SLOT, that is called by the key in the viewer is clicked.
-  /// \param theEvent the mouse event
-  void onKeyRelease(QKeyEvent*);
-
-  /// SLOT, to apply to the current viewer the operation
-  /// \param theX the X projection value
-  /// \param theY the Y projection value
-  /// \param theZ the Z projection value
-  void onPlaneSelected(double theX, double theY, double theZ);
-
-  void onLaunchOperation(std::string theName, boost::shared_ptr<ModelAPI_Feature> theFeature);
-
-  /// SLOT, to switch on/off the multi selection in the viewer
-  /// \param theEnabled the enabled state
-  void onMultiSelectionEnabled(bool theEnabled);
-
-  /// SLOT, to visualize the feature in another local context mode
-  /// \param theFeature the feature to be put in another local context mode
-  /// \param theMode the mode appeared on the feature
-  void onFeatureConstructed(boost::shared_ptr<ModelAPI_Feature> theFeature,
-                            int theMode);
-protected:
-  /// Creates a new operation
-  /// \param theCmdId the operation name
-  ModuleBase_Operation* createOperation(const std::string& theCmdId);
-
-  /// Sends the operation
-  /// \param theOperation the operation
-  void sendOperation(ModuleBase_Operation* theOperation);
-
-private:
-  XGUI_Workshop* myWorkshop;
-  PartSet_Listener* myListener;
-
-  std::map<std::string, std::string> myFeaturesInFiles;
+  /// Launches the operation from current highlighting
+  void launchEditing();
+
+ protected:
+  /// Returns new instance of operation object (used in createOperation for customization)
+  virtual ModuleBase_Operation* getNewOperation(const std::string& theFeatureId);
+
+  /// Register validators for this module
+  virtual void registerValidators();
+
+ private slots:
+   void onVertexSelected(ObjectPtr theObject, const TopoDS_Shape& theShape);
+
+   void onPlaneSelected(const std::shared_ptr<GeomAPI_Pln>& thePln);
+
+ private:
+   /// Converts mouse position to 2d coordinates. 
+   /// Member myCurrentSketch has to be correctly defined
+  void get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent, 
+                  double& theX, double& theY);
+
+  /// Breaks sequense of automatically resterted operations
+  void breakOperationSequence();
+
+ private:
+   QString myLastOperationId;
+   FeaturePtr myLastFeature;
+
+   bool myIsDragging;
+   bool myDragDone;
+
+   // Automatical restarting mode flag
+   bool myRestartingMode;
+
+   double myCurX, myCurY;
+   CompositeFeaturePtr myCurrentSketch;
+   QList<FeaturePtr> myEditingFeatures;
+   QList<AttributePtr> myEditingAttr;
+
+   Handle(ModuleBase_ShapeInPlaneFilter) myPlaneFilter;
+  /// A filter which provides selection within a current document or whole PartSet
+  Handle(ModuleBase_ShapeDocumentFilter) myDocumentShapeFilter;
 };
 
 #endif