Salome HOME
3fef48fffd34b61d4e30f1c89baa0ce5506e31ef
[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 TopTools_SequenceOfShape;
40 class TopoDS_Face;
41
42 class HYDROData_ShapeFile 
43 {
44
45 public:
46   HYDRODATA_EXPORT HYDROData_ShapeFile(  );
47   virtual HYDRODATA_EXPORT ~HYDROData_ShapeFile();
48
49 public:
50   //Export operation
51   HYDRODATA_EXPORT void Export(const QString& aFileName, 
52                                NCollection_Sequence<Handle_HYDROData_PolylineXY> aPolyXYSeq,
53                                NCollection_Sequence<Handle_HYDROData_Polyline3D> aPoly3DSeq,
54                                NCollection_Sequence<Handle_HYDROData_LandCover> aLCSeq,
55                                QStringList& aNonExpList);
56   int WriteObjectPolyXY(SHPHandle theShpHandle, Handle_HYDROData_PolylineXY thePoly );
57   int WriteObjectPoly3D(SHPHandle theShpHandle, Handle_HYDROData_Polyline3D thePoly );
58   int WriteObjectLC(SHPHandle theShpHandle, Handle_HYDROData_LandCover theLC );
59   //Import Landcover
60   void Parse(SHPHandle theHandle);
61   void ProcessSHP(SHPObject* anObj, int i, TopoDS_Face& F);
62   HYDRODATA_EXPORT bool ImportLandCovers(const QString theFileName, QStringList& thePolygonsList, TopTools_SequenceOfShape& theFaces);
63   HYDRODATA_EXPORT void Free();
64   ///
65 private:
66   void ProcessFace(TopoDS_Face theFace, SHPHandle theShpHandle);
67 private:
68   std::vector<SHPObject*> mySHPObjects;
69   SHPHandle myHSHP;
70 };
71
72 #endif