Salome HOME
Removed not used function SimpleAISobject
[modules/shaper.git] / src / PartSet / PartSet_WidgetSketchLabel.h
index 1419cc6670cb1e7d5a4737f1064211fb27240b80..58816ee4c7cfde676b82b90e230835db9caf7410 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        PartSet_WidgetSketchLabel.h
 // Created:     07 July 2014
 // Author:      Vitaly SMETANNIKOV
 #include "PartSet.h"
 
 #include <ModuleBase_ModelWidget.h>
+#include <ModuleBase_ViewerFilters.h>
+
+#include <GeomAPI_Pnt.h>
+#include <GeomAPI_Dir.h>
+#include <GeomAPI_AISObject.h>
+
+#include <StdSelect_FaceFilter.hxx>
+#include <TopoDS_Shape.hxx>
 
 class QLabel;
-class XGUI_OperationMgr; 
+class XGUI_OperationMgr;
+class XGUI_Workshop;
+//class PartSet_OperationSketch;
 
 class PARTSET_EXPORT PartSet_WidgetSketchLabel : public ModuleBase_ModelWidget
 {
-  Q_OBJECT
-public:
-  PartSet_WidgetSketchLabel(QWidget* theParent, const Config_WidgetAPI* theData);
+Q_OBJECT
+ public:
+  PartSet_WidgetSketchLabel(QWidget* theParent, const Config_WidgetAPI* theData,
+                            const std::string& theParentId);
 
-  virtual ~PartSet_WidgetSketchLabel() {};
+  virtual ~PartSet_WidgetSketchLabel();
 
   /// Saves the internal parameters to the given feature
   /// \param theFeature a model feature to be changed
-  virtual bool storeValue(FeaturePtr theFeature) const { return true;}
+  virtual bool storeValue() const
+  {
+    return true;
+  }
 
-  virtual bool restoreValue(FeaturePtr theFeature) { return true;}
+  virtual bool restoreValue()
+  {
+    return true;
+  }
 
   /// Returns list of widget controls
   /// \return a control list
@@ -32,15 +51,49 @@ public:
 
   QWidget* getControl() const;
 
-  void setOperationsMgr(XGUI_OperationMgr* theMgr);
+  /// The methiod called when widget is activated
+  virtual void activate();
+
+  /// The methiod called when widget is deactivated
+  virtual void deactivate();
+
+  XGUI_Workshop* workshop() const { return myWorkshop; }
+
+  void setWorkshop(XGUI_Workshop* theWork) { myWorkshop = theWork; }
+
+  std::shared_ptr<GeomAPI_Pln> plane() const;
+
+signals:
+  void planeSelected(const std::shared_ptr<GeomAPI_Pln>& thePln);
 
-private slots:
+ private slots:
   void onPlaneSelected();
 
-private:
+ private:
+  AISObjectPtr createPreviewPlane(std::shared_ptr<GeomAPI_Pnt> theOrigin, 
+                                  std::shared_ptr<GeomAPI_Dir> theNorm, 
+                                  const int theRGB[3]);
+
+  std::shared_ptr<GeomAPI_Dir> setSketchPlane(const TopoDS_Shape& theShape);
+
+  void erasePreviewPlanes();
+  void showPreviewPlanes();
+
+  void setSketchingMode();
+
   QLabel* myLabel;
   QString myText;
   QString myTooltip;
+
+  XGUI_Workshop* myWorkshop;
+
+  AISObjectPtr myYZPlane;
+  AISObjectPtr myXZPlane;
+  AISObjectPtr myXYPlane;
+  bool myPreviewDisplayed;
+
+  Handle(StdSelect_FaceFilter) myFaceFilter;
+  //Handle(ModuleBase_ShapeInPlaneFilter) mySketchFilter;
 };
 
-#endif
\ No newline at end of file
+#endif