Salome HOME
refs #1327: improvements for bathymetry presentation and rescale
[modules/hydro.git] / src / HYDROPy / HYDROData_Channel.sip
index 724734b16e5674ac56c22bd7a000a806d2b3c3b5..f1ef457ad7c53d671555f6108ba9be2d45425a1b 100644 (file)
@@ -1,12 +1,8 @@
-// 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
-//
+// Copyright (C) 2014-2015  EDF-R&D
 // 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.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -52,12 +48,12 @@ public:
   /**
    * Returns default filling color for new channel.
    */
-  static QColor DefaultFillingColor();
+  virtual QColor DefaultFillingColor() const;
 
   /**
    * Returns default border color for new channel.
    */
-  static QColor DefaultBorderColor();
+  virtual QColor DefaultBorderColor() const;
 
 
 public:      
@@ -67,7 +63,7 @@ public:
    * Sets reference guide line object for channel.
    */
   bool SetGuideLine( HYDROData_Polyline3D theGuideLine )
-  [bool ( const Handle_HYDROData_Polyline3D& )];
+  [bool ( const opencascade::handle<HYDROData_Polyline3D>& )];
   %MethodCode
     Handle(HYDROData_Polyline3D) aRef =
       Handle(HYDROData_Polyline3D)::DownCast( createHandle( a0 ) );
@@ -84,7 +80,7 @@ public:
    * Returns reference guide line object of channel.
    */
   HYDROData_Polyline3D GetGuideLine() const
-  [Handle_HYDROData_Polyline3D ()];
+  [opencascade::handle<HYDROData_Polyline3D> ()];
   %MethodCode
     Handle(HYDROData_Polyline3D) aRef;
     
@@ -106,7 +102,7 @@ public:
    * Sets reference profile object for channel.
    */
   bool SetProfile( HYDROData_Profile theProfile )
-  [bool ( const Handle_HYDROData_Profile& )];
+  [bool ( const opencascade::handle<HYDROData_Profile>& )];
   %MethodCode
     Handle(HYDROData_Profile) aRef =
       Handle(HYDROData_Profile)::DownCast( createHandle( a0 ) );
@@ -123,7 +119,7 @@ public:
    * Returns reference profile object of channel.
    */
   HYDROData_Profile GetProfile() const
-  [Handle_HYDROData_Profile ()];
+  [opencascade::handle<HYDROData_Profile> ()];
   %MethodCode
     Handle(HYDROData_Profile) aRef;
     
@@ -140,7 +136,9 @@ public:
    */
   void RemoveProfile();
 
-
+  void SetEquiDistance( double );
+  double GetEquiDistance() const;
+  
 protected:
 
   /**