X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_WidgetSketchLabel.h;h=9424d07e4d42d8b92bd2e4a93218d09b5eb519ec;hb=06e7f5859095193fc7f498bd89a7d28009794f53;hp=6f7b1a8d05f4e56acf63627e46a0c556f10f13d0;hpb=4fcd7c5e40f2bdbb084fa348afd5dcce7ba9882a;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_WidgetSketchLabel.h b/src/PartSet/PartSet_WidgetSketchLabel.h index 6f7b1a8d0..9424d07e4 100644 --- a/src/PartSet/PartSet_WidgetSketchLabel.h +++ b/src/PartSet/PartSet_WidgetSketchLabel.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -26,11 +26,13 @@ #include #include +#include #include #include +#include #include class PartSet_PreviewPlanes; @@ -41,6 +43,8 @@ class XGUI_Workshop; class QCheckBox; class QStackedWidget; class QLineEdit; +class QPushButton; +class QDialog; /** * \ingroup Modules @@ -101,9 +105,19 @@ public: virtual void setHighlighted(bool) { /*do nothing*/ }; virtual void enableFocusProcessing(); + /// Set current state of show free points + /// \param theState a state of the corresponded check box + void setShowPointsState(bool theState); + /// Returns True if the selected presentation can be used for plane definition /// \param thePrs a presentation - static bool canFillSketch(const std::shared_ptr& thePrs); + static bool canFillSketch(const ModuleBase_ViewerPrsPtr& thePrs); + + /// If widgets has several panels then this method has to show a page which contains information + /// for current feature. By default does nothing + virtual void showInformativePage() { + if (myStackWidget) myStackWidget->setCurrentIndex(1); + } signals: /// Signal on plane selection @@ -114,6 +128,14 @@ signals: /// \param theState a state of the check box void showConstraintToggled(int theType, bool theState); + /// The signal is emitted when user checks "Show free points" button + /// \param toShow a state of the check box + void showFreePoints(bool toShow); + + /// The signal is emitted when user checks "Automatic constraints" button + /// \param isOn a state of the check box + void autoConstraints(bool isOn); + protected: /// Creates a backup of the current values of the attribute /// It should be realized in the specific widget because of different @@ -131,7 +153,7 @@ protected: /// Fills the attribute with the value of the selected owner /// \param thePrs a selected owner - virtual bool setSelectionCustom(const std::shared_ptr& thePrs); + virtual bool setSelectionCustom(const ModuleBase_ViewerPrsPtr& thePrs); /// Saves the internal parameters to the given feature /// \return True in success @@ -140,10 +162,7 @@ protected: return true; } - virtual bool restoreValueCustom() - { - return true; - } + virtual bool restoreValueCustom(); /// The methiod called when widget is activated virtual void activateCustom(); @@ -172,17 +191,26 @@ protected: /// It is redefined to do nothing if the plane of the sketch has been already set. /// \param theValues the wrapped selection values /// \param theToValidate a validation flag - bool setSelectionInternal(const QList>& theValues, + bool setSelectionInternal(const QList& theValues, const bool theToValidate); /// Erase preview planes, disconnect widget, change the view projection /// \param thePrs a selected presentation - void updateByPlaneSelected(const std::shared_ptr& thePrs); + void updateByPlaneSelected(const ModuleBase_ViewerPrsPtr& thePrs); /// Set sketch plane from selected object /// \param theFeature a feature of sketch /// \param thePrs a presentation - bool fillSketchPlaneBySelection(const std::shared_ptr& thePrs); + bool fillSketchPlaneBySelection(const ModuleBase_ViewerPrsPtr& thePrs); + + /// Redefinition of a virtual function + virtual void showEvent(QShowEvent* theEvent); + + /// Redefinition of a virtual function + virtual void hideEvent(QHideEvent* theEvent); + + /// Redefinition of a virtual function + virtual bool eventFilter(QObject* theObj, QEvent* theEvent); private slots: /// A slot called on set sketch plane view @@ -192,8 +220,18 @@ private slots: /// \param theOn a flag show constraints or not void onShowConstraint(bool theOn); + /// A a slot called on "Change sketch plane" check box toggele void onChangePlane(); + /// A a slot called on "Show remaining DOFs" check box toggele + void onShowDOF(); + + /// A a slot called on changing the panel visibility + void onShowPanel(); + + /// A slot which is called on "Visible" plane checkbox toggle + void onShowViewPlane(bool); + private: /// Set sketch plane by shape /// \param theShape a planar face @@ -208,13 +246,17 @@ private: * (circles, arcs) which are in pane of of the given sketch * \param theSketch - the sketch */ - QList> findCircularEdgesInPlane(); + QList findCircularEdgesInPlane(); private: /// class to show/hide preview planes PartSet_PreviewPlanes* myPreviewPlanes; QCheckBox* myViewInverted; + QCheckBox* myViewVisible; + QCheckBox* myRemoveExternal; + QCheckBox* myShowPoints; + QCheckBox* myAutoConstraints; QMap myShowConstraints; @@ -222,7 +264,16 @@ private: QLineEdit* mySizeOfView; ///< Value of square of size of View QStackedWidget* myStackWidget; + QLabel* myDoFLabel; + QPushButton* myShowDOFBtn; + bool myOpenTransaction; + bool myIsSelection; + + QDialog* myPartSetMessage; + QDialog* mySizeMessage; + + GeomPlanePtr myTmpPlane; }; #endif