X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_SketcherMgr.h;h=3f29ba66117cfe1fea716fdfc3e563336ccf32e5;hb=bb4d0036dd0785056ab21fc237ec7fcc0870ae5f;hp=92c74ef8c5dbaa65bd410f1e4a94b118c7ce13c6;hpb=7074394f8f08413d885f63be01df6bd5007b868c;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_SketcherMgr.h b/src/PartSet/PartSet_SketcherMgr.h index 92c74ef8c..3f29ba661 100644 --- a/src/PartSet/PartSet_SketcherMgr.h +++ b/src/PartSet/PartSet_SketcherMgr.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// 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 @@ -12,10 +12,9 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef PartSet_SketcherMgr_H @@ -23,7 +22,8 @@ #include "PartSet.h" -#include "PartSet_Filters.h" +#include "PartSet_PreviewSketchPlane.h" +#include "XGUI_SelectionFilterType.h" #include "PartSet_Tools.h" #include @@ -31,19 +31,24 @@ #include #include -#include #include #include #include + #include +#include + #include #include +#include #include #include #include +#include + class PartSet_Module; class ModuleBase_IViewWindow; class ModuleBase_ModelWidget; @@ -171,6 +176,10 @@ public: /// Returns current Sketch feature/ Returns NULL if there is no launched sketch operation CompositeFeaturePtr activeSketch() const { return myCurrentSketch; } + /// Returns help class to visualize sketcher plane + /// \return a preview plane + PartSet_PreviewSketchPlane* previewSketchPlane() const { return mySketchPlane; } + /// Starts sketch operation void startSketch(ModuleBase_Operation* ); @@ -189,9 +198,16 @@ public: /// \param theOperation a committed operation void commitNestedSketch(ModuleBase_Operation* theOperation); - /// Append the sketch plane filter into the current viewer - /// \param toActivate state whether the filter should be activated/deactivated - void activatePlaneFilter(const bool& toActivate); + /// Returns true if the filter is created by the sketch manager + /// \param theFilterType a checked type + /// \return boolean value + bool sketchSelectionFilter(const XGUI_SelectionFilterType theFilterType); + + /// Append selection filter into the module and type of the filter in internal container + /// \param theFilterType selection filter type + /// \param theFilter added filter + void registerSelectionFilter(const XGUI_SelectionFilterType theFilterType, + const Handle(SelectMgr_Filter)& theFilter); /// Commit the operation if it is possible. If the operation is dimention constraint, /// it gives widget editor to input dimention value @@ -291,8 +307,9 @@ public: static const QStringList& constraintsIdList(); /// Returns a list of modes, where the AIS objects should be activated + /// \param theSketch a sketch object, modes are empty if sketch plane is not defined yet /// \param theModes a list of modes - static void sketchSelectionModes(QIntList& theModes); + static void sketchSelectionModes(const CompositeFeaturePtr& theSketch, QIntList& theModes); /// Create specific for the module presentation /// \param theResult an object for presentation @@ -319,10 +336,18 @@ public: void updateBySketchParameters(const PartSet_Tools::ConstraintVisibleState& theType, bool theState); + bool isShowFreePointsShown() const { + return myPointsHighlight.size() > 0; + } + public slots: /// Process sketch plane selected event void onPlaneSelected(const std::shared_ptr& thePln); + /// The slot is called when user checks "Show free points" button + /// \param toShow a state of the check box + void onShowPoints(bool toShow); + private slots: /// Toggle show constraints void onShowConstraintsToggle(int theType, bool theState); @@ -413,6 +438,7 @@ private: private: PartSet_Module* myModule; + PartSet_PreviewSketchPlane* mySketchPlane; // display/erase sketch plane on start/stop sketch bool myPreviousDrawModeEnabled; // the previous selection enabled state in the viewer bool myIsEditLaunching; @@ -427,14 +453,16 @@ private: CompositeFeaturePtr myCurrentSketch; - Handle(PartSet_CirclePointFilter) myCirclePointFilter; - Handle(ModuleBase_ShapeInPlaneFilter) myPlaneFilter; + std::set mySelectionFilterTypes; + FeatureToSelectionMap myCurrentSelection; bool myPreviousUpdateViewerEnabled; QMap myIsConstraintsShown; PartSet_ExternalPointsMgr* myExternalPointsMgr; + + QMap myPointsHighlight; };