Salome HOME
Shape plane filter should process shapes of objects selected in object browser.
[modules/shaper.git] / src / PartSet / PartSet_WidgetPoint2d.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_WidgetPoint2d.h
4 // Created:     25 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef PartSet_WidgetPoint2D_H
8 #define PartSet_WidgetPoint2D_H
9
10 #include "PartSet.h"
11 #include <ModelAPI_CompositeFeature.h>
12 #include <ModuleBase_ModelWidget.h>
13
14 #include <QObject>
15
16 #include <TopoDS_Shape.hxx>
17 #include <V3d_View.hxx>
18
19 class ModelAPI_Feature;
20 class ModuleBase_IWorkshop;
21 class ModuleBase_ParamSpinBox;
22 class ModuleBase_IViewWindow;
23 class GeomAPI_Pnt2d;
24 class ModuleBase_IWorkshop;
25 class PartSet_LockApplyMgr;
26
27 class QGroupBox;
28 class QMouseEvent;
29
30 /**\class PartSet_WidgetPoint2D
31  * \ingroup Modules
32  * \brief Implementation of model widget to provide widget to input point 2d
33  * In XML can be defined as folloung:
34  * \code
35  * <sketch-2dpoint_selector id="CircleCenter" title="Center" tooltip="Center coordinates"/>
36  * \endcode
37  */
38 class PARTSET_EXPORT PartSet_WidgetPoint2D : public ModuleBase_ModelWidget
39 {
40 Q_OBJECT
41  public:
42   /// Constructor
43   /// \param theParent the parent object
44   /// \param theWorkshop a current workshop
45   /// \param theData the widget configuation. The attribute of the model widget is obtained from
46   /// \param theParentId is Id of a parent of the current attribute
47   PartSet_WidgetPoint2D(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
48                         const Config_WidgetAPI* theData, 
49                         const std::string& theParentId);
50   /// Destructor
51   virtual ~PartSet_WidgetPoint2D();
52
53   /// Fills the widget with default values
54   virtual bool reset();
55
56   /// Set the given wrapped value to the current widget
57   /// This value should be processed in the widget according to the needs
58   /// \param theValues the wrapped widget values
59   virtual bool setSelection(QList<ModuleBase_ViewerPrs>& theValues,
60                             const bool theToValidate);
61
62   virtual bool restoreValue();
63
64   /// Returns list of widget controls
65   /// \return a control list
66   virtual QList<QWidget*> getControls() const;
67
68   //bool initFromPrevious(ObjectPtr theObject);
69
70   /// The methiod called when widget is deactivated
71   virtual void deactivate();
72
73   /// \returns the sketch instance
74   CompositeFeaturePtr sketch() const { return mySketch; }
75
76   /// Set sketch instance
77   void setSketch(CompositeFeaturePtr theSketch) { mySketch = theSketch; }
78
79   /// Fill the widget values by given point
80   /// \param theX the X coordinate
81   /// \param theY the Y coordinate
82   /// \returns True in case of success
83   bool setPoint(double theX, double theY);
84
85   /// Returns coordinate X currently defined in the control
86   double x() const;
87
88   /// Returns coordinate Y currently defined in the control
89   double y() const;
90
91 signals:
92   /// Signal about selection of an existing vertex from an object
93   void vertexSelected();
94
95 public slots:
96   /// Process mouse move event
97   /// \param theWnd a view window
98   /// \param theEvent a mouse event
99   void onMouseMove(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent);
100
101 protected slots:
102   /// Process mouse release event
103   /// \param theWnd a view window
104   /// \param theEvent a mouse event
105   void onMouseRelease(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent);
106
107 protected:
108   /// Saves the internal parameters to the given feature
109   /// \return True in success
110   virtual bool storeValueCustom() const;
111
112   /// The methiod called when widget is activated
113   virtual void activateCustom();
114
115 private slots:
116   /// Process value changed event
117   void onValuesChanged();
118
119  private:
120    /// Returns point 2d from selected vertex
121    /// \param theView a view window
122    /// \param theShape a vertex shape
123    /// \param theX an output value of X coordinate
124    /// \param theY an output value of Y coordinate
125    bool getPoint2d(const Handle(V3d_View)& theView, const TopoDS_Shape& theShape, 
126                    double& theX, double& theY) const;
127
128    /// Create a coincidence constraint between the attribute and the parameter object
129    /// \theObject a result object
130    void setConstraintWith(const ObjectPtr& theObject);
131
132   ModuleBase_IWorkshop* myWorkshop;
133   PartSet_LockApplyMgr* myLockApplyMgr; ///< a manager to lock/unlock Apply button in PP
134
135   QGroupBox* myGroupBox;  ///< the parent group box for all intenal widgets
136   ModuleBase_ParamSpinBox* myXSpin;  ///< the spin box for the X coordinate
137   ModuleBase_ParamSpinBox* myYSpin;  ///< the spin box for the Y coordinate
138
139   //std::string myOptionParam;  /// Parameter name which has to be taken from previous feature
140
141   CompositeFeaturePtr mySketch;
142 };
143
144 #endif