LIST(APPEND _output ${CMAKE_CURRENT_BINARY_DIR}/sipHYDROPyNCollection_Sequence0100Handle_HYDROData_Entity.cc)
SET(${outfiles} ${${outfiles}} ${CMAKE_CURRENT_BINARY_DIR}/sipHYDROPyNCollection_Sequence0100Handle_HYDROData_Entity.cc)
+ LIST(APPEND _output ${CMAKE_CURRENT_BINARY_DIR}/sipHYDROPyNCollection_Sequence0100gp_XYZ.cc)
+ SET(${outfiles} ${${outfiles}} ${CMAKE_CURRENT_BINARY_DIR}/sipHYDROPyNCollection_Sequence0100gp_XYZ.cc)
+
+ LIST(APPEND _output ${CMAKE_CURRENT_BINARY_DIR}/sipHYDROPygp_XYZ.cc)
+ SET(${outfiles} ${${outfiles}} ${CMAKE_CURRENT_BINARY_DIR}/sipHYDROPygp_XYZ.cc)
+
+ LIST(APPEND _output ${CMAKE_CURRENT_BINARY_DIR}/sipHYDROPygp_XY.cc)
+ SET(${outfiles} ${${outfiles}} ${CMAKE_CURRENT_BINARY_DIR}/sipHYDROPygp_XY.cc)
+
ADD_CUSTOM_COMMAND(
OUTPUT ${_output}
COMMAND ${SIP_EXECUTABLE} ${PYQT_SIPFLAGS} ${CMAKE_CURRENT_SOURCE_DIR}/${_input}
--- /dev/null
+// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+%ExportedHeaderCode
+#include <NCollection_Sequence.hxx>
+%End
+
+// NCollection_Sequence<TYPE> is implemented as a Python list.
+template<TYPE>
+%MappedType NCollection_Sequence<TYPE>
+{
+%TypeHeaderCode
+#include <NCollection_Sequence.hxx>
+%End
+
+%ConvertFromTypeCode
+ // Create the list.
+ PyObject *l;
+
+ if ((l = PyList_New(sipCpp->Length())) == NULL)
+ return NULL;
+
+ // Set the list elements.
+ for (int i = 0; i < sipCpp->Length(); ++i)
+ {
+ TYPE *t = new TYPE(sipCpp->Value(i));
+ PyObject *tobj;
+
+ if ((tobj = sipConvertFromNewType(t, sipType_TYPE, sipTransferObj)) == NULL)
+ {
+ Py_DECREF(l);
+ delete t;
+
+ return NULL;
+ }
+
+ PyList_SET_ITEM(l, i, tobj);
+ }
+
+ return l;
+%End
+
+%ConvertToTypeCode
+ SIP_SSIZE_T len;
+
+ // Check the type if that is all that is required.
+ if (sipIsErr == NULL)
+ {
+ if (!PySequence_Check(sipPy) || (len = PySequence_Size(sipPy)) < 0)
+ return 0;
+
+ for (SIP_SSIZE_T i = 0; i < len; ++i)
+ {
+ PyObject *itm = PySequence_ITEM(sipPy, i);
+ bool ok = (itm && sipCanConvertToType(itm, sipType_TYPE, SIP_NOT_NONE));
+
+ Py_XDECREF(itm);
+
+ if (!ok)
+ return 0;
+ }
+
+ return 1;
+ }
+
+ NCollection_Sequence<TYPE> *ql = new NCollection_Sequence<TYPE>;
+ len = PySequence_Size(sipPy);
+
+ for (SIP_SSIZE_T i = 0; i < len; ++i)
+ {
+ PyObject *itm = PySequence_ITEM(sipPy, i);
+ int state;
+ TYPE *t = reinterpret_cast<TYPE *>(sipConvertToType(itm, sipType_TYPE, sipTransferObj, SIP_NOT_NONE, &state, sipIsErr));
+
+ Py_DECREF(itm);
+
+ if (*sipIsErr)
+ {
+ sipReleaseType(t, sipType_TYPE, state);
+
+ delete ql;
+ return 0;
+ }
+
+ ql->Append(*t);
+
+ sipReleaseType(t, sipType_TYPE, state);
+ }
+
+ *sipCppPtr = ql;
+
+ return sipGetState(sipTransferObj);
+%End
+};
+
--- /dev/null
+// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+%ExportedHeaderCode
+#include <gp_XY.hxx>
+%End
+
+class gp_XY
+{
+%TypeHeaderCode
+#include <gp_XY.hxx>
+%End
+
+public:
+
+ //! Creates XY object with zero coordinates (0,0). <br>
+ gp_XY();
+
+ //! a number pair defined by the XY coordinates <br>
+ gp_XY(const double X,const double Y);
+
+ //! modifies the coordinate of range Index <br>
+ //! Index = 1 => X is modified <br>
+ //! Index = 2 => Y is modified <br>
+ //! Raises OutOfRange if Index != {1, 2}. <br>
+ void SetCoord(const int Index,const double Xi) ;
+ //! Assigns the given value to the X coordinate of this number pair. <br>
+ void SetX(const double X) ;
+ //! Assigns the given value to the Y coordinate of this number pair. <br>
+ void SetY(const double Y) ;
+
+ //! returns the coordinate of range Index : <br>
+ //! Index = 1 => X is returned <br>
+ //! Index = 2 => Y is returned <br>
+ //! Raises OutOfRange if Index != {1, 2}. <br>
+ double Coord(const int Index) const;
+ //! For this number pair, returns its coordinates X and Y. <br>
+ void Coord(double& X,double& Y) const;
+ //! Returns the X coordinate of this number pair. <br>
+ double X() const;
+ //! Returns the Y coordinate of this number pair. <br>
+ double Y() const;
+
+};
+
--- /dev/null
+// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+%ExportedHeaderCode
+#include <gp_XYZ.hxx>
+%End
+
+class gp_XYZ
+{
+%TypeHeaderCode
+#include <gp_XYZ.hxx>
+%End
+
+public:
+
+ //! Creates an XYZ object with zero co-ordinates (0,0,0) <br>
+ gp_XYZ();
+
+ //! creates an XYZ with given coordinates <br>
+ gp_XYZ(const double X,const double Y,const double Z);
+
+ //! For this XYZ object, assigns <br>
+ //! the values X, Y and Z to its three coordinates <br>
+ void SetCoord(const double X,const double Y,const double Z) ;
+
+ //! modifies the coordinate of range Index <br>
+ //! Index = 1 => X is modified <br>
+ //! Index = 2 => Y is modified <br>
+ //! Index = 3 => Z is modified <br>
+ //! Raises OutOfRange if Index != {1, 2, 3}. <br>
+ void SetCoord(const int Index,const double Xi) ;
+ //! Assigns the given value to the X coordinate <br>
+ void SetX(const double X) ;
+ //! Assigns the given value to the Y coordinate <br>
+ void SetY(const double Y) ;
+ //! Assigns the given value to the Z coordinate <br>
+ void SetZ(const double Z) ;
+
+ //! returns the coordinate of range Index : <br>
+ //! Index = 1 => X is returned <br>
+ //! Index = 2 => Y is returned <br>
+ //! Index = 3 => Z is returned <br>
+ //! <br>
+ //! Raises OutOfRange if Index != {1, 2, 3}. <br>
+ double Coord(const int Index) const;
+
+ void Coord(double& X,double& Y,double& Z) const;
+ //! Returns the X coordinate <br>
+ double X() const;
+ //! Returns the Y coordinate <br>
+ double Y() const;
+ //! Returns the Z coordinate <br>
+ double Z() const;
+
+};
+
# HYDROData_Document.sip
SET(_sip_files2
+ CAS/gp_XY.sip
+ CAS/gp_XYZ.sip
+ CAS/NCollection_Sequence.sip
HYDROData_SequenceOfObjects.sip
HYDROData_Entity.sip
HYDROData_IPolyline.sip
%Import QtGuimod.sip
+%Include CAS/gp_XY.sip
+%Include CAS/gp_XYZ.sip
+%Include CAS/NCollection_Sequence.sip
%Include HYDROData_SequenceOfObjects.sip
%Include HYDROData_Entity.sip
%Include HYDROData_IPolyline.sip
%ExportedHeaderCode
#include <HYDROData_Bathymetry.h>
-#include <gp_XY.hxx>
-#include <gp_XYZ.hxx>
-%End
-
-%ModuleCode
-
-PyObject* convertToPythonAltitudeList( const HYDROData_Bathymetry::AltitudePoints& thePoints );
-HYDROData_Bathymetry::AltitudePoints convertFromPythonAltitudeList( PyObject* thePythonList );
-
%End
class HYDROData_Bathymetry : HYDROData_IAltitudeObject
{
+ typedef gp_XYZ AltitudePoint;
+ typedef NCollection_Sequence<gp_XYZ> AltitudePoints;
+
%ConvertToSubClassCode
switch ( sipCpp->GetKind() )
{
#include <HYDROData_Bathymetry.h>
%End
-%TypeCode
-
-PyObject* convertToPythonAltitudeList( const HYDROData_Bathymetry::AltitudePoints& thePoints )
-{
- int aListSize = thePoints.size();
-
- PyObject* aPythonList = NULL;
- if ( ( aPythonList = PyList_New( aListSize ) ) == NULL )
- return NULL;
-
- for ( int i = 0; i < aListSize; ++i )
- {
- const HYDROData_Bathymetry::AltitudePoint& aPoint = thePoints.at( i );
-
- PyObject* aTypleObj = Py_BuildValue( "(ddd)", aPoint.X(), aPoint.Y(), aPoint.Z() );
-
- PyList_SET_ITEM( aPythonList, i, aTypleObj );
- }
-
- return aPythonList;
-}
-
-HYDROData_Bathymetry::AltitudePoints convertFromPythonAltitudeList( PyObject* thePythonList )
-{
- HYDROData_Bathymetry::AltitudePoints aPoints;
- if ( thePythonList == NULL )
- return aPoints;
-
- for ( int i = 0, n = PyList_GET_SIZE( thePythonList ); i < n; ++i )
- {
- PyObject* aTypleObj = PyList_GET_ITEM( thePythonList, i );
-
- double anArr[ 3 ];
- if ( !PyArg_ParseTuple( aTypleObj, "ddd", &anArr[ 0 ], &anArr[ 1 ], &anArr[ 2 ] ) )
- continue;
-
- HYDROData_Bathymetry::AltitudePoint aPoint;
- aPoint.SetX( anArr[ 0 ] );
- aPoint.SetY( anArr[ 1 ] );
- aPoint.SetZ( anArr[ 2 ] );
-
- aPoints.append( aPoint );
- }
-
- return aPoints;
-}
-
-%End
-
public:
// Public methods to work with Bathymetry altitudes.
* \param thePoint the point to examine
* \return altitude value
*/
- double GetAltitudeForPoint( const QPointF& thePoint ) const [double (const gp_XY&)];
- %MethodCode
-
- // The C++ API gets the gp_XY object, we convert it from QPointF.
- gp_XY aPoint( a0->x(), a0->y() );
-
- Py_BEGIN_ALLOW_THREADS
- sipRes = sipSelfWasArg ? sipCpp->HYDROData_Bathymetry::GetAltitudeForPoint( aPoint ) :
- sipCpp->GetAltitudeForPoint( aPoint );
- Py_END_ALLOW_THREADS
- %End
-
-
+ double GetAltitudeForPoint( const gp_XY& thePoint );
/**
* Replace current altitude points by new one.
* \param thePoints the altitude points list
*/
- virtual void SetAltitudePoints( SIP_PYLIST ) [void (const HYDROData_Bathymetry::AltitudePoints&)] ;
- %MethodCode
-
- // The C++ API takes a list of gp_XYZ objects,
- // but we pass a list of python tuples.
-
- HYDROData_Bathymetry::AltitudePoints aPoints =
- convertFromPythonAltitudeList( a0 );
-
- Py_BEGIN_ALLOW_THREADS
- sipSelfWasArg ? sipCpp->HYDROData_Bathymetry::SetAltitudePoints( aPoints ) :
- sipCpp->SetAltitudePoints( aPoints );
- Py_END_ALLOW_THREADS
-
- %End
- %VirtualCatcherCode
-
- PyObject* aPythonList = convertToPythonAltitudeList( a0 );
- if ( aPythonList != NULL )
- {
- sipCallMethod( &sipIsErr, sipMethod, "O", aPythonList );
- Py_DECREF( aPythonList );
- }
-
- %End
+ virtual void SetAltitudePoints( const HYDROData_Bathymetry::AltitudePoints& );
/**
* Returns altitude points list.
* \return points list
*/
- SIP_PYLIST GetAltitudePoints() const [HYDROData_Bathymetry::AltitudePoints ()] ;
- %MethodCode
-
- // The C++ API returns a list of gp_XYZ objects,
- // we convert it to list of python tuples.
-
- HYDROData_Bathymetry::AltitudePoints aPoints;
-
- Py_BEGIN_ALLOW_THREADS
- aPoints = sipSelfWasArg ? sipCpp->HYDROData_Bathymetry::GetAltitudePoints() :
- sipCpp->GetAltitudePoints();
- Py_END_ALLOW_THREADS
-
- sipRes = convertToPythonAltitudeList( aPoints );
-
- %End
+ HYDROData_Bathymetry::AltitudePoints GetAltitudePoints() const;
/**
* Remove all altitude points.