Salome HOME
The merging type of conflict bathymetries has been added for calculation region.
[modules/hydro.git] / src / HYDROPy / HYDROData_Polyline.sip
1 // Copyright (C) 2007-2013  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 %ExportedHeaderCode
24 #include <HYDROData_Polyline.h>
25 %End
26
27 struct PolylineSection
28 {
29 %TypeHeaderCode
30 #include <HYDROData_Polyline.h>
31 %End
32
33   enum SectionType{ SECTION_POLYLINE = 0, SECTION_SPLINE = 1 };
34
35   PolylineSection();
36   
37   SectionType                 myType;
38   bool                        myIsClosed;
39   QList<double>               myCoords;
40
41   QString                     mySectionName
42   {
43     %GetCode
44         sipPy = PyString_FromString( TCollection_AsciiString( sipCpp->mySectionName ).ToCString() );
45     %End
46
47     %SetCode
48         char* ptr;
49
50         if ( ( ptr = PyString_AsString( sipPy ) ) == NULL )
51         {
52           sipErr = 1;
53         }
54         else
55         {
56           sipCpp->mySectionName = TCollection_ExtendedString( ptr );
57         }
58     %End
59   };
60 };
61
62 class HYDROData_Polyline : HYDROData_Object
63 {
64
65 %ConvertToSubClassCode
66     switch ( sipCpp->GetKind() )
67     {
68       case KIND_POLYLINE:
69         sipClass = sipClass_HYDROData_Polyline;
70         break;
71
72       default:
73         // We don't recognise the type.
74         sipClass = NULL;
75     }
76 %End
77
78 public:
79
80   typedef QList<PolylineSection> PolylineData;
81
82 public:      
83
84   /**
85    * Replace current polyline data by new sections list
86    * \param theSections the sections list
87    */
88   void SetPolylineData( const PolylineData& theSections );
89
90   /**
91    * Return polyline data
92    * \return polyline section list
93    */
94   PolylineData GetPolylineData();
95    
96   /**
97    * Return polyline dimension
98    * \return polyline dimension (2 or 3)
99    */
100   int GetDimension() const;
101
102   /**
103    * Set polyline dimension (2 or 3)
104    * \param theDimension the polyline dimension
105    */
106   void SetDimension( int theDimension );
107
108   /**
109    * Remove all sections from polyline
110    */
111   void RemoveAll();
112
113
114   /**
115    * Returns the painter path. The painter path is construct by lines
116    */
117   QPainterPath GetPainterPath();
118
119
120   /**
121    * Sets the z value for polyline.
122    */
123   void SetZValue( const double theZValue );
124   
125   /**
126    * Returns the z value for polyline.
127    */
128   double ZValue() const;
129
130 protected:
131
132   /**
133    * Creates new object in the internal data structure. Use higher level objects 
134    * to create objects with real content.
135    */
136   HYDROData_Polyline();
137
138   /**
139    * Destructs properties of the object and object itself, removes it from the document.
140    */
141   ~HYDROData_Polyline();
142 };
143
144