1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #ifndef HYDROData_SplitToZonesTool_H
24 #define HYDROData_SplitToZonesTool_H
26 #include <HYDROData_Object.h>
27 #include <HYDROData_Transform.h>
28 #include <TopoDS_Shape.hxx>
29 #include <TopoDS_Compound.hxx>
30 #include <TopoDS_Face.hxx>
31 #include <TopTools_ShapeMapHasher.hxx>
32 #include <NCollection_IndexedMap.hxx>
33 #include <NCollection_IndexedDataMap.hxx>
34 #include <TopTools_ListOfShape.hxx>
35 #include <QStringList>
37 class Handle(HYDROData_PolylineXY);
40 * \class HYDROData_SplitToZonesTool
41 * \brief This class contains methods used for splitting geometry objects
42 * into non-intersected regions.
44 class HYDRODATA_EXPORT HYDROData_SplitToZonesTool
47 struct HYDRODATA_EXPORT SplitData
57 QStringList ObjectNames;
63 SplitData( const SplitObjectType& theType,
64 const TopoDS_Shape& theShape,
65 const QStringList& theObjectNames ) :
66 Type( theType ), Shape( theShape ), ObjectNames( theObjectNames ) {}
68 SplitData( const SplitObjectType& theType,
69 const TopoDS_Shape& theShape,
70 const QString& theObjectName ) :
71 Type( theType ), Shape( theShape ), ObjectNames( theObjectName ) {}
73 TopoDS_Face Face() const;
76 typedef QList <SplitData> SplitDataList;
77 typedef QListIterator<SplitData> SplitDataListIterator;
78 typedef NCollection_IndexedMap<TopoDS_Shape, TopTools_ShapeMapHasher> HYDROData_MapOfShape;
79 typedef HYDROData_MapOfShape::Iterator HYDROData_MapIteratorOfMapOfShape;
80 typedef NCollection_IndexedDataMap<TopoDS_Shape, TopTools_ListOfShape, TopTools_ShapeMapHasher> HYDROData_DataMapOfShapeListOfShape;
81 typedef HYDROData_DataMapOfShapeListOfShape::Iterator HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape;
82 typedef NCollection_IndexedDataMap<TopoDS_Shape, QStringList, TopTools_ShapeMapHasher> HYDROData_DataMapOfShapeListOfString;
83 typedef HYDROData_DataMapOfShapeListOfString::Iterator HYDROData_DataMapIteratorOfDataMapOfShapeListOfString;
84 #undef _NCollection_MapHasher
88 static SplitDataList Split( const HYDROData_SequenceOfObjects& theObjectList,
89 const HYDROData_SequenceOfObjects& theGroupsList,
90 const Handle(HYDROData_PolylineXY)& thePolyline );
92 static void SetFileNames(const QString& theNameBefore, const QString& theNameAfter);
99 static Standard_Integer SplitFaces(const TopoDS_Compound& theComp, HYDROData_Transform& theTool);