Salome HOME
Fill circle start point by click in the viewer when the opeation is restarted.
[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   /// \param theToValidate a validation flag
60   virtual bool setSelection(QList<ModuleBase_ViewerPrs>& theValues,
61                             const bool theToValidate);
62
63   /// Returns list of widget controls
64   /// \return a control list
65   virtual QList<QWidget*> getControls() const;
66
67   //bool initFromPrevious(ObjectPtr theObject);
68
69   /// Defines if the widget can be activated by mouse move.
70   /// By default it returns false
71   virtual bool canBeActivatedByMove();
72
73   /// The methiod called when widget is deactivated
74   virtual void deactivate();
75
76   /// \returns the sketch instance
77   CompositeFeaturePtr sketch() const { return mySketch; }
78
79   /// Set sketch instance
80   void setSketch(CompositeFeaturePtr theSketch) { mySketch = theSketch; }
81
82   /// Fill the widget values by given point
83   /// \param theX the X coordinate
84   /// \param theY the Y coordinate
85   /// \returns True in case of success
86   bool setPoint(double theX, double theY);
87
88   /// Returns coordinate X currently defined in the control
89   double x() const;
90
91   /// Returns coordinate Y currently defined in the control
92   double y() const;
93
94 signals:
95   /// Signal about selection of an existing vertex from an object
96   void vertexSelected();
97
98 public slots:
99   /// Process mouse move event
100   /// \param theWnd a view window
101   /// \param theEvent a mouse event
102   void onMouseMove(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent);
103
104   /// Process mouse release event
105   /// \param theWnd a view window
106   /// \param theEvent a mouse event
107   void onMouseRelease(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent);
108
109 protected:
110   /// Saves the internal parameters to the given feature
111   /// \return True in success
112   virtual bool storeValueCustom() const;
113
114   virtual bool restoreValueCustom();
115
116   /// The methiod called when widget is activated
117   virtual void activateCustom();
118
119   /// Returns true if the feature contains Point2D attribute with the same coordinates
120   /// The attribute of the widget is not processed.
121   /// \param theFeature a feature
122   /// \param theX the X coordinate
123   /// \param theY the Y coordinate
124   /// \return boolean result
125   bool isFeatureContainsPoint(const FeaturePtr& theFeature, double theX, double theY);
126
127 private slots:
128   /// Process value changed event
129   void onValuesChanged();
130
131  private:
132    /// Returns point 2d from selected vertex
133    /// \param theView a view window
134    /// \param theShape a vertex shape
135    /// \param theX an output value of X coordinate
136    /// \param theY an output value of Y coordinate
137    bool getPoint2d(const Handle(V3d_View)& theView, const TopoDS_Shape& theShape, 
138                    double& theX, double& theY) const;
139
140    /// Create a coincidence constraint between the attribute and the parameter object
141    /// \theObject a result object
142    void setConstraintWith(const ObjectPtr& theObject);
143
144 protected:
145   ModuleBase_IWorkshop* myWorkshop;
146
147 private:
148   PartSet_LockApplyMgr* myLockApplyMgr; ///< a manager to lock/unlock Apply button in PP
149
150   QGroupBox* myGroupBox;  ///< the parent group box for all intenal widgets
151   ModuleBase_ParamSpinBox* myXSpin;  ///< the spin box for the X coordinate
152   ModuleBase_ParamSpinBox* myYSpin;  ///< the spin box for the Y coordinate
153
154   //std::string myOptionParam;  /// Parameter name which has to be taken from previous feature
155
156   CompositeFeaturePtr mySketch;
157 };
158
159 #endif