X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_WidgetPoint2d.h;h=d4271e5589c6c4d8319a8b29427d37f9b4af21a5;hb=33c5fdce3cd63dd95a738439a0399dd982abcd73;hp=6e9ba600394b85dec9abac749e0b735da2a62ba9;hpb=ab1bda83012eb4d966504330bde07d18d0bbf3d0;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_WidgetPoint2d.h b/src/PartSet/PartSet_WidgetPoint2d.h old mode 100644 new mode 100755 index 6e9ba6003..d4271e558 --- a/src/PartSet/PartSet_WidgetPoint2d.h +++ b/src/PartSet/PartSet_WidgetPoint2d.h @@ -22,7 +22,6 @@ class ModuleBase_ParamSpinBox; class ModuleBase_IViewWindow; class GeomAPI_Pnt2d; class ModuleBase_IWorkshop; -class PartSet_LockApplyMgr; class QGroupBox; class QMouseEvent; @@ -50,15 +49,15 @@ Q_OBJECT /// Destructor virtual ~PartSet_WidgetPoint2D(); - /// Fills the widget with default values - virtual bool reset(); - /// Set the given wrapped value to the current widget /// This value should be processed in the widget according to the needs /// \param theValues the wrapped widget values - virtual bool setSelection(QList& theValues); + /// \param theToValidate a validation flag + virtual bool setSelection(QList& theValues, + const bool theToValidate); - virtual bool restoreValue(); + /// Select the internal content if it can be selected. It is empty in the default realization + virtual void selectContent(); /// Returns list of widget controls /// \return a control list @@ -66,6 +65,10 @@ Q_OBJECT //bool initFromPrevious(ObjectPtr theObject); + /// Defines if the widget can be activated by mouse move. + /// By default it returns false + virtual bool canBeActivatedByMove(); + /// The methiod called when widget is deactivated virtual void deactivate(); @@ -87,6 +90,13 @@ Q_OBJECT /// Returns coordinate Y currently defined in the control double y() const; + /// Returns true if the event is processed. + virtual bool processEnter(); + + /// Returns true if the attribute can be changed using the selected shapes in the viewer + /// and creating a coincidence constraint to them. This control use them. + virtual bool useSelectedShapes() const; + signals: /// Signal about selection of an existing vertex from an object void vertexSelected(); @@ -97,7 +107,6 @@ public slots: /// \param theEvent a mouse event void onMouseMove(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent); -protected slots: /// Process mouse release event /// \param theWnd a view window /// \param theEvent a mouse event @@ -108,12 +117,41 @@ protected: /// \return True in success virtual bool storeValueCustom() const; + /// Restore value from attribute data to the widget's control + virtual bool restoreValueCustom(); + + /// Store current value in cashed value + void storeCurentValue(); + + /// Restore cashed value in the model attribute + /// \return boolean state if the restored feature shoud be hidden + bool restoreCurentValue(); + + /// Fills the widget with default values + /// \return true if the widget current value is reset + virtual bool resetCustom(); + /// The methiod called when widget is activated virtual void activateCustom(); -private slots: + /// Returns true if the feature contains Point2D attribute with the same coordinates + /// The attribute of the widget is not processed. + /// \param theFeature a feature + /// \param theX the X coordinate + /// \param theY the Y coordinate + /// \return boolean result + bool isFeatureContainsPoint(const FeaturePtr& theFeature, double theX, double theY); + +//private slots: /// Process value changed event - void onValuesChanged(); + //void onValuesChanged(); + + /// Compute the feature default value and fill the controls with it + /// or store the control value to the feature + /// The widget is not initialize the attribute value in order to avoid the + /// incorrect visualization in Sketch. E.g. by a line creation, the line should not + /// be visualized immediatelly when the end point widget is activated. + virtual void initializeValueByActivate(); private: /// Returns point 2d from selected vertex @@ -128,8 +166,22 @@ private slots: /// \theObject a result object void setConstraintWith(const ObjectPtr& theObject); - ModuleBase_IWorkshop* myWorkshop; - PartSet_LockApplyMgr* myLockApplyMgr; ///< a manager to lock/unlock Apply button in PP + /// Returns if the feature is an orphan point, circle or an arc. Returns true if it + /// has no a coincident to other lines. It processes point, circle and arc features + /// In circle an arc features, only centers are processed, for other points, it returns + /// that the point is not an orphan. + /// \param theFeature a checked feature + /// \param theSketch a sketch + /// \param theX an X coordinate of the point + /// \param theY an Y coordinate of the point + /// \return boolean result + static bool isOrphanPoint(const FeaturePtr& theFeature, const CompositeFeaturePtr& theSketch, + double theX, double theY, const bool theSearchInResults = false); + +protected: + ModuleBase_IWorkshop* myWorkshop; ///< workshop + +private: QGroupBox* myGroupBox; ///< the parent group box for all intenal widgets ModuleBase_ParamSpinBox* myXSpin; ///< the spin box for the X coordinate @@ -138,6 +190,11 @@ private slots: //std::string myOptionParam; /// Parameter name which has to be taken from previous feature CompositeFeaturePtr mySketch; + + bool myValueIsCashed; /// boolean state if the value is cashed during value state change + bool myIsFeatureVisibleInCash; /// boolean value if the feature was visible when cash if filled + double myXValueInCash; /// the cashed X value during value state change + double myYValueInCash; /// the cashed Y value during value state change }; #endif