Salome HOME
1dc0922bd71975cb5b65d214fdac7a277b66f75a
[modules/hydro.git] / src / HYDROData / HYDROData_ShapeFile.h
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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 #ifndef HYDRODATA_SHAPEFILE_H
24 #define HYDRODATA_SHAPEFILE_H
25
26 #include <vector>
27 #include <NCollection_Sequence.hxx>
28 #include <QStringList>
29 #include "HYDROData.h"
30
31 //extern "C" {
32 #include <shapefil.h> 
33 //};
34
35 class gp_XYZ;
36 class Handle_HYDROData_PolylineXY;
37 class Handle_HYDROData_Polyline3D;
38 class Handle_HYDROData_LandCover;
39 class Handle(HYDROData_Document);
40 class TopTools_SequenceOfShape;
41 class TopoDS_Face;
42 class Handle_HYDROData_Entity;
43
44 class HYDROData_ShapeFile 
45 {
46
47 public:
48   HYDRODATA_EXPORT HYDROData_ShapeFile(  );
49   virtual HYDRODATA_EXPORT ~HYDROData_ShapeFile();
50
51 public:
52   //Export operation
53   HYDRODATA_EXPORT void Export(const QString& aFileName, 
54                                NCollection_Sequence<Handle_HYDROData_PolylineXY> aPolyXYSeq,
55                                NCollection_Sequence<Handle_HYDROData_Polyline3D> aPoly3DSeq,
56                                NCollection_Sequence<Handle_HYDROData_LandCover> aLCSeq,
57                                QStringList& aNonExpList);
58   int WriteObjectPolyXY(SHPHandle theShpHandle, Handle_HYDROData_PolylineXY thePoly );
59   int WriteObjectPoly3D(SHPHandle theShpHandle, Handle_HYDROData_Polyline3D thePoly );
60   int WriteObjectLC(SHPHandle theShpHandle, Handle_HYDROData_LandCover theLC );
61   //Import Landcover
62   void Parse1(SHPHandle theHandle);
63   void ProcessSHP(SHPObject* anObj, int i, TopoDS_Face& F);
64   HYDRODATA_EXPORT bool ImportLandCovers(const QString theFileName, QStringList& thePolygonsList, TopTools_SequenceOfShape& theFaces);
65   HYDRODATA_EXPORT void Free();
66   //Import Polyline
67   void Parse2( SHPHandle theHandle);
68   void ProcessSHPPolyXY(Handle(HYDROData_Document) theDocument, SHPObject* anObj, QString theFileName, 
69                         int theInd, NCollection_Sequence<Handle_HYDROData_Entity>& theEntities);
70   void ProcessSHPPoly3D(Handle(HYDROData_Document) theDocument, SHPObject* anObj, QString theFileName, 
71                         int theInd, NCollection_Sequence<Handle_HYDROData_Entity>& theEntities);
72   HYDRODATA_EXPORT bool ImportPolylines(Handle(HYDROData_Document) theDocument, const QString& theFileName, 
73                        NCollection_Sequence<Handle_HYDROData_Entity>& theEntities);
74 private:
75   void ProcessFace(TopoDS_Face theFace, SHPHandle theShpHandle);
76 private:
77   std::vector<SHPObject*> mySHPObjects;
78   SHPHandle myHSHP;
79 };
80
81 #endif