Salome HOME
middle z for 3D guideline
[modules/hydro.git] / src / HYDROData / HYDROData_Channel.h
index e9301036ac9e3c6fc9a5b9a5f269c41b68fcf009..a53db842abeda6bbfce977a717ca1bb7e0dbc176 100644 (file)
@@ -1,9 +1,29 @@
+// 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, 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
+// 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
+//
 
 #ifndef HYDROData_Channel_HeaderFile
 #define HYDROData_Channel_HeaderFile
 
 #include "HYDROData_ArtificialObject.h"
 
+#include <TopoDS_Face.hxx>
+#include <TopoDS_Wire.hxx>
+
 class Handle(HYDROData_Polyline3D);
 class Handle(HYDROData_Profile);
 class TopTools_SequenceOfShape;
@@ -17,6 +37,18 @@ DEFINE_STANDARD_HANDLE(HYDROData_Channel, HYDROData_ArtificialObject)
  */
 class HYDROData_Channel : public HYDROData_ArtificialObject
 {
+public:
+
+  struct PrsDefinition
+  {
+    TopoDS_Shape myPrs3D;
+    TopoDS_Face  myPrs2D;
+    TopoDS_Wire  myLeftBank;
+    TopoDS_Wire  myRightBank;
+    TopoDS_Wire  myInlet;
+    TopoDS_Wire  myOutlet;
+  };
+
 protected:
   /**
    * Enumeration of tags corresponding to the persistent object parameters.
@@ -29,8 +61,20 @@ protected:
   };
 
 public:
+
   DEFINE_STANDARD_RTTI(HYDROData_Channel);
 
+public:
+
+  /**
+   * Creates the presentations(2D and 3D) by given guide line and profile.
+   */
+  HYDRODATA_EXPORT static bool CreatePresentations( const Handle(HYDROData_Polyline3D)& theGuideLine,
+                                                    const Handle(HYDROData_Profile)&    theProfile,
+                                                    PrsDefinition&                      thePrs );
+
+public:
+
   /**
    * Returns the kind of this object. Must be redefined in all objects of known type.
    */
@@ -62,6 +106,11 @@ public:
    */
   HYDRODATA_EXPORT virtual void Update();
 
+  /**
+   * Checks that object has 2D presentation. Reimlemented to retun true.
+   */
+  HYDRODATA_EXPORT virtual bool IsHas2dPrs() const;
+
   /**
    * Returns default filling color for new channel.
    */
@@ -124,17 +173,7 @@ protected:
    * Returns the type of child altitude object.
    * Reimplemented to create chanel altitude object.
    */
-  virtual ObjectKind getAltitudeObjectType() const;
-
-private:
-
-  void    findEdges( const TopTools_SequenceOfShape& theInShapes,
-                     const TopTools_ListOfShape&     theEdges3D,
-                     TopTools_SequenceOfShape&       theOutShapes ) const;
-
-  void    findEdges( const TopTools_SequenceOfShape& theInShapes,
-                     const TopoDS_Shape&             theEdge3D,
-                     TopTools_SequenceOfShape&       theOutShapes ) const;
+  HYDRODATA_EXPORT virtual ObjectKind getAltitudeObjectType() const;
 
 protected: