Salome HOME
90c291bcdcf56086d4b717ebdb019469f62b85b3
[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 "PartSet_Tools.h"
13
14 #include <ModuleBase_WidgetValidated.h>
15 #include <ModuleBase_ViewerFilters.h>
16
17 #include <GeomAPI_Pnt.h>
18 #include <GeomAPI_Dir.h>
19 #include <GeomAPI_AISObject.h>
20
21 #include <TopoDS_Shape.hxx>
22
23 #include <QMap>
24
25 class QLabel;
26 class XGUI_OperationMgr;
27 class XGUI_Workshop;
28 class QCheckBox;
29 class QStackedWidget;
30
31 /// the plane edge width
32 #define SKETCH_WIDTH        "4"
33
34 /// face of the square-face displayed for selection of general plane
35 #define PLANE_SIZE          "200"
36
37 /**
38 * \ingroup Modules
39 * A model widget implementation for a label which provides specific behaviour 
40 * for sketcher starting and launching operations
41 */
42 class PARTSET_EXPORT PartSet_WidgetSketchLabel : public ModuleBase_WidgetValidated
43 {
44 Q_OBJECT
45
46 public:
47   /// Constructor
48   /// \param theParent the parent object
49   /// \param theWorkshop a reference to workshop
50   /// \param theData the widget configuation. The attribute of the model widget is obtained from
51   /// \param toShowConstraints a current show constraints state
52   PartSet_WidgetSketchLabel(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
53                       const Config_WidgetAPI* theData,
54                       const QMap<PartSet_Tools::ConstraintVisibleState, bool>& toShowConstraints);
55
56   virtual ~PartSet_WidgetSketchLabel();
57
58   /// Set the given wrapped value to the current widget
59   /// This value should be processed in the widget according to the needs
60   /// The method is called by the current operation to process the operation preselection.
61   /// It is redefined to do nothing if the plane of the sketch has been already set.
62   /// \param theValues the wrapped selection values
63   /// \param theToValidate a validation flag
64   virtual bool setSelection(QList<ModuleBase_ViewerPrs>& theValues,
65                             const bool theToValidate);
66
67   /// Returns list of widget controls
68   /// \return a control list
69   virtual QList<QWidget*> getControls() const;
70
71   /// The methiod called when widget is deactivated
72   virtual void deactivate();
73
74   /// Returns sketcher plane
75   std::shared_ptr<GeomAPI_Pln> plane() const;
76
77   /// This control accepts focus
78   virtual bool focusTo();
79   virtual void setHighlighted(bool) { /*do nothing*/ };
80   virtual void enableFocusProcessing();
81
82 signals:
83   /// Signal on plane selection
84   void planeSelected(const std::shared_ptr<GeomAPI_Pln>& thePln);
85
86   /// A show constraint toggled signal
87   /// \param theType a ConstraintVisibleState value
88   /// \param theState a state of the check box
89   void showConstraintToggled(int theType, bool theState);
90
91 protected:
92   /// Creates a backup of the current values of the attribute
93   /// It should be realized in the specific widget because of different
94   /// parameters of the current attribute
95   virtual void storeAttributeValue();
96
97   /// Creates a backup of the current values of the attribute
98   /// It should be realized in the specific widget because of different
99   /// parameters of the current attribute
100   /// \param theValid a boolean flag, if restore happens for valid parameters
101   virtual void restoreAttributeValue(const bool theValid);
102
103   /// Fills the attribute with the value of the selected owner
104   /// \param thePrs a selected owner
105   virtual bool setSelectionCustom(const ModuleBase_ViewerPrs& thePrs);
106
107   /// Saves the internal parameters to the given feature
108   /// \return True in success
109   virtual bool storeValueCustom() const
110   {
111     return true;
112   }
113
114   virtual bool restoreValueCustom()
115   {
116     return true;
117   }
118
119   /// The methiod called when widget is activated
120   virtual void activateCustom();
121
122   /// Block the model flush of update and intialization of attribute
123   /// In additional to curstom realization it blocks initialization for all feature attributes
124   /// as the current attribute is selection but its modification leads to other attributes change
125   /// \param theToBlock flag whether the model is blocked or unblocked
126   /// \param isActive out value if model is blocked, in value if model is unblocked
127   /// to be used to restore flush state when unblocked
128   /// \param isAttributeSetInitializedBlocked out value if model is blocked
129   /// in value if model is unblocked to be used to restore previous state when unblocked
130   virtual void blockAttribute(const bool& theToBlock, bool& isFlushesActived,
131                               bool& isAttributeSetInitializedBlocked);
132
133   /// Erase preview planes, disconnect widget, change the view projection
134   /// \param thePrs a selected presentation
135   void updateByPlaneSelected(const ModuleBase_ViewerPrs& thePrs);
136
137  protected:
138   /// Activate or deactivate selection
139   void activateSelection(bool toActivate);
140
141  private slots:
142    /// Slot on change selection
143   void onSelectionChanged();
144
145   /// A slot called on set sketch plane view
146   void onSetPlaneView();
147
148   /// Emits signal about check box state changed with information about ConstraintVisibleState
149   /// \param theOn a flag show constraints or not
150   void onShowConstraint(bool theOn);
151
152  private:
153    /// Create preview of planes for sketch plane selection
154    /// \param theOrigin an origin of the plane
155    /// \param theNorm a normal vector of the plane
156    /// \param theRGB a color of plane presentation [r, g, b] array
157   AISObjectPtr createPreviewPlane(std::shared_ptr<GeomAPI_Pnt> theOrigin, 
158                                   std::shared_ptr<GeomAPI_Dir> theNorm, 
159                                   const int theRGB[3]);
160
161   //! Returns workshop
162   XGUI_Workshop* workshop() const;
163
164   /// Set sketch plane by shape
165   /// \param theShape a planar face
166   std::shared_ptr<GeomAPI_Dir> setSketchPlane(const TopoDS_Shape& theShape);
167
168   /// Erase preview planes
169   void erasePreviewPlanes();
170
171   /// Show preview planes
172   void showPreviewPlanes();
173
174
175   AISObjectPtr myYZPlane;
176   AISObjectPtr myXZPlane;
177   AISObjectPtr myXYPlane;
178   bool myPreviewDisplayed;
179
180   QCheckBox* myViewInverted;
181
182   QMap<PartSet_Tools::ConstraintVisibleState, QCheckBox*> myShowConstraints;
183
184   QStackedWidget* myStackWidget;
185 };
186
187 #endif