]> SALOME platform Git repositories - modules/gui.git/blob - src/OBJECT/SALOME_InteractiveObject.hxx
Salome HOME
fb2ff43001ab7cae30b928f0941dbd06023e2f36
[modules/gui.git] / src / OBJECT / SALOME_InteractiveObject.hxx
1 //  Copyright (C) 2007-2008  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 //  SALOME OBJECT : implementation of interactive object visualization for OCC and VTK viewers
23 //  File   : SALOME_InteractiveObject.hxx
24 //  Module : SALOME
25 //
26 #ifndef _SALOME_InteractiveObject_HeaderFile
27 #define _SALOME_InteractiveObject_HeaderFile
28
29 #ifndef _Standard_HeaderFile
30 #include <Standard.hxx>
31 #endif
32 #ifndef _Handle_SALOME_InteractiveObject_HeaderFile
33 #include "Handle_SALOME_InteractiveObject.hxx"
34 #endif
35
36 #ifndef _Standard_CString_HeaderFile
37 #include <Standard_CString.hxx>
38 #endif
39 #ifndef _MMgt_TShared_HeaderFile
40 #include <MMgt_TShared.hxx>
41 #endif
42 #ifndef _Standard_Boolean_HeaderFile
43 #include <Standard_Boolean.hxx>
44 #endif
45
46 #include <string>
47
48 class SALOME_InteractiveObject : public MMgt_TShared {
49
50 public:
51
52     void* operator new(size_t,void* anAddress) 
53       {
54         return anAddress;
55       }
56     void* operator new(size_t size) 
57       { 
58         return Standard::Allocate(size); 
59       }
60     void  operator delete(void *anAddress) 
61       { 
62         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
63       }
64  // Methods PUBLIC
65  // 
66 Standard_EXPORT   SALOME_InteractiveObject();
67 Standard_EXPORT   SALOME_InteractiveObject(const char* anEntry, 
68                                            const char* aComponentDataType,
69                                            const char* aName = "");
70 Standard_EXPORT   void setEntry(const char* anEntry) ;
71 Standard_EXPORT   const char* getEntry() ;
72 Standard_EXPORT   void setName(const char* aName) ;
73 Standard_EXPORT   const char* getName() ;
74 Standard_EXPORT   Standard_Boolean hasEntry() ;
75 Standard_EXPORT   virtual  Standard_Boolean isSame(const Handle(SALOME_InteractiveObject)& anIO) ;
76
77 Standard_EXPORT   Standard_Boolean hasReference() ;
78 Standard_EXPORT   const char* getReference() ;
79 Standard_EXPORT   void setReference(const char* aReference) ;
80
81 Standard_EXPORT   void setComponentDataType(const char* ComponentDataType) ;
82 Standard_EXPORT   const char* getComponentDataType() ;
83 Standard_EXPORT   Standard_Boolean isComponentType(const char* ComponentDataType) ; 
84   //Standard_EXPORT   Standard_Boolean isComponentType(std::string  ComponentDataType) ; 
85 Standard_EXPORT   virtual ~SALOME_InteractiveObject();
86
87 // Must be defined for using by NCollection for ceratin of data map
88 friend Standard_Boolean IsEqual(const Handle(SALOME_InteractiveObject)& anIO1,
89                                 const Handle(SALOME_InteractiveObject)& anIO2)
90 { return anIO1->isSame( anIO2 ); }
91
92
93
94
95
96  // Type management
97  //
98  Standard_EXPORT friend Handle_Standard_Type& SALOME_InteractiveObject_Type_();
99  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
100  Standard_EXPORT Standard_Boolean              IsKind(const Handle(Standard_Type)&) const;
101
102 protected:
103
104  // Methods PROTECTED
105  // 
106
107
108  // Fields PROTECTED
109  //
110   std::string myReference;
111   std::string myEntry;
112   std::string myName;
113   std::string myComponentDataType;
114
115 private: 
116
117  // Methods PRIVATE
118  // 
119
120
121  // Fields PRIVATE
122  //
123
124
125 };
126
127
128
129
130
131 // other Inline functions and methods (like "C++: function call" methods)
132 //
133
134
135 #endif