Salome HOME
0fa5c18f0372ca342b139a377c9a8ea5a94e4ffc
[modules/shaper.git] / src / PartSet / PartSet_WidgetSketchLabel.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_WidgetSketchLabel.h
4 // Created:     07 July 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef PartSet_WidgetSketchLabel_H
8 #define PartSet_WidgetSketchLabel_H
9
10 #include "PartSet.h"
11
12 #include <ModuleBase_ModelWidget.h>
13 #include <ModuleBase_ViewerFilters.h>
14
15 #include <GeomAPI_Pnt.h>
16 #include <GeomAPI_Dir.h>
17 #include <GeomAPI_AISObject.h>
18
19 #include <StdSelect_FaceFilter.hxx>
20 #include <TopoDS_Shape.hxx>
21
22 class QLabel;
23 class QTimer;
24 class XGUI_OperationMgr;
25 class XGUI_Workshop;
26
27 /// the plane edge width
28 #define SKETCH_WIDTH        "4"
29
30 /// face of the square-face displayed for selection of general plane
31 #define PLANE_SIZE          "200"
32
33 /**
34 * \ingroup Modules
35 * A model widget implementation for a label which provides specific behaviour 
36 * for sketcher starting and launching operations
37 */
38 class PARTSET_EXPORT PartSet_WidgetSketchLabel : public ModuleBase_ModelWidget
39 {
40 Q_OBJECT
41  public:
42   /// Constructor
43   /// \param theParent the parent object
44   /// \param theData the widget configuation. The attribute of the model widget is obtained from
45   /// \param theParentId is Id of a parent of the current attribute
46   PartSet_WidgetSketchLabel(QWidget* theParent, const Config_WidgetAPI* theData,
47                             const std::string& theParentId);
48
49   virtual ~PartSet_WidgetSketchLabel();
50
51   virtual bool restoreValue()
52   {
53     return true;
54   }
55
56   /// Returns list of widget controls
57   /// \return a control list
58   virtual QList<QWidget*> getControls() const;
59
60   QWidget* getControl() const;
61
62   /// The methiod called when widget is deactivated
63   virtual void deactivate();
64
65   /// Returns pointer to workshop
66   XGUI_Workshop* workshop() const { return myWorkshop; }
67
68   /// Set pointer to workshop
69   /// \param theWork a pointer to workshop
70   void setWorkshop(XGUI_Workshop* theWork) { myWorkshop = theWork; }
71
72   /// Returns sketcher plane
73   std::shared_ptr<GeomAPI_Pln> plane() const;
74
75 signals:
76   /// Signal on plane selection
77   void planeSelected(const std::shared_ptr<GeomAPI_Pln>& thePln);
78
79 protected:
80   /// Saves the internal parameters to the given feature
81   /// \return True in success
82   virtual bool storeValue() const
83   {
84     return true;
85   }
86
87   /// The methiod called when widget is activated
88   virtual void activateCustom();
89
90  private slots:
91    /// Slot on plane selection
92   void onPlaneSelected();
93
94   /// Set sketch specific mode of selection
95   void setSketchingMode();
96
97  private:
98    /// Create preview of planes for sketch plane selection
99    /// \param theOrigin an origin of the plane
100    /// \param theNorm a normal vector of the plane
101    /// \param theRGB a color of plane presentation [r, g, b] array
102   AISObjectPtr createPreviewPlane(std::shared_ptr<GeomAPI_Pnt> theOrigin, 
103                                   std::shared_ptr<GeomAPI_Dir> theNorm, 
104                                   const int theRGB[3]);
105
106   /// Set sketch plane by shape
107   /// \param theShape a planar face
108   std::shared_ptr<GeomAPI_Dir> setSketchPlane(const TopoDS_Shape& theShape);
109
110   /// Erase preview planes
111   void erasePreviewPlanes();
112
113   /// Show preview planes
114   void showPreviewPlanes();
115
116
117   QLabel* myLabel;
118   QString myText;
119   QString myTooltip;
120
121   XGUI_Workshop* myWorkshop;
122
123   AISObjectPtr myYZPlane;
124   AISObjectPtr myXZPlane;
125   AISObjectPtr myXYPlane;
126   bool myPreviewDisplayed;
127
128   Handle(StdSelect_FaceFilter) myFaceFilter;
129
130   QTimer* mySelectionTimer;
131 };
132
133 #endif