Salome HOME
Merge remote-tracking branch 'origin/BR_DEMO' into BR_2017
[modules/hydro.git] / src / HYDROPy / HYDROData_Channel.sip
index 3ea42ec57d71c83f77e9b08565c3e25b33ab939b..f1ef457ad7c53d671555f6108ba9be2d45425a1b 100644 (file)
@@ -48,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:      
@@ -63,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 ) );
@@ -80,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;
     
@@ -102,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 ) );
@@ -119,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;
     
@@ -136,7 +136,9 @@ public:
    */
   void RemoveProfile();
 
-
+  void SetEquiDistance( double );
+  double GetEquiDistance() const;
+  
 protected:
 
   /**