X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_WidgetSketchLabel.h;h=ba5c2bb50185909acf9f1e81bb5950cdd459a628;hb=ccebb4b23e0354829c9636110b903c59923d8e30;hp=8288bdf82ac54d8248693eaa42f5c28682cc668f;hpb=3c0b551f57002a6e5195ef959f8056aa9df72baf;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_WidgetSketchLabel.h b/src/PartSet/PartSet_WidgetSketchLabel.h index 8288bdf82..ba5c2bb50 100644 --- a/src/PartSet/PartSet_WidgetSketchLabel.h +++ b/src/PartSet/PartSet_WidgetSketchLabel.h @@ -1,57 +1,90 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: PartSet_WidgetSketchLabel.h -// Created: 07 July 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef PartSet_WidgetSketchLabel_H #define PartSet_WidgetSketchLabel_H #include "PartSet.h" -#include +#include "PartSet_Tools.h" + +#include #include -#include #include -#include -#include #include +#include +#include + +class PartSet_PreviewPlanes; + class QLabel; -class QTimer; class XGUI_OperationMgr; class XGUI_Workshop; - -/// the plane edge width -#define SKETCH_WIDTH "4" - -/// face of the square-face displayed for selection of general plane -#define PLANE_SIZE "200" +class QCheckBox; +class QStackedWidget; +class QLineEdit; +class QPushButton; +class QDialog; /** * \ingroup Modules * A model widget implementation for a label which provides specific behaviour * for sketcher starting and launching operations */ -class PARTSET_EXPORT PartSet_WidgetSketchLabel : public ModuleBase_ModelWidget +class PARTSET_EXPORT PartSet_WidgetSketchLabel : public ModuleBase_WidgetValidated { Q_OBJECT - public: + +public: /// Constructor /// \param theParent the parent object + /// \param theWorkshop a reference to workshop /// \param theData the widget configuation. The attribute of the model widget is obtained from - /// \param theParentId is Id of a parent of the current attribute - PartSet_WidgetSketchLabel(QWidget* theParent, const Config_WidgetAPI* theData, - const std::string& theParentId); + /// \param toShowConstraints a current show constraints state + PartSet_WidgetSketchLabel(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop, + const Config_WidgetAPI* theData, + const QMap& toShowConstraints); virtual ~PartSet_WidgetSketchLabel(); - virtual bool restoreValue() - { - return true; - } + /// Set the given wrapped value to the current widget + /// This value should be processed in the widget according to the needs + /// The method is called by the current operation to process the operation preselection. + /// 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 + virtual bool setSelection(QList>& theValues, + const bool theToValidate); + + /// Fills given container with selection modes if the widget has it + /// \param [out] theModuleSelectionModes module additional modes, -1 means all default modes + /// \param theModes [out] a container of modes + virtual void selectionModes(int& theModuleSelectionModes, QIntList& theModes); + + /// Using widget selection filter only if plane is not defined. + /// \param [out] theModuleSelectionFilters module additional modes, -1 means all default modes + /// \param [out] selection filters + virtual void selectionFilters(QIntList& theModuleSelectionFilters, + SelectMgr_ListOfFilter& theSelectionFilters); /// Returns list of widget controls /// \return a control list @@ -60,72 +93,171 @@ Q_OBJECT /// The methiod called when widget is deactivated virtual void deactivate(); - /// Returns pointer to workshop - XGUI_Workshop* workshop() const { return myWorkshop; } - - /// Set pointer to workshop - /// \param theWork a pointer to workshop - void setWorkshop(XGUI_Workshop* theWork) { myWorkshop = theWork; } + /// The method called if widget should be activated always + virtual bool needToBeActivated() { return true; } /// Returns sketcher plane std::shared_ptr plane() const; + /// This control accepts focus + virtual bool focusTo(); + 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); + + /// 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 void planeSelected(const std::shared_ptr& thePln); + /// A show constraint toggled signal + /// \param theType a ConstraintVisibleState value + /// \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 + /// parameters of the current attribute + /// \param theAttribute an attribute to be stored + virtual void storeAttributeValue(const AttributePtr& theAttribute); + + /// Creates a backup of the current values of the attribute + /// It should be realized in the specific widget because of different + /// parameters of the current attribute + /// \param theAttribute an attribute to be restored + /// \param theValid a boolean flag, if restore happens for valid parameters + virtual void restoreAttributeValue(const AttributePtr& theAttribute, + const bool theValid); + + /// Fills the attribute with the value of the selected owner + /// \param thePrs a selected owner + virtual bool setSelectionCustom(const std::shared_ptr& thePrs); + /// Saves the internal parameters to the given feature /// \return True in success - virtual bool storeValueCustom() const + virtual bool storeValueCustom() { return true; } + virtual bool restoreValueCustom(); + /// The methiod called when widget is activated virtual void activateCustom(); - private slots: - /// Slot on plane selection - void onPlaneSelected(); + /// Block the model flush of update and intialization of attribute + /// In additional to curstom realization it blocks initialization for all feature attributes + /// as the current attribute is selection but its modification leads to other attributes change + /// \param theAttribute an attribute + /// \param theToBlock flag whether the model is blocked or unblocked + /// \param isFlushesActived out value if model is blocked, in value if model is unblocked + /// to be used to restore flush state when unblocked + /// \param isAttributeSetInitializedBlocked out value if model is blocked + /// in value if model is unblocked to be used to restore previous state when unblocked + /// \param isAttributeSendUpdatedBlocked out value if model signal is blocked + virtual void blockAttribute(const AttributePtr& theAttribute, const bool& theToBlock, + bool& isFlushesActived, + bool& isAttributeSetInitializedBlocked, + bool& isAttributeSendUpdatedBlocked); + + /// Returns true if envent is processed. + virtual bool processSelection(); + + /// Set the given wrapped value to the current widget + /// This value should be processed in the widget according to the needs + /// The method is called by the current operation to process the operation preselection. + /// 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, + const bool theToValidate); + + /// Erase preview planes, disconnect widget, change the view projection + /// \param thePrs a selected presentation + void updateByPlaneSelected(const std::shared_ptr& thePrs); - /// Set sketch specific mode of selection - void setSketchingMode(); + /// Set sketch plane from selected object + /// \param theFeature a feature of sketch + /// \param thePrs a presentation + bool fillSketchPlaneBySelection(const std::shared_ptr& thePrs); - private: - /// Create preview of planes for sketch plane selection - /// \param theOrigin an origin of the plane - /// \param theNorm a normal vector of the plane - /// \param theRGB a color of plane presentation [r, g, b] array - AISObjectPtr createPreviewPlane(std::shared_ptr theOrigin, - std::shared_ptr theNorm, - const int theRGB[3]); + virtual void showEvent(QShowEvent* theEvent); + +private slots: + /// A slot called on set sketch plane view + void onSetPlaneView(); + + /// Emits signal about check box state changed with information about ConstraintVisibleState + /// \param theOn a flag show constraints or not + void onShowConstraint(bool theOn); + + void onChangePlane(); + + void onShowDOF(); + + void onShowPanel(); + +private: /// Set sketch plane by shape /// \param theShape a planar face std::shared_ptr setSketchPlane(const TopoDS_Shape& theShape); - /// Erase preview planes - void erasePreviewPlanes(); + /// Set sketch plane + /// \param thePlane a plane + std::shared_ptr setSketchPlane(std::shared_ptr thePlane); + + /** + * Returns list of presentations which have displayed shapes with circular edges + * (circles, arcs) which are in pane of of the given sketch + * \param theSketch - the sketch + */ + QList> findCircularEdgesInPlane(); - /// Show preview planes - void showPreviewPlanes(); +private: + /// class to show/hide preview planes + PartSet_PreviewPlanes* myPreviewPlanes; + QCheckBox* myViewInverted; + QCheckBox* myRemoveExternal; + QCheckBox* myShowPoints; + QCheckBox* myAutoConstraints; - QLabel* myLabel; - QString myText; - QString myTooltip; + QMap myShowConstraints; - XGUI_Workshop* myWorkshop; + QWidget* mySizeOfViewWidget; ///< Size of view widget, visualized if preview planes are shown + QLineEdit* mySizeOfView; ///< Value of square of size of View + QStackedWidget* myStackWidget; - AISObjectPtr myYZPlane; - AISObjectPtr myXZPlane; - AISObjectPtr myXYPlane; - bool myPreviewDisplayed; + QLabel* myDoFLabel; + QPushButton* myShowDOFBtn; - Handle(StdSelect_FaceFilter) myFaceFilter; + bool myOpenTransaction; + bool myIsSelection; - QTimer* mySelectionTimer; + QDialog* myPartSetMessage; + QDialog* mySizeMessage; }; #endif