changed: auto add updateData callback to stages so that stagedata can be updated...
[opensg.git] / Source / WindowSystem / EAGL / OSGEAGLWindow.h
blob0dda66d7187e4818c28555a30dea176aff91e4a1
1 /*---------------------------------------------------------------------------*\
2 * OpenSG *
3 * *
4 * *
5 * Copyright (C) 2000-2006 by the OpenSG Forum *
6 * *
7 * www.opensg.org *
8 * *
9 * contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de *
10 * *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
13 * License *
14 * *
15 * This library is free software; you can redistribute it and/or modify it *
16 * under the terms of the GNU Library General Public License as published *
17 * by the Free Software Foundation, version 2. *
18 * *
19 * This library is distributed in the hope that it will be useful, but *
20 * WITHOUT ANY WARRANTY; without even the implied warranty of *
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
22 * Library General Public License for more details. *
23 * *
24 * You should have received a copy of the GNU Library General Public *
25 * License along with this library; if not, write to the Free Software *
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
27 * *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
30 * Changes *
31 * *
32 * *
33 * *
34 * *
35 * *
36 * *
37 \*---------------------------------------------------------------------------*/
39 #ifndef _OSGEAGLWINDOW_H_
40 #define _OSGEAGLWINDOW_H_
41 #ifdef __sgi
42 #pragma once
43 #endif
45 #if defined(__APPLE__) || defined(OSG_DO_DOC)
47 #include "OSGEAGLWindowBase.h"
49 OSG_BEGIN_NAMESPACE
51 /*! \brief EAGLWindow class. See \ref
52 PageWindowEAGL for a description.
53 \ingroup GrpWindowEAGLObj
54 \ingroup GrpLibOSGWindowEAGL
55 \includebasedoc
58 class OSG_WINDOWEAGL_DLLMAPPING EAGLWindow : public EAGLWindowBase
60 protected:
62 /*========================== PUBLIC =================================*/
64 public:
66 typedef EAGLWindowBase Inherited;
67 typedef EAGLWindow Self;
69 /*---------------------------------------------------------------------*/
70 /*! \name Sync */
71 /*! \{ */
73 virtual void changed(ConstFieldMaskArg whichField,
74 UInt32 origin,
75 BitVector details );
77 /*! \} */
78 /*---------------------------------------------------------------------*/
79 /*! \name Output */
80 /*! \{ */
82 virtual void dump( UInt32 uiIndent = 0,
83 const BitVector bvFlags = 0) const;
85 /*! \} */
86 /*---------------------------------------------------------------------*/
87 /*! \name Window functions */
88 /*! \{ */
90 virtual void init (GLInitFunctor oFunc = GLInitFunctor());
91 virtual void terminate(void );
93 /*! \} */
94 /*========================= PROTECTED ===============================*/
96 protected:
98 // Variables should all be in EAGLWindowBase.
100 /*---------------------------------------------------------------------*/
101 /*! \name Constructors */
102 /*! \{ */
104 EAGLWindow(void);
105 EAGLWindow(const EAGLWindow &source);
107 /*! \} */
108 /*---------------------------------------------------------------------*/
109 /*! \name Destructors */
110 /*! \{ */
112 virtual ~EAGLWindow(void);
114 /*! \} */
115 /*---------------------------------------------------------------------*/
116 /*! \name Init */
117 /*! \{ */
119 static void initMethod(InitPhase ePhase);
121 /*! \} */
122 /*---------------------------------------------------------------------*/
123 /*! \name Window system implementation functions */
124 /*! \{ */
126 virtual void doActivate (void);
127 virtual void doDeactivate(void);
128 virtual bool doSwap (void);
129 virtual bool hasContext (void);
131 /*! \} */
132 /*========================== PRIVATE ================================*/
134 private:
136 friend class FieldContainer;
137 friend class EAGLWindowBase;
139 // prohibit default functions (move to 'public' if you need one)
140 void operator =(const EAGLWindow &source);
143 typedef EAGLWindow *EAGLWindowP;
145 OSG_END_NAMESPACE
147 #include "OSGEAGLWindowBase.inl"
148 #include "OSGEAGLWindow.inl"
150 #endif /* __APPLE__ */
152 #endif /* _OSGEAGLWINDOW_H_ */