X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_SketcherMgr.h;h=634916b7814fb3019823ab6dea15a4305e24547a;hb=77c928cf42b17926f8e493ce556b9cb09b4f97ae;hp=648ed988b7acbba533f3fa8b6598a25ad07ec602;hpb=b57258dba9f8575728ecb92e48c07c9fd6652f9b;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_SketcherMgr.h b/src/PartSet/PartSet_SketcherMgr.h index 648ed988b..634916b78 100644 --- a/src/PartSet/PartSet_SketcherMgr.h +++ b/src/PartSet/PartSet_SketcherMgr.h @@ -1,15 +1,30 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: PartSet_SketcherMgr.h -// Created: 19 Dec 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2017 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_SketcherMgr_H #define PartSet_SketcherMgr_H #include "PartSet.h" -#include "PartSet_Filters.h" +#include "PartSet_PreviewSketchPlane.h" +#include "XGUI_SelectionFilterType.h" #include "PartSet_Tools.h" #include @@ -17,12 +32,14 @@ #include #include -#include #include #include #include + #include +#include + #include #include @@ -30,12 +47,15 @@ #include #include +#include + class PartSet_Module; class ModuleBase_IViewWindow; class ModuleBase_ModelWidget; class ModuleBase_Operation; class XGUI_OperationMgr; class XGUI_Workshop; +class PartSet_ExternalPointsMgr; class AIS_InteractiveObject; @@ -111,6 +131,12 @@ public: /// \return the boolean result bool isNestedSketchOperation(ModuleBase_Operation* theOperation) const; + /// Returns true if the feature kind belongs to list of granted features of Sketch + /// operation. An operation of a sketch should be started before. + /// \param theOperation an operation + /// \return the boolean result + bool isNestedSketchFeature(const QString& theFeatureKind) const; + /// Returns true if the operation is a create and nested sketch operationn /// \param theOperation a checked operation /// \param theSketch a sketch feature @@ -150,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* ); @@ -168,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 @@ -270,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 @@ -392,6 +430,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; @@ -406,12 +445,14 @@ private: CompositeFeaturePtr myCurrentSketch; - Handle(PartSet_CirclePointFilter) myCirclePointFilter; - Handle(ModuleBase_ShapeInPlaneFilter) myPlaneFilter; + std::set mySelectionFilterTypes; + FeatureToSelectionMap myCurrentSelection; bool myPreviousUpdateViewerEnabled; QMap myIsConstraintsShown; + + PartSet_ExternalPointsMgr* myExternalPointsMgr; };