1 // Copyright (C) 2007-2013 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.
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
25 #include <HYDROData_Object.h>
28 typedef int ObjectKind;
30 const ObjectKind KIND_UNKNOWN;
31 const ObjectKind KIND_IMAGE;
32 const ObjectKind KIND_POLYLINE;
33 const ObjectKind KIND_VISUAL_STATE;
34 const ObjectKind KIND_BATHYMETRY;
36 class HYDROData_Object
39 #include <HYDROData_Object.h>
42 %ConvertToSubClassCode
43 // HYDROData_Object sub-classes provide a unique kind ID.
44 switch ( sipCpp->GetKind() )
47 sipClass = sipClass_HYDROData_Image;
51 sipClass = sipClass_HYDROData_Polyline;
55 sipClass = sipClass_HYDROData_Bathymetry;
59 sipClass = sipClass_HYDROData_Object;
63 // We don't recognise the type.
71 * Returns the kind of this object. Must be redefined in all objects of known type.
73 const ObjectKind GetKind() const;
76 * Returns the name of this object.
78 QString GetName() const;
81 * Updates the name of this object.
83 void SetName(const QString& theName);
86 * Updates object state.
87 * \param theIsForce force reupdating of data object
89 void Update(const bool theIsForce);
92 * Checks is object exists in the data structure.
93 * \returns true is object is not exists in the data model
95 bool IsRemoved() const;
98 * Removes object from the data structure.
103 * Returns unique integer identifier of the object (may be used for ordering of objects)
108 * Copies all properties of this to the destinated object.
109 * Objects must be the same type.
110 * \param theDestination initialized object (from any document) - target of copying
113 void CopyTo( HYDROData_Object theDestination ) const;
119 * Creates new object in the internal data structure. Use higher level objects
120 * to create objects with real content.
125 * Destructs properties of the object and object itself, removes it from the document.
127 virtual ~HYDROData_Object();