Salome HOME
IPAL22903: TC650: Store/Restore last GUI state does not work for Isos
[modules/geom.git] / src / GEOMAlgo_NEW / GEOMAlgo_GlueDetector.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File:        GEOMAlgo_GlueDetector.hxx
24 // Author:      Peter KURNEV
25
26 #ifndef _GEOMAlgo_GlueDetector_HeaderFile
27 #define _GEOMAlgo_GlueDetector_HeaderFile
28
29 #include <Standard.hxx>
30 #include <Standard_Macro.hxx>
31
32 #include <TopAbs_ShapeEnum.hxx>
33
34 #include <TopTools_ListOfShape.hxx>
35 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
36
37 #include <GEOMAlgo_GluerAlgo.hxx>
38 #include <GEOMAlgo_Algo.hxx>
39 #include <GEOMAlgo_PassKeyShape.hxx>
40
41 //=======================================================================
42 //function : GEOMAlgo_GlueDetector
43 //purpose  :
44 //=======================================================================
45 class GEOMAlgo_GlueDetector  : public GEOMAlgo_GluerAlgo,
46                                public GEOMAlgo_Algo
47 {
48 public:
49   Standard_EXPORT
50     GEOMAlgo_GlueDetector();
51
52   Standard_EXPORT virtual
53     ~GEOMAlgo_GlueDetector();
54
55   Standard_EXPORT virtual
56     void Perform() ;
57
58 //modified by NIZNHY-PKV Tue Mar 13 12:23:20 2012f
59   Standard_EXPORT
60     const TopTools_IndexedDataMapOfShapeListOfShape& StickedShapes();
61 //modified by NIZNHY-PKV Tue Mar 13 12:23:26 2012t
62 //------------------------------------------------
63 protected:
64   Standard_EXPORT
65     void DetectVertices() ;
66
67   Standard_EXPORT
68     void DetectEdges() ;
69
70   Standard_EXPORT
71     void DetectFaces() ;
72
73   Standard_EXPORT
74     void DetectShapes(const TopAbs_ShapeEnum aType) ;
75
76   Standard_EXPORT
77     void EdgePassKey(const TopoDS_Edge& aE,
78                      GEOMAlgo_PassKeyShape& aPK) ;
79
80   Standard_EXPORT
81     void FacePassKey(const TopoDS_Face& aF,
82                      GEOMAlgo_PassKeyShape& aPK) ;
83
84   //modified by NIZNHY-PKV Tue Mar 13 09:53:03 2012f
85   Standard_EXPORT
86     void CheckDetected();
87   //
88   Standard_EXPORT
89     void CheckDetected
90       (const TopTools_ListOfShape& aLVSD,
91        const TopTools_IndexedDataMapOfShapeListOfShape& aMVE,
92        const TopTools_IndexedDataMapOfShapeListOfShape& aMEV);
93
94
95  protected:
96   TopTools_IndexedDataMapOfShapeListOfShape myStickedShapes;
97   //modified by NIZNHY-PKV Tue Mar 13 09:53:08 2012t
98
99 };
100 #endif