Salome HOME
patch for correct compilation on Linux
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DataObject.h
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef HYDROGUI_DATAOBJECT_H
24 #define HYDROGUI_DATAOBJECT_H
25
26 #include <HYDROData_Entity.h>
27
28 #include <LightApp_DataObject.h>
29
30 #include <QString>
31 #include <QMap>
32 #include <QPixmap>
33 #include <QColor>
34
35 /**
36  * \class HYDROGUI_DataObject
37  * \brief Module data object, used for object browser tree creation.
38  *
39  * This is an Object Browser object that contains reference to data structure 
40  * element inside.
41  * This class inherits CAM_DataObject virtually, so it is necessary to call in the class
42  * constructor the CAM object constructor manually for the correct initialization
43  */
44 class HYDROGUI_DataObject : public LightApp_DataObject
45 {
46 public:
47   //! Column id
48   enum { 
49     RefObjectId = RefEntryId + 1,    //!< Ref.Object column
50     BathymetryId                     //!< Bathymetry column
51   };
52
53   /**
54    * Constructor.
55    * \param theParent parent data object
56    * \param theData reference to the corresponding object from data structure
57    * \param theParentEntry entry of the parent data object (for reference objects)
58    */
59   HYDROGUI_DataObject( SUIT_DataObject* theParent,
60                        Handle(HYDROData_Entity) theData,
61                        const QString& theParentEntry );
62     
63   /**
64    * Returns the unique object identifier string.
65    */
66   virtual QString entry() const;
67
68   /**
69    * Returns the entry of the referenced object.
70    */
71   virtual QString refEntry() const;
72
73   /**
74    * Returns the name of object.
75    */
76   virtual QString name() const;
77
78   /**
79    * Returns the font of displayed object name.
80    */
81   virtual QFont font( const int = SUIT_DataObject::NameId ) const;
82
83   /**
84    * Returns the model data object.
85    */
86   const Handle(HYDROData_Entity)& modelObject() const { return myData; }
87
88   /**
89    * Redefines the object.
90    */
91   void setObject( const Handle(HYDROData_Entity)& theObject ) { myData = theObject; }
92
93   /**
94    * Returns the entry prefix for all HYDRO data objects.
95    */
96   static QString entryPrefix() { return QString( "HYDRO:" ); }
97
98   /**
99    * Returns the full entry for the specified data object.
100    */
101   static QString dataObjectEntry( const Handle(HYDROData_Entity)& theObject,
102                                   const bool theWithPrefix = true );
103
104 protected:
105   Handle(HYDROData_Entity) myData; ///< object from data model
106   QString myParentEntry;
107 };
108
109 /**
110  * \class HYDROGUI_NamedObject
111  * \brief Module data object, used for object browser tree creation.
112  *
113  * It contains only name inside, without additional data: it is just information
114  * or grouping object in the Object Browser.
115  * This class inherits CAM_DataObject virtually, so it is necessary to call in the class
116  * constructor the CAM object constructor manually for the correct initialization
117  */
118 class HYDROGUI_NamedObject : public virtual LightApp_DataObject
119 {
120 public:
121   /**
122    * Constructor.
123    * \param theParent parent data object
124    * \param theName displayed name
125    */
126   HYDROGUI_NamedObject( SUIT_DataObject* theParent,
127                         const QString& theName,
128                         const QString& theParentEntry  );
129     
130   /**
131    * Returns the unique object identifier string.
132    */
133   virtual QString entry() const;
134
135   /**
136    * Returns the name of object.
137    */
138   virtual QString name() const;
139
140 private:
141   QString myName; ///< name in the OB
142   QString myParentEntry;
143 };
144
145 /**
146  * \brief Module data object, used for dropping items in the object browser.
147  *
148  * It inherits NamedObject with only difference - it accepts dropping.
149  */
150 class HYDROGUI_DropTargetObject : public HYDROGUI_NamedObject
151 {
152 public:
153   /**
154    * Constructor.
155    * \param theParent parent data object
156    * \param theName displayed name
157    */
158   HYDROGUI_DropTargetObject( SUIT_DataObject* theParent,
159                              const QString& theName,
160                              const QString& theParentEntry  );
161     
162   bool isDropAccepted() const { return true; }
163 };
164
165 #endif