1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #ifndef HYDROData_Channel_HeaderFile
24 #define HYDROData_Channel_HeaderFile
26 #include "HYDROData_ArtificialObject.h"
28 #include <TopoDS_Face.hxx>
29 #include <TopoDS_Wire.hxx>
31 class Handle(HYDROData_Polyline3D);
32 class Handle(HYDROData_Profile);
33 class TopTools_SequenceOfShape;
34 class TopTools_ListOfShape;
36 DEFINE_STANDARD_HANDLE(HYDROData_Channel, HYDROData_ArtificialObject)
38 /**\class HYDROData_Channel
42 class HYDROData_Channel : public HYDROData_ArtificialObject
50 TopoDS_Wire myLeftBank;
51 TopoDS_Wire myRightBank;
58 * Enumeration of tags corresponding to the persistent object parameters.
62 DataTag_First = HYDROData_ArtificialObject::DataTag_First + 100, ///< first tag, to reserve
69 DEFINE_STANDARD_RTTI(HYDROData_Channel);
74 * Creates the presentations(2D and 3D) by given guide line and profile.
76 HYDRODATA_EXPORT static bool CreatePresentations( const Handle(HYDROData_Polyline3D)& theGuideLine,
77 const Handle(HYDROData_Profile)& theProfile,
78 PrsDefinition& thePrs );
83 * Returns the kind of this object. Must be redefined in all objects of known type.
85 HYDRODATA_EXPORT virtual const ObjectKind GetKind() const {return KIND_CHANNEL;}
88 * Dump object to Python script representation.
90 HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
93 * Returns the list of all reference objects of this object.
95 HYDRODATA_EXPORT virtual HYDROData_SequenceOfObjects GetAllReferenceObjects() const;
98 * Returns the top shape of the object.
100 HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const;
103 * Returns the 3d shape of the object.
105 HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const;
108 * Update the shape presentations of stream.
109 * Call this method whenever you made changes for channel data.
111 HYDRODATA_EXPORT virtual void Update();
114 * Checks that object has 2D presentation. Reimlemented to retun true.
116 HYDRODATA_EXPORT virtual bool IsHas2dPrs() const;
119 * Returns default filling color for new channel.
121 HYDRODATA_EXPORT static QColor DefaultFillingColor();
124 * Returns default border color for new channel.
126 HYDRODATA_EXPORT static QColor DefaultBorderColor();
130 // Public methods to work with Channel
133 * Sets reference guide line object for channel.
135 HYDRODATA_EXPORT virtual bool SetGuideLine( const Handle(HYDROData_Polyline3D)& theGuideLine );
138 * Returns reference guide line object of channel.
140 HYDRODATA_EXPORT virtual Handle(HYDROData_Polyline3D) GetGuideLine() const;
143 * Remove reference guide line object from channel.
145 HYDRODATA_EXPORT virtual void RemoveGuideLine();
149 * Sets reference profile object for channel.
151 HYDRODATA_EXPORT virtual bool SetProfile( const Handle(HYDROData_Profile)& theProfile );
154 * Returns reference profile object of channel.
156 HYDRODATA_EXPORT virtual Handle(HYDROData_Profile) GetProfile() const;
159 * Remove reference profile object from channel.
161 HYDRODATA_EXPORT virtual void RemoveProfile();
167 * Returns default filling color for new object.
169 HYDRODATA_EXPORT virtual QColor getDefaultFillingColor() const;
172 * Returns default border color for new object.
174 HYDRODATA_EXPORT virtual QColor getDefaultBorderColor() const;
177 * Returns the type of child altitude object.
178 * Reimplemented to create chanel altitude object.
180 HYDRODATA_EXPORT virtual ObjectKind getAltitudeObjectType() const;
184 friend class HYDROData_Iterator;
187 * Creates new object in the internal data structure. Use higher level objects
188 * to create objects with real content.
190 HYDRODATA_EXPORT HYDROData_Channel();
193 * Destructs properties of the object and object itself, removes it from the document.
195 virtual HYDRODATA_EXPORT ~HYDROData_Channel();