1 /*---------------------------------------------------------------------------*\
5 * Copyright (C) 2000-2006 by the OpenSG Forum *
9 * contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
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. *
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. *
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. *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
37 \*---------------------------------------------------------------------------*/
39 #ifndef _OSGEAGLWINDOW_H_
40 #define _OSGEAGLWINDOW_H_
45 #if defined(__APPLE__) || defined(OSG_DO_DOC)
47 #include "OSGEAGLWindowBase.h"
51 /*! \brief EAGLWindow class. See \ref
52 PageWindowEAGL for a description.
53 \ingroup GrpWindowEAGLObj
54 \ingroup GrpLibOSGWindowEAGL
58 class OSG_WINDOWEAGL_DLLMAPPING EAGLWindow
: public EAGLWindowBase
62 /*========================== PUBLIC =================================*/
66 typedef EAGLWindowBase Inherited
;
67 typedef EAGLWindow Self
;
69 /*---------------------------------------------------------------------*/
73 virtual void changed(ConstFieldMaskArg whichField
,
78 /*---------------------------------------------------------------------*/
82 virtual void dump( UInt32 uiIndent
= 0,
83 const BitVector bvFlags
= 0) const;
86 /*---------------------------------------------------------------------*/
87 /*! \name Window functions */
90 virtual void init (GLInitFunctor oFunc
= GLInitFunctor());
91 virtual void terminate(void );
94 /*========================= PROTECTED ===============================*/
98 // Variables should all be in EAGLWindowBase.
100 /*---------------------------------------------------------------------*/
101 /*! \name Constructors */
105 EAGLWindow(const EAGLWindow
&source
);
108 /*---------------------------------------------------------------------*/
109 /*! \name Destructors */
112 virtual ~EAGLWindow(void);
115 /*---------------------------------------------------------------------*/
119 static void initMethod(InitPhase ePhase
);
122 /*---------------------------------------------------------------------*/
123 /*! \name Window system implementation functions */
126 virtual void doActivate (void);
127 virtual void doDeactivate(void);
128 virtual bool doSwap (void);
129 virtual bool hasContext (void);
132 /*========================== 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
;
147 #include "OSGEAGLWindowBase.inl"
148 #include "OSGEAGLWindow.inl"
150 #endif /* __APPLE__ */
152 #endif /* _OSGEAGLWINDOW_H_ */