Salome HOME
Restart a line creation by mouse move, other create operation are restarted by mouse...
[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 protected slots:
105   /// Process mouse release event
106   /// \param theWnd a view window
107   /// \param theEvent a mouse event
108   void onMouseRelease(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent);
109
110 protected:
111   /// Saves the internal parameters to the given feature
112   /// \return True in success
113   virtual bool storeValueCustom() const;
114
115   virtual bool restoreValueCustom();
116
117   /// The methiod called when widget is activated
118   virtual void activateCustom();
119
120   /// Returns true if the feature contains Point2D attribute with the same coordinates
121   /// The attribute of the widget is not processed.
122   /// \param theFeature a feature
123   /// \param theX the X coordinate
124   /// \param theY the Y coordinate
125   /// \return boolean result
126   bool isFeatureContainsPoint(const FeaturePtr& theFeature, double theX, double theY);
127
128 private slots:
129   /// Process value changed event
130   void onValuesChanged();
131
132  private:
133    /// Returns point 2d from selected vertex
134    /// \param theView a view window
135    /// \param theShape a vertex shape
136    /// \param theX an output value of X coordinate
137    /// \param theY an output value of Y coordinate
138    bool getPoint2d(const Handle(V3d_View)& theView, const TopoDS_Shape& theShape, 
139                    double& theX, double& theY) const;
140
141    /// Create a coincidence constraint between the attribute and the parameter object
142    /// \theObject a result object
143    void setConstraintWith(const ObjectPtr& theObject);
144
145 protected:
146   ModuleBase_IWorkshop* myWorkshop;
147
148 private:
149   PartSet_LockApplyMgr* myLockApplyMgr; ///< a manager to lock/unlock Apply button in PP
150
151   QGroupBox* myGroupBox;  ///< the parent group box for all intenal widgets
152   ModuleBase_ParamSpinBox* myXSpin;  ///< the spin box for the X coordinate
153   ModuleBase_ParamSpinBox* myYSpin;  ///< the spin box for the Y coordinate
154
155   //std::string myOptionParam;  /// Parameter name which has to be taken from previous feature
156
157   CompositeFeaturePtr mySketch;
158 };
159
160 #endif