4 * Window management methods.
6 * Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.
7 * Written by Pawel W. Olszta, <olszta@sourceforge.net>
8 * Creation date: Fri Dec 3 1999
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included
18 * in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #define FREEGLUT_BUILDING_LIB
29 #include <GL/freeglut.h>
30 #include "freeglut_internal.h"
32 #if TARGET_HOST_POSIX_X11
33 #include <limits.h> /* LONG_MAX */
36 #if defined(_WIN32_WCE)
37 # include <Aygshell.h>
38 # ifdef FREEGLUT_LIB_PRAGMAS
39 # pragma comment( lib, "Aygshell.lib" )
41 #endif /* defined(_WIN32_WCE) */
44 #if TARGET_HOST_POSIX_X11
45 #ifndef GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB
46 #define GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20B2
49 #ifndef GLX_CONTEXT_MAJOR_VERSION_ARB
50 #define GLX_CONTEXT_MAJOR_VERSION_ARB 0x2091
53 #ifndef GLX_CONTEXT_MINOR_VERSION_ARB
54 #define GLX_CONTEXT_MINOR_VERSION_ARB 0x2092
57 #ifndef GLX_CONTEXT_FLAGS_ARB
58 #define GLX_CONTEXT_FLAGS_ARB 0x2094
61 #ifndef GLX_CONTEXT_PROFILE_MASK_ARB
62 #define GLX_CONTEXT_PROFILE_MASK_ARB 0x9126
65 #ifndef GLX_CONTEXT_DEBUG_BIT_ARB
66 #define GLX_CONTEXT_DEBUG_BIT_ARB 0x0001
69 #ifndef GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB
70 #define GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002
73 #ifndef GLX_CONTEXT_CORE_PROFILE_BIT_ARB
74 #define GLX_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001
77 #ifndef GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB
78 #define GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002
81 #ifndef GLX_RGBA_FLOAT_TYPE
82 #define GLX_RGBA_FLOAT_TYPE 0x20B9
85 #ifndef GLX_RGBA_FLOAT_BIT
86 #define GLX_RGBA_FLOAT_BIT 0x00000004
88 #endif /* TARGET_HOST_POSIX_X11 */
91 #if TARGET_HOST_MS_WINDOWS
92 /* The following include file is available from SGI but is not standard:
93 * #include <GL/wglext.h>
94 * So we copy the necessary parts out of it.
95 * XXX: should local definitions for extensions be put in a separate include file?
97 typedef const char * (WINAPI * PFNWGLGETEXTENSIONSSTRINGARBPROC) (HDC hdc);
99 typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATARBPROC) (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
101 #define WGL_DRAW_TO_WINDOW_ARB 0x2001
102 #define WGL_ACCELERATION_ARB 0x2003
103 #define WGL_SUPPORT_OPENGL_ARB 0x2010
104 #define WGL_DOUBLE_BUFFER_ARB 0x2011
105 #define WGL_COLOR_BITS_ARB 0x2014
106 #define WGL_ALPHA_BITS_ARB 0x201B
107 #define WGL_DEPTH_BITS_ARB 0x2022
108 #define WGL_STENCIL_BITS_ARB 0x2023
109 #define WGL_FULL_ACCELERATION_ARB 0x2027
111 #define WGL_SAMPLE_BUFFERS_ARB 0x2041
112 #define WGL_SAMPLES_ARB 0x2042
114 #define WGL_TYPE_RGBA_FLOAT_ARB 0x21A0
116 #define WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20A9
118 #ifndef WGL_ARB_create_context
119 #define WGL_ARB_create_context 1
120 #ifdef WGL_WGLEXT_PROTOTYPES
121 extern HGLRC WINAPI wglCreateContextAttribsARB (HDC, HGLRC, const int *);
122 #endif /* WGL_WGLEXT_PROTOTYPES */
123 typedef HGLRC (WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC) (HDC hDC, HGLRC hShareContext, const int *attribList);
125 #define WGL_CONTEXT_MAJOR_VERSION_ARB 0x2091
126 #define WGL_CONTEXT_MINOR_VERSION_ARB 0x2092
127 #define WGL_CONTEXT_LAYER_PLANE_ARB 0x2093
128 #define WGL_CONTEXT_FLAGS_ARB 0x2094
129 #define WGL_CONTEXT_PROFILE_MASK_ARB 0x9126
131 #define WGL_CONTEXT_DEBUG_BIT_ARB 0x0001
132 #define WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002
134 #define WGL_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001
135 #define WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002
137 #define ERROR_INVALID_VERSION_ARB 0x2095
138 #define ERROR_INVALID_PROFILE_ARB 0x2096
141 #endif /* TARGET_HOST_MS_WINDOWS */
144 /* pushing attribute/value pairs into an array */
145 #define ATTRIB(a) attributes[where++]=(a)
146 #define ATTRIB_VAL(a,v) {ATTRIB(a); ATTRIB(v);}
149 * TODO BEFORE THE STABLE RELEASE:
151 * fgChooseFBConfig() -- OK, but what about glutInitDisplayString()?
152 * fgSetupPixelFormat -- ignores the display mode settings
153 * fgOpenWindow() -- check the Win32 version, -iconic handling!
154 * fgCloseWindow() -- check the Win32 version
155 * glutCreateWindow() -- Check when default position and size is {-1,-1}
156 * glutCreateSubWindow() -- Check when default position and size is {-1,-1}
157 * glutDestroyWindow() -- check the Win32 version
158 * glutSetWindow() -- check the Win32 version
159 * glutGetWindow() -- OK
160 * glutSetWindowTitle() -- check the Win32 version
161 * glutSetIconTitle() -- check the Win32 version
162 * glutShowWindow() -- check the Win32 version
163 * glutHideWindow() -- check the Win32 version
164 * glutIconifyWindow() -- check the Win32 version
165 * glutReshapeWindow() -- check the Win32 version
166 * glutPositionWindow() -- check the Win32 version
167 * glutPushWindow() -- check the Win32 version
168 * glutPopWindow() -- check the Win32 version
171 /* -- PRIVATE FUNCTIONS ---------------------------------------------------- */
173 static int fghIsLegacyContextVersionRequested( void )
175 return fgState.MajorVersion == 1 && fgState.MinorVersion == 0;
178 static int fghIsLegacyContextRequested( void )
180 return fghIsLegacyContextVersionRequested() &&
181 fgState.ContextFlags == 0 &&
182 fgState.ContextProfile == 0;
185 static int fghNumberOfAuxBuffersRequested( void )
187 if ( fgState.DisplayMode & GLUT_AUX4 ) {
190 if ( fgState.DisplayMode & GLUT_AUX3 ) {
193 if ( fgState.DisplayMode & GLUT_AUX2 ) {
196 if ( fgState.DisplayMode & GLUT_AUX1 ) { /* NOTE: Same as GLUT_AUX! */
197 return fgState.AuxiliaryBufferNumber;
202 static int fghMapBit( int mask, int from, int to )
204 return ( mask & from ) ? to : 0;
208 static void fghContextCreationError( void )
210 fgError( "Unable to create OpenGL %d.%d context (flags %x, profile %x)",
211 fgState.MajorVersion, fgState.MinorVersion, fgState.ContextFlags,
212 fgState.ContextProfile );
216 /* -- SYSTEM-DEPENDENT PRIVATE FUNCTIONS ------------------------------------ */
218 #if TARGET_HOST_POSIX_X11
220 * Chooses a visual basing on the current display mode settings
223 GLXFBConfig* fgChooseFBConfig( int *numcfgs )
225 GLboolean wantIndexedMode = GL_FALSE;
226 int attributes[ 100 ];
227 int where = 0, numAuxBuffers;
229 /* First we have to process the display mode settings... */
230 if( fgState.DisplayMode & GLUT_INDEX ) {
231 ATTRIB_VAL( GLX_BUFFER_SIZE, 8 );
232 /* Buffer size is selected later. */
234 ATTRIB_VAL( GLX_RENDER_TYPE, GLX_COLOR_INDEX_BIT );
235 wantIndexedMode = GL_TRUE;
237 ATTRIB_VAL( GLX_RED_SIZE, 1 );
238 ATTRIB_VAL( GLX_GREEN_SIZE, 1 );
239 ATTRIB_VAL( GLX_BLUE_SIZE, 1 );
240 if( fgState.DisplayMode & GLUT_ALPHA ) {
241 ATTRIB_VAL( GLX_ALPHA_SIZE, 1 );
245 if( fgState.DisplayMode & GLUT_DOUBLE ) {
246 ATTRIB_VAL( GLX_DOUBLEBUFFER, True );
249 if( fgState.DisplayMode & GLUT_STEREO ) {
250 ATTRIB_VAL( GLX_STEREO, True );
253 if( fgState.DisplayMode & GLUT_DEPTH ) {
254 ATTRIB_VAL( GLX_DEPTH_SIZE, 1 );
257 if( fgState.DisplayMode & GLUT_STENCIL ) {
258 ATTRIB_VAL( GLX_STENCIL_SIZE, 1 );
261 if( fgState.DisplayMode & GLUT_ACCUM ) {
262 ATTRIB_VAL( GLX_ACCUM_RED_SIZE, 1 );
263 ATTRIB_VAL( GLX_ACCUM_GREEN_SIZE, 1 );
264 ATTRIB_VAL( GLX_ACCUM_BLUE_SIZE, 1 );
265 if( fgState.DisplayMode & GLUT_ALPHA ) {
266 ATTRIB_VAL( GLX_ACCUM_ALPHA_SIZE, 1 );
270 numAuxBuffers = fghNumberOfAuxBuffersRequested();
271 if ( numAuxBuffers > 0 ) {
272 ATTRIB_VAL( GLX_AUX_BUFFERS, numAuxBuffers );
275 if( fgState.DisplayMode & GLUT_SRGB ) {
276 ATTRIB_VAL( GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB, True );
279 if (fgState.DisplayMode & GLUT_MULTISAMPLE) {
280 ATTRIB_VAL(GLX_SAMPLE_BUFFERS, 1);
281 ATTRIB_VAL(GLX_SAMPLES, fgState.SampleNumber);
284 /* Push a terminator at the end of the list */
288 GLXFBConfig * fbconfigArray; /* Array of FBConfigs */
289 GLXFBConfig * fbconfig; /* The FBConfig we want */
290 int fbconfigArraySize; /* Number of FBConfigs in the array */
293 /* Get all FBConfigs that match "attributes". */
294 fbconfigArray = glXChooseFBConfig( fgDisplay.Display,
297 &fbconfigArraySize );
299 if (fbconfigArray != NULL)
301 int result; /* Returned by glXGetFBConfigAttrib, not checked. */
304 if( wantIndexedMode )
307 * In index mode, we want the largest buffer size, i.e. visual
308 * depth. Here, FBConfigs are sorted by increasing buffer size
309 * first, so FBConfigs with the largest size come last.
312 int bufferSizeMin, bufferSizeMax;
314 /* Get bufferSizeMin. */
316 glXGetFBConfigAttrib( fgDisplay.Display,
320 /* Get bufferSizeMax. */
322 glXGetFBConfigAttrib( fgDisplay.Display,
323 fbconfigArray[fbconfigArraySize - 1],
327 if (bufferSizeMax > bufferSizeMin)
330 * Free and reallocate fbconfigArray, keeping only FBConfigs
331 * with the largest buffer size.
333 XFree(fbconfigArray);
335 /* Add buffer size token at the end of the list. */
337 ATTRIB_VAL( GLX_BUFFER_SIZE, bufferSizeMax );
340 fbconfigArray = glXChooseFBConfig( fgDisplay.Display,
343 &fbconfigArraySize );
348 * We now have an array of FBConfigs, the first one being the "best"
349 * one. So we should return only this FBConfig:
353 * - pick the XID of the FBConfig we want
354 * result = glXGetFBConfigAttrib( fgDisplay.Display,
360 * XFree(fbconfigArray);
362 * - reset "attributes" with the XID
364 * ATTRIB_VAL( GLX_FBCONFIG_ID, fbconfigXID );
367 * - get our FBConfig only
368 * fbconfig = glXChooseFBConfig( fgDisplay.Display,
371 * &fbconfigArraySize );
373 * However, for some configurations (for instance multisampling with
374 * Mesa 6.5.2 and ATI drivers), this does not work:
375 * glXChooseFBConfig returns NULL, whereas fbconfigXID is a valid
376 * XID. Further investigation is needed.
378 * So, for now, we return the whole array of FBConfigs. This should
379 * not produce any side effects elsewhere.
381 fbconfig = fbconfigArray;
389 *numcfgs = fbconfigArraySize;
396 static void fghFillContextAttributes( int *attributes ) {
397 int where = 0, contextFlags, contextProfile;
399 if ( !fghIsLegacyContextVersionRequested() ) {
400 ATTRIB_VAL( GLX_CONTEXT_MAJOR_VERSION_ARB, fgState.MajorVersion );
401 ATTRIB_VAL( GLX_CONTEXT_MINOR_VERSION_ARB, fgState.MinorVersion );
405 fghMapBit( fgState.ContextFlags, GLUT_DEBUG, GLX_CONTEXT_DEBUG_BIT_ARB ) |
406 fghMapBit( fgState.ContextFlags, GLUT_FORWARD_COMPATIBLE, GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB );
407 if ( contextFlags != 0 ) {
408 ATTRIB_VAL( GLX_CONTEXT_FLAGS_ARB, contextFlags );
412 fghMapBit( fgState.ContextProfile, GLUT_CORE_PROFILE, GLX_CONTEXT_CORE_PROFILE_BIT_ARB ) |
413 fghMapBit( fgState.ContextProfile, GLUT_COMPATIBILITY_PROFILE, GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB );
414 if ( contextProfile != 0 ) {
415 ATTRIB_VAL( GLX_CONTEXT_PROFILE_MASK_ARB, contextProfile );
421 typedef GLXContext (*CreateContextAttribsProc)(Display *dpy, GLXFBConfig config,
422 GLXContext share_list, Bool direct,
423 const int *attrib_list);
425 static GLXContext fghCreateNewContext( SFG_Window* window )
427 /* for color model calculation */
428 int menu = ( window->IsMenu && !fgStructure.MenuContext );
429 int index_mode = ( fgState.DisplayMode & GLUT_INDEX );
431 /* "classic" context creation */
432 Display *dpy = fgDisplay.Display;
433 GLXFBConfig config = *(window->Window.FBConfig);
434 int render_type = ( !menu && index_mode ) ? GLX_COLOR_INDEX_TYPE : GLX_RGBA_TYPE;
435 GLXContext share_list = NULL;
436 Bool direct = ( fgState.DirectContext != GLUT_FORCE_INDIRECT_CONTEXT );
439 /* new context creation */
441 CreateContextAttribsProc createContextAttribs;
443 /* If nothing fancy has been required, simply use the old context creation GLX API entry */
444 if ( fghIsLegacyContextRequested() )
446 context = glXCreateNewContext( dpy, config, render_type, share_list, direct );
447 if ( context == NULL ) {
448 fghContextCreationError();
453 /* color index mode is not available anymore with OpenGL 3.0 */
454 if ( render_type == GLX_COLOR_INDEX_TYPE ) {
455 fgWarning( "color index mode is deprecated, using RGBA mode" );
458 fghFillContextAttributes( attributes );
460 createContextAttribs = (CreateContextAttribsProc) fghGetProcAddress( "glXCreateContextAttribsARB" );
461 if ( createContextAttribs == NULL ) {
462 fgError( "glXCreateContextAttribsARB not found" );
465 context = createContextAttribs( dpy, config, share_list, direct, attributes );
466 if ( context == NULL ) {
467 fghContextCreationError();
473 #define _NET_WM_STATE_TOGGLE 2
474 static int fghResizeFullscrToggle(void)
476 XWindowAttributes attributes;
478 if(glutGet(GLUT_FULL_SCREEN)) {
479 /* restore original window size */
480 SFG_Window *win = fgStructure.CurrentWindow;
481 fgStructure.CurrentWindow->State.NeedToResize = GL_TRUE;
482 fgStructure.CurrentWindow->State.Width = win->State.OldWidth;
483 fgStructure.CurrentWindow->State.Height = win->State.OldHeight;
486 /* resize the window to cover the entire screen */
487 XGetWindowAttributes(fgDisplay.Display,
488 fgStructure.CurrentWindow->Window.Handle,
492 * The "x" and "y" members of "attributes" are the window's coordinates
493 * relative to its parent, i.e. to the decoration window.
495 XMoveResizeWindow(fgDisplay.Display,
496 fgStructure.CurrentWindow->Window.Handle,
499 fgDisplay.ScreenWidth,
500 fgDisplay.ScreenHeight);
505 static int fghEwmhFullscrToggle(void)
508 long evmask = SubstructureRedirectMask | SubstructureNotifyMask;
510 if(!fgDisplay.State || !fgDisplay.StateFullScreen) {
514 xev.type = ClientMessage;
515 xev.xclient.window = fgStructure.CurrentWindow->Window.Handle;
516 xev.xclient.message_type = fgDisplay.State;
517 xev.xclient.format = 32;
518 xev.xclient.data.l[0] = _NET_WM_STATE_TOGGLE;
519 xev.xclient.data.l[1] = fgDisplay.StateFullScreen;
520 xev.xclient.data.l[2] = 0; /* no second property to toggle */
521 xev.xclient.data.l[3] = 1; /* source indication: application */
522 xev.xclient.data.l[4] = 0; /* unused */
524 if(!XSendEvent(fgDisplay.Display, fgDisplay.RootWindow, 0, evmask, &xev)) {
530 static int fghToggleFullscreen(void)
532 /* first try the EWMH (_NET_WM_STATE) method ... */
533 if(fghEwmhFullscrToggle() != -1) {
537 /* fall back to resizing the window */
538 if(fghResizeFullscrToggle() != -1) {
545 #endif /* TARGET_HOST_POSIX_X11 */
548 #if TARGET_HOST_MS_WINDOWS
550 * Setup the pixel format for a Win32 window
553 #if defined(_WIN32_WCE)
554 static wchar_t* fghWstrFromStr(const char* str)
556 int i,len=strlen(str);
557 wchar_t* wstr = (wchar_t*)malloc(2*len+2);
563 #endif /* defined(_WIN32_WCE) */
566 static void fghFillContextAttributes( int *attributes ) {
567 int where = 0, contextFlags, contextProfile;
569 if ( !fghIsLegacyContextVersionRequested() ) {
570 ATTRIB_VAL( WGL_CONTEXT_MAJOR_VERSION_ARB, fgState.MajorVersion );
571 ATTRIB_VAL( WGL_CONTEXT_MINOR_VERSION_ARB, fgState.MinorVersion );
575 fghMapBit( fgState.ContextFlags, GLUT_DEBUG, WGL_CONTEXT_DEBUG_BIT_ARB ) |
576 fghMapBit( fgState.ContextFlags, GLUT_FORWARD_COMPATIBLE, WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB );
577 if ( contextFlags != 0 ) {
578 ATTRIB_VAL( WGL_CONTEXT_FLAGS_ARB, contextFlags );
582 fghMapBit( fgState.ContextProfile, GLUT_CORE_PROFILE, WGL_CONTEXT_CORE_PROFILE_BIT_ARB ) |
583 fghMapBit( fgState.ContextProfile, GLUT_COMPATIBILITY_PROFILE, WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB );
584 if ( contextProfile != 0 ) {
585 ATTRIB_VAL( WGL_CONTEXT_PROFILE_MASK_ARB, contextProfile );
591 static int fghIsExtensionSupported( HDC hdc, const char *extension ) {
592 const char *pWglExtString;
593 PFNWGLGETEXTENSIONSSTRINGARBPROC wglGetEntensionsStringARB =
594 (PFNWGLGETEXTENSIONSSTRINGARBPROC) wglGetProcAddress("wglGetExtensionsStringARB");
595 if ( wglGetEntensionsStringARB == NULL )
599 pWglExtString = wglGetEntensionsStringARB( hdc );
600 return ( pWglExtString != NULL ) && ( strstr(pWglExtString, extension) != NULL );
603 void fgNewWGLCreateContext( SFG_Window* window )
607 PFNWGLCREATECONTEXTATTRIBSARBPROC wglCreateContextAttribsARB;
609 /* If nothing fancy has been required, leave the context as it is */
610 if ( fghIsLegacyContextRequested() )
615 wglMakeCurrent( window->Window.Device, window->Window.Context );
617 if ( !fghIsExtensionSupported( window->Window.Device, "WGL_ARB_create_context" ) )
622 /* new context creation */
623 fghFillContextAttributes( attributes );
625 wglCreateContextAttribsARB = (PFNWGLCREATECONTEXTATTRIBSARBPROC) wglGetProcAddress( "wglCreateContextAttribsARB" );
626 if ( wglCreateContextAttribsARB == NULL )
628 fgError( "wglCreateContextAttribsARB not found" );
631 context = wglCreateContextAttribsARB( window->Window.Device, 0, attributes );
632 if ( context == NULL )
634 fghContextCreationError();
637 wglMakeCurrent( NULL, NULL );
638 wglDeleteContext( window->Window.Context );
639 window->Window.Context = context;
642 #if !defined(_WIN32_WCE)
644 static void fghFillPFD( PIXELFORMATDESCRIPTOR *ppfd, HDC hdc, unsigned char layer_type )
646 int flags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
647 if ( fgState.DisplayMode & GLUT_DOUBLE ) {
648 flags |= PFD_DOUBLEBUFFER;
650 if ( fgState.DisplayMode & GLUT_STEREO ) {
654 #if defined(_MSC_VER)
655 #pragma message( "fgSetupPixelFormat(): there is still some work to do here!" )
658 /* Specify which pixel format do we opt for... */
659 ppfd->nSize = sizeof(PIXELFORMATDESCRIPTOR);
661 ppfd->dwFlags = flags;
663 if( fgState.DisplayMode & GLUT_INDEX ) {
664 ppfd->iPixelType = PFD_TYPE_COLORINDEX;
666 ppfd->cGreenBits = 0;
668 ppfd->cAlphaBits = 0;
670 ppfd->iPixelType = PFD_TYPE_RGBA;
672 ppfd->cGreenBits = 8;
674 ppfd->cAlphaBits = ( fgState.DisplayMode & GLUT_ALPHA ) ? 8 : 0;
677 ppfd->cColorBits = 24;
679 ppfd->cGreenShift = 0;
680 ppfd->cBlueShift = 0;
681 ppfd->cAlphaShift = 0;
682 ppfd->cAccumBits = 0;
683 ppfd->cAccumRedBits = 0;
684 ppfd->cAccumGreenBits = 0;
685 ppfd->cAccumBlueBits = 0;
686 ppfd->cAccumAlphaBits = 0;
688 /* Hmmm, or 32/0 instead of 24/8? */
689 ppfd->cDepthBits = 24;
690 ppfd->cStencilBits = 8;
692 ppfd->cAuxBuffers = fghNumberOfAuxBuffersRequested();
693 ppfd->iLayerType = layer_type;
695 ppfd->dwLayerMask = 0;
696 ppfd->dwVisibleMask = 0;
697 ppfd->dwDamageMask = 0;
699 ppfd->cColorBits = (BYTE) GetDeviceCaps( hdc, BITSPIXEL );
702 static void fghFillPixelFormatAttributes( int *attributes, const PIXELFORMATDESCRIPTOR *ppfd )
706 ATTRIB_VAL( WGL_DRAW_TO_WINDOW_ARB, GL_TRUE );
707 ATTRIB_VAL( WGL_SUPPORT_OPENGL_ARB, GL_TRUE );
708 ATTRIB_VAL( WGL_ACCELERATION_ARB, WGL_FULL_ACCELERATION_ARB );
710 ATTRIB_VAL( WGL_COLOR_BITS_ARB, ppfd->cColorBits );
711 ATTRIB_VAL( WGL_ALPHA_BITS_ARB, ppfd->cAlphaBits );
712 ATTRIB_VAL( WGL_DEPTH_BITS_ARB, ppfd->cDepthBits );
713 ATTRIB_VAL( WGL_STENCIL_BITS_ARB, ppfd->cStencilBits );
715 ATTRIB_VAL( WGL_DOUBLE_BUFFER_ARB, ( fgState.DisplayMode & GLUT_DOUBLE ) != 0 );
717 if ( fgState.DisplayMode & GLUT_SRGB ) {
718 ATTRIB_VAL( WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB, TRUE );
721 ATTRIB_VAL( WGL_SAMPLE_BUFFERS_ARB, GL_TRUE );
722 ATTRIB_VAL( WGL_SAMPLES_ARB, fgState.SampleNumber );
727 GLboolean fgSetupPixelFormat( SFG_Window* window, GLboolean checkOnly,
728 unsigned char layer_type )
730 #if defined(_WIN32_WCE)
733 PIXELFORMATDESCRIPTOR pfd;
734 PIXELFORMATDESCRIPTOR* ppfd = &pfd;
740 current_hDC = CreateDC(TEXT("DISPLAY"), NULL ,NULL ,NULL);
742 current_hDC = window->Window.Device;
744 fghFillPFD( ppfd, current_hDC, layer_type );
745 pixelformat = ChoosePixelFormat( current_hDC, ppfd );
747 /* windows hack for multismapling/sRGB */
748 if ( ( fgState.DisplayMode & GLUT_MULTISAMPLE ) ||
749 ( fgState.DisplayMode & GLUT_SRGB ) )
751 HGLRC rc, rc_before=wglGetCurrentContext();
753 HDC hDC, hDC_before=wglGetCurrentDC();
756 /* create a dummy window */
757 ZeroMemory(&wndCls, sizeof(wndCls));
758 wndCls.lpfnWndProc = DefWindowProc;
759 wndCls.hInstance = fgDisplay.Instance;
760 wndCls.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW;
761 wndCls.lpszClassName = _T("FREEGLUT_dummy");
762 RegisterClass( &wndCls );
764 hWnd=CreateWindow(_T("FREEGLUT_dummy"), _T(""), WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW , 0,0,0,0, 0, 0, fgDisplay.Instance, 0 );
766 SetPixelFormat( hDC, pixelformat, ppfd );
768 rc = wglCreateContext( hDC );
769 wglMakeCurrent(hDC, rc);
771 if ( fghIsExtensionSupported( hDC, "WGL_ARB_multisample" ) )
773 PFNWGLCHOOSEPIXELFORMATARBPROC wglChoosePixelFormatARBProc =
774 (PFNWGLCHOOSEPIXELFORMATARBPROC) wglGetProcAddress("wglChoosePixelFormatARB");
775 if ( wglChoosePixelFormatARBProc )
780 float fAttributes[] = { 0, 0 };
782 fghFillPixelFormatAttributes( attributes, ppfd );
783 bValid = wglChoosePixelFormatARBProc(hDC, attributes, fAttributes, 1, &iPixelFormat, &numFormats);
785 if ( bValid && numFormats > 0 )
787 pixelformat = iPixelFormat;
792 wglMakeCurrent( hDC_before, rc_before);
793 wglDeleteContext(rc);
794 ReleaseDC(hWnd, hDC);
796 UnregisterClass(_T("FREEGLUT_dummy"), fgDisplay.Instance);
799 success = ( pixelformat != 0 ) && ( checkOnly || SetPixelFormat( current_hDC, pixelformat, ppfd ) );
802 DeleteDC(current_hDC);
805 #endif /* defined(_WIN32_WCE) */
808 #endif /* TARGET_HOST_MS_WINDOWS */
811 * Sets the OpenGL context and the fgStructure "Current Window" pointer to
812 * the window structure passed in.
814 void fgSetWindow ( SFG_Window *window )
816 #if TARGET_HOST_POSIX_X11
819 glXMakeContextCurrent(
821 window->Window.Handle,
822 window->Window.Handle,
823 window->Window.Context
826 #elif TARGET_HOST_MS_WINDOWS
827 if ( window != fgStructure.CurrentWindow )
829 if( fgStructure.CurrentWindow )
830 ReleaseDC( fgStructure.CurrentWindow->Window.Handle,
831 fgStructure.CurrentWindow->Window.Device );
835 window->Window.Device = GetDC( window->Window.Handle );
837 window->Window.Device,
838 window->Window.Context
843 fgStructure.CurrentWindow = window;
846 #if TARGET_HOST_MS_WINDOWS
855 static BOOL CALLBACK m_proc(HMONITOR mon,
860 m_proc_t *dp=(m_proc_t *)data;
863 info.cbSize=sizeof(info);
864 res=GetMonitorInfo(mon,(LPMONITORINFO)&info);
867 if( !strcmp(dp->name,info.szDevice) )
869 *(dp->x)=info.rcMonitor.left;
870 *(dp->y)=info.rcMonitor.top;
878 * this function is only used in fgOpenWindow. Currently it only sets
879 * its output parameters, if the DisplayName is set in fgDisplay
880 * (and if it is able to recognize the display)
883 static void get_display_origin(int *xp,int *yp)
885 if( fgDisplay.DisplayName )
890 st.name=fgDisplay.DisplayName;
891 EnumDisplayMonitors(0,0,m_proc,(LPARAM)&st);
895 #pragma message( "-display parameter only works if compiled with WINVER >= 0x0500")
897 static void get_display_origin(int *xp,int *yp)
899 if( fgDisplay.DisplayName )
901 fgWarning( "for working -display support FreeGLUT must be compiled with WINVER >= 0x0500");
910 * Opens a window. Requires a SFG_Window object created and attached
911 * to the freeglut structure. OpenGL context is created here.
913 void fgOpenWindow( SFG_Window* window, const char* title,
914 GLboolean positionUse, int x, int y,
915 GLboolean sizeUse, int w, int h,
916 GLboolean gameMode, GLboolean isSubWindow )
918 #if TARGET_HOST_POSIX_X11
919 XVisualInfo * visualInfo;
920 XSetWindowAttributes winAttr;
921 XTextProperty textProperty;
922 XSizeHints sizeHints;
925 int num_FBConfigs, i;
926 unsigned int current_DisplayMode = fgState.DisplayMode ;
928 /* Save the display mode if we are creating a menu window */
929 if( window->IsMenu && ( ! fgStructure.MenuContext ) )
930 fgState.DisplayMode = GLUT_DOUBLE | GLUT_RGB ;
932 window->Window.FBConfig = fgChooseFBConfig( &num_FBConfigs );
934 if( window->IsMenu && ( ! fgStructure.MenuContext ) )
935 fgState.DisplayMode = current_DisplayMode ;
937 if( ! window->Window.FBConfig )
940 * The "fgChooseFBConfig" returned a null meaning that the visual
941 * context is not available.
942 * Try a couple of variations to see if they will work.
944 if( !( fgState.DisplayMode & GLUT_DOUBLE ) )
946 fgState.DisplayMode |= GLUT_DOUBLE ;
947 window->Window.FBConfig = fgChooseFBConfig( &num_FBConfigs );
948 fgState.DisplayMode &= ~GLUT_DOUBLE;
951 if( fgState.DisplayMode & GLUT_MULTISAMPLE )
953 fgState.DisplayMode &= ~GLUT_MULTISAMPLE ;
954 window->Window.FBConfig = fgChooseFBConfig( &num_FBConfigs );
955 fgState.DisplayMode |= GLUT_MULTISAMPLE;
959 FREEGLUT_INTERNAL_ERROR_EXIT( window->Window.FBConfig != NULL,
960 "FBConfig with necessary capabilities not found", "fgOpenWindow" );
962 /* Get the X visual. */
963 for (i = 0; i < num_FBConfigs; i++) {
964 visualInfo = glXGetVisualFromFBConfig( fgDisplay.Display,
965 window->Window.FBConfig[i] );
970 FREEGLUT_INTERNAL_ERROR_EXIT( visualInfo != NULL,
971 "visualInfo could not be retrieved from FBConfig", "fgOpenWindow" );
974 * XXX HINT: the masks should be updated when adding/removing callbacks.
975 * XXX This might speed up message processing. Is that true?
977 * XXX A: Not appreciably, but it WILL make it easier to debug.
978 * XXX Try tracing old GLUT and try tracing freeglut. Old GLUT
979 * XXX turns off events that it doesn't need and is a whole lot
980 * XXX more pleasant to trace. (Think mouse-motion! Tons of
981 * XXX ``bonus'' GUI events stream in.)
984 StructureNotifyMask | SubstructureNotifyMask | ExposureMask |
985 ButtonPressMask | ButtonReleaseMask | KeyPressMask | KeyReleaseMask |
986 VisibilityChangeMask | EnterWindowMask | LeaveWindowMask |
987 PointerMotionMask | ButtonMotionMask;
988 winAttr.background_pixmap = None;
989 winAttr.background_pixel = 0;
990 winAttr.border_pixel = 0;
992 winAttr.colormap = XCreateColormap(
993 fgDisplay.Display, fgDisplay.RootWindow,
994 visualInfo->visual, AllocNone
997 mask = CWBackPixmap | CWBorderPixel | CWColormap | CWEventMask;
999 if( window->IsMenu || ( gameMode == GL_TRUE ) )
1001 winAttr.override_redirect = True;
1002 mask |= CWOverrideRedirect;
1006 x = y = -1; /* default window position */
1008 w = h = 300; /* default window size */
1010 window->Window.Handle = XCreateWindow(
1012 window->Parent == NULL ? fgDisplay.RootWindow :
1013 window->Parent->Window.Handle,
1015 visualInfo->depth, InputOutput,
1016 visualInfo->visual, mask,
1021 * The GLX context creation, possibly trying the direct context rendering
1022 * or else use the current context if the user has so specified
1025 if( window->IsMenu )
1028 * If there isn't already an OpenGL rendering context for menu
1031 if( !fgStructure.MenuContext )
1033 fgStructure.MenuContext =
1034 (SFG_MenuContext *)malloc( sizeof(SFG_MenuContext) );
1035 fgStructure.MenuContext->MContext = fghCreateNewContext( window );
1038 /* window->Window.Context = fgStructure.MenuContext->MContext; */
1039 window->Window.Context = fghCreateNewContext( window );
1041 else if( fgState.UseCurrentContext )
1043 window->Window.Context = glXGetCurrentContext( );
1045 if( ! window->Window.Context )
1046 window->Window.Context = fghCreateNewContext( window );
1049 window->Window.Context = fghCreateNewContext( window );
1051 #if !defined( __FreeBSD__ ) && !defined( __NetBSD__ )
1052 if( !glXIsDirect( fgDisplay.Display, window->Window.Context ) )
1054 if( fgState.DirectContext == GLUT_FORCE_DIRECT_CONTEXT )
1055 fgError( "Unable to force direct context rendering for window '%s'",
1061 * XXX Assume the new window is visible by default
1062 * XXX Is this a safe assumption?
1064 window->State.Visible = GL_TRUE;
1066 sizeHints.flags = 0;
1068 sizeHints.flags |= USPosition;
1070 sizeHints.flags |= USSize;
1073 * Fill in the size hints values now (the x, y, width and height
1074 * settings are obsolete, are there any more WMs that support them?)
1075 * Unless the X servers actually stop supporting these, we should
1076 * continue to fill them in. It is *not* our place to tell the user
1077 * that they should replace a window manager that they like, and which
1078 * works, just because *we* think that it's not "modern" enough.
1082 sizeHints.width = w;
1083 sizeHints.height = h;
1085 wmHints.flags = StateHint;
1086 wmHints.initial_state = fgState.ForceIconic ? IconicState : NormalState;
1087 /* Prepare the window and iconified window names... */
1088 XStringListToTextProperty( (char **) &title, 1, &textProperty );
1092 window->Window.Handle,
1101 XFree( textProperty.value );
1103 XSetWMProtocols( fgDisplay.Display, window->Window.Handle,
1104 &fgDisplay.DeleteWindow, 1 );
1106 glXMakeContextCurrent(
1108 window->Window.Handle,
1109 window->Window.Handle,
1110 window->Window.Context
1113 XMapWindow( fgDisplay.Display, window->Window.Handle );
1117 #elif TARGET_HOST_MS_WINDOWS
1123 int WindowStyle = 0;
1125 /* Grab the window class we have registered on glutInit(): */
1126 atom = GetClassInfo( fgDisplay.Instance, _T("FREEGLUT"), &wc );
1127 FREEGLUT_INTERNAL_ERROR_EXIT ( atom, "Window Class Info Not Found",
1132 FREEGLUT_INTERNAL_ERROR_EXIT ( window->Parent == NULL,
1133 "Game mode being invoked on a subwindow",
1137 * Set the window creation flags appropriately to make the window
1140 flags = WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_VISIBLE;
1144 int worig = w, horig = h;
1146 #if !defined(_WIN32_WCE)
1147 if ( ( ! isSubWindow ) && ( ! window->IsMenu ) )
1150 * Update the window dimensions, taking account of window
1151 * decorations. "freeglut" is to create the window with the
1152 * outside of its border at (x,y) and with dimensions (w,h).
1154 w += (GetSystemMetrics( SM_CXSIZEFRAME ) )*2;
1155 h += (GetSystemMetrics( SM_CYSIZEFRAME ) )*2 +
1156 GetSystemMetrics( SM_CYCAPTION );
1158 #endif /* defined(_WIN32_WCE) */
1165 /* setting State.Width/Height to call resize callback later */
1168 if( ! window->IsMenu )
1173 else /* fail safe - Windows can make a window of size (0, 0) */
1174 w = h = 300; /* default window size */
1175 window->State.Width = window->State.Height = -1;
1179 window->State.Width = worig;
1180 window->State.Height = horig;
1184 * There's a small difference between creating the top, child and
1187 flags = WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_VISIBLE;
1189 if ( window->IsMenu )
1192 exFlags |= WS_EX_TOOLWINDOW;
1194 #if !defined(_WIN32_WCE)
1195 else if( window->Parent == NULL )
1196 flags |= WS_OVERLAPPEDWINDOW;
1202 #if defined(_WIN32_WCE)
1204 wchar_t* wstr = fghWstrFromStr(title);
1206 window->Window.Handle = CreateWindow(
1209 WS_VISIBLE | WS_POPUP,
1219 SHFullScreen(window->Window.Handle, SHFS_HIDESTARTICON);
1220 SHFullScreen(window->Window.Handle, SHFS_HIDESIPBUTTON);
1221 SHFullScreen(window->Window.Handle, SHFS_HIDETASKBAR);
1222 MoveWindow(window->Window.Handle, 0, 0, 240, 320, TRUE);
1223 ShowWindow(window->Window.Handle, SW_SHOW);
1224 UpdateWindow(window->Window.Handle);
1228 /* xoff and yoff are used to place window relative to current display */
1229 /* The operation of gamemode also depends on this */
1231 get_display_origin(&xoff,&yoff);
1233 window->Window.Handle = CreateWindowEx(
1238 x+xoff, y+yoff, w, h,
1239 (HWND) window->Parent == NULL ? NULL : window->Parent->Window.Handle,
1245 #endif /* defined(_WIN32_WCE) */
1247 if( !( window->Window.Handle ) )
1248 fgError( "Failed to create a window (%s)!", title );
1250 /* Make a menu window always on top - fix Feature Request 947118 */
1251 if( window->IsMenu || gameMode )
1253 window->Window.Handle,
1256 SWP_NOMOVE | SWP_NOSIZE
1259 /* Hack to remove the caption (title bar) and/or border
1260 * and all the system menu controls.
1262 WindowStyle = GetWindowLong(window->Window.Handle, GWL_STYLE);
1263 if ( fgState.DisplayMode & GLUT_CAPTIONLESS )
1265 SetWindowLong ( window->Window.Handle, GWL_STYLE,
1266 WindowStyle & ~(WS_DLGFRAME | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX));
1268 else if ( fgState.DisplayMode & GLUT_BORDERLESS )
1270 SetWindowLong ( window->Window.Handle, GWL_STYLE,
1271 WindowStyle & ~(WS_BORDER | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX));
1273 /* SetWindowPos(window->Window.Handle, NULL, 0, 0, 0, 0,
1274 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED); */
1277 #if defined(_WIN32_WCE)
1278 ShowWindow( window->Window.Handle, SW_SHOW );
1280 ShowWindow( window->Window.Handle,
1281 fgState.ForceIconic ? SW_SHOWMINIMIZED : SW_SHOW );
1282 #endif /* defined(_WIN32_WCE) */
1284 UpdateWindow( window->Window.Handle );
1285 ShowCursor( TRUE ); /* XXX Old comments say "hide cursor"! */
1289 fgSetWindow( window );
1291 window->Window.DoubleBuffered =
1292 ( fgState.DisplayMode & GLUT_DOUBLE ) ? 1 : 0;
1294 if ( ! window->Window.DoubleBuffered )
1296 glDrawBuffer ( GL_FRONT );
1297 glReadBuffer ( GL_FRONT );
1302 * Closes a window, destroying the frame and OpenGL context
1304 void fgCloseWindow( SFG_Window* window )
1306 #if TARGET_HOST_POSIX_X11
1308 if( window->Window.Context )
1309 glXDestroyContext( fgDisplay.Display, window->Window.Context );
1310 XFree( window->Window.FBConfig );
1312 if( window->Window.Handle ) {
1313 XDestroyWindow( fgDisplay.Display, window->Window.Handle );
1315 /* XFlush( fgDisplay.Display ); */ /* XXX Shouldn't need this */
1317 #elif TARGET_HOST_MS_WINDOWS
1319 /* Make sure we don't close a window with current context active */
1320 if( fgStructure.CurrentWindow == window )
1321 wglMakeCurrent( NULL, NULL );
1324 * Step through the list of windows. If the rendering context
1325 * is not being used by another window, then we delete it.
1331 for( iter = (SFG_Window *)fgStructure.Windows.First;
1333 iter = (SFG_Window *)iter->Node.Next )
1335 if( ( iter->Window.Context == window->Window.Context ) &&
1336 ( iter != window ) )
1341 wglDeleteContext( window->Window.Context );
1344 DestroyWindow( window->Window.Handle );
1349 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
1352 * Creates a new top-level freeglut window
1354 int FGAPIENTRY glutCreateWindow( const char* title )
1356 /* XXX GLUT does not exit; it simply calls "glutInit" quietly if the
1357 * XXX application has not already done so. The "freeglut" community
1358 * XXX decided not to go this route (freeglut-developer e-mail from
1359 * XXX Steve Baker, 12/16/04, 4:22 PM CST, "Re: [Freeglut-developer]
1360 * XXX Desired 'freeglut' behaviour when there is no current window"
1362 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutCreateWindow" );
1364 return fgCreateWindow( NULL, title, fgState.Position.Use,
1365 fgState.Position.X, fgState.Position.Y,
1366 fgState.Size.Use, fgState.Size.X, fgState.Size.Y,
1367 GL_FALSE, GL_FALSE )->ID;
1370 #if TARGET_HOST_MS_WINDOWS
1371 int FGAPIENTRY __glutCreateWindowWithExit( const char *title, void (__cdecl *exit_function)(int) )
1373 __glutExitFunc = exit_function;
1374 return glutCreateWindow( title );
1379 * This function creates a sub window.
1381 int FGAPIENTRY glutCreateSubWindow( int parentID, int x, int y, int w, int h )
1384 SFG_Window* window = NULL;
1385 SFG_Window* parent = NULL;
1387 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutCreateSubWindow" );
1388 parent = fgWindowByID( parentID );
1389 freeglut_return_val_if_fail( parent != NULL, 0 );
1392 x = parent->State.Width + x ;
1393 if ( w >= 0 ) x -= w ;
1396 if ( w < 0 ) w = parent->State.Width - x + w ;
1405 y = parent->State.Height + y ;
1406 if ( h >= 0 ) y -= h ;
1409 if ( h < 0 ) h = parent->State.Height - y + h ;
1416 window = fgCreateWindow( parent, "", GL_TRUE, x, y, GL_TRUE, w, h, GL_FALSE, GL_FALSE );
1423 * Destroys a window and all of its subwindows
1425 void FGAPIENTRY glutDestroyWindow( int windowID )
1428 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutDestroyWindow" );
1429 window = fgWindowByID( windowID );
1430 freeglut_return_if_fail( window != NULL );
1432 fgExecutionState ExecState = fgState.ExecState;
1433 fgAddToWindowDestroyList( window );
1434 fgState.ExecState = ExecState;
1439 * This function selects the current window
1441 void FGAPIENTRY glutSetWindow( int ID )
1443 SFG_Window* window = NULL;
1445 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetWindow" );
1446 if( fgStructure.CurrentWindow != NULL )
1447 if( fgStructure.CurrentWindow->ID == ID )
1450 window = fgWindowByID( ID );
1451 if( window == NULL )
1453 fgWarning( "glutSetWindow(): window ID %d not found!", ID );
1457 fgSetWindow( window );
1461 * This function returns the ID number of the current window, 0 if none exists
1463 int FGAPIENTRY glutGetWindow( void )
1465 SFG_Window *win = fgStructure.CurrentWindow;
1467 * Since GLUT did not throw an error if this function was called without a prior call to
1468 * "glutInit", this function shouldn't do so here. Instead let us return a zero.
1469 * See Feature Request "[ 1307049 ] glutInit check".
1471 if ( ! fgState.Initialised )
1474 while ( win && win->IsMenu )
1476 return win ? win->ID : 0;
1480 * This function makes the current window visible
1482 void FGAPIENTRY glutShowWindow( void )
1484 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutShowWindow" );
1485 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutShowWindow" );
1487 #if TARGET_HOST_POSIX_X11
1489 XMapWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle );
1490 XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1492 #elif TARGET_HOST_MS_WINDOWS
1494 ShowWindow( fgStructure.CurrentWindow->Window.Handle, SW_SHOW );
1498 fgStructure.CurrentWindow->State.Redisplay = GL_TRUE;
1502 * This function hides the current window
1504 void FGAPIENTRY glutHideWindow( void )
1506 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutHideWindow" );
1507 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutHideWindow" );
1509 #if TARGET_HOST_POSIX_X11
1511 if( fgStructure.CurrentWindow->Parent == NULL )
1512 XWithdrawWindow( fgDisplay.Display,
1513 fgStructure.CurrentWindow->Window.Handle,
1516 XUnmapWindow( fgDisplay.Display,
1517 fgStructure.CurrentWindow->Window.Handle );
1518 XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1520 #elif TARGET_HOST_MS_WINDOWS
1522 ShowWindow( fgStructure.CurrentWindow->Window.Handle, SW_HIDE );
1526 fgStructure.CurrentWindow->State.Redisplay = GL_FALSE;
1530 * Iconify the current window (top-level windows only)
1532 void FGAPIENTRY glutIconifyWindow( void )
1534 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutIconifyWindow" );
1535 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutIconifyWindow" );
1537 fgStructure.CurrentWindow->State.Visible = GL_FALSE;
1538 #if TARGET_HOST_POSIX_X11
1540 XIconifyWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle,
1542 XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1544 #elif TARGET_HOST_MS_WINDOWS
1546 ShowWindow( fgStructure.CurrentWindow->Window.Handle, SW_MINIMIZE );
1550 fgStructure.CurrentWindow->State.Redisplay = GL_FALSE;
1554 * Set the current window's title
1556 void FGAPIENTRY glutSetWindowTitle( const char* title )
1558 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetWindowTitle" );
1559 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutSetWindowTitle" );
1560 if( ! fgStructure.CurrentWindow->Parent )
1562 #if TARGET_HOST_POSIX_X11
1566 text.value = (unsigned char *) title;
1567 text.encoding = XA_STRING;
1569 text.nitems = strlen( title );
1573 fgStructure.CurrentWindow->Window.Handle,
1577 XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1579 #elif TARGET_HOST_MS_WINDOWS
1582 wchar_t* wstr = fghWstrFromStr(title);
1583 SetWindowText( fgStructure.CurrentWindow->Window.Handle, wstr );
1587 SetWindowText( fgStructure.CurrentWindow->Window.Handle, title );
1595 * Set the current window's iconified title
1597 void FGAPIENTRY glutSetIconTitle( const char* title )
1599 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetIconTitle" );
1600 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutSetIconTitle" );
1602 if( ! fgStructure.CurrentWindow->Parent )
1604 #if TARGET_HOST_POSIX_X11
1608 text.value = (unsigned char *) title;
1609 text.encoding = XA_STRING;
1611 text.nitems = strlen( title );
1615 fgStructure.CurrentWindow->Window.Handle,
1619 XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1621 #elif TARGET_HOST_MS_WINDOWS
1624 wchar_t* wstr = fghWstrFromStr(title);
1625 SetWindowText( fgStructure.CurrentWindow->Window.Handle, wstr );
1629 SetWindowText( fgStructure.CurrentWindow->Window.Handle, title );
1637 * Change the current window's size
1639 void FGAPIENTRY glutReshapeWindow( int width, int height )
1641 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutReshapeWindow" );
1642 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutReshapeWindow" );
1644 if (glutGet(GLUT_FULL_SCREEN))
1646 /* Leave full screen state before resizing. */
1647 glutFullScreenToggle();
1650 fgStructure.CurrentWindow->State.NeedToResize = GL_TRUE;
1651 fgStructure.CurrentWindow->State.Width = width ;
1652 fgStructure.CurrentWindow->State.Height = height;
1656 * Change the current window's position
1658 void FGAPIENTRY glutPositionWindow( int x, int y )
1660 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutPositionWindow" );
1661 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutPositionWindow" );
1663 if (glutGet(GLUT_FULL_SCREEN))
1665 /* Leave full screen state before moving. */
1666 glutFullScreenToggle();
1669 #if TARGET_HOST_POSIX_X11
1671 XMoveWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle,
1673 XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1675 #elif TARGET_HOST_MS_WINDOWS
1680 /* "GetWindowRect" returns the pixel coordinates of the outside of the window */
1681 GetWindowRect( fgStructure.CurrentWindow->Window.Handle, &winRect );
1683 fgStructure.CurrentWindow->Window.Handle,
1686 winRect.right - winRect.left,
1687 winRect.bottom - winRect.top,
1696 * Lowers the current window (by Z order change)
1698 void FGAPIENTRY glutPushWindow( void )
1700 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutPushWindow" );
1701 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutPushWindow" );
1703 #if TARGET_HOST_POSIX_X11
1705 XLowerWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle );
1707 #elif TARGET_HOST_MS_WINDOWS
1710 fgStructure.CurrentWindow->Window.Handle,
1713 SWP_NOSIZE | SWP_NOMOVE
1720 * Raises the current window (by Z order change)
1722 void FGAPIENTRY glutPopWindow( void )
1724 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutPopWindow" );
1725 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutPopWindow" );
1727 #if TARGET_HOST_POSIX_X11
1729 XRaiseWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle );
1731 #elif TARGET_HOST_MS_WINDOWS
1734 fgStructure.CurrentWindow->Window.Handle,
1737 SWP_NOSIZE | SWP_NOMOVE
1744 * Resize the current window so that it fits the whole screen
1746 void FGAPIENTRY glutFullScreen( void )
1750 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutFullScreen" );
1751 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutFullScreen" );
1753 win = fgStructure.CurrentWindow;
1755 #if TARGET_HOST_POSIX_X11
1756 if(!glutGet(GLUT_FULL_SCREEN)) {
1757 if(fghToggleFullscreen() != -1) {
1758 win->State.IsFullscreen = GL_TRUE;
1762 #elif TARGET_HOST_MS_WINDOWS && !defined(_WIN32_WCE) /* FIXME: what about WinCE */
1764 if (glutGet(GLUT_FULL_SCREEN))
1766 /* Leave full screen state before resizing. */
1767 glutFullScreenToggle();
1773 /* For fullscreen mode, force the top-left corner to 0,0
1774 * and adjust the window rectangle so that the client area
1775 * covers the whole screen.
1780 get_display_origin(&rect.left,&rect.top);
1781 rect.right = fgDisplay.ScreenWidth+rect.left;
1782 rect.bottom = fgDisplay.ScreenHeight+rect.top;
1784 AdjustWindowRect ( &rect, WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS |
1785 WS_CLIPCHILDREN, FALSE );
1788 * SWP_NOACTIVATE Do not activate the window
1789 * SWP_NOOWNERZORDER Do not change position in z-order
1790 * SWP_NOSENDCHANGING Supress WM_WINDOWPOSCHANGING message
1791 * SWP_NOZORDER Retains the current Z order (ignore 2nd param)
1794 SetWindowPos( fgStructure.CurrentWindow->Window.Handle,
1798 rect.right - rect.left,
1799 rect.bottom - rect.top,
1800 SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOSENDCHANGING |
1804 win->State.IsFullscreen = GL_TRUE;
1810 * Toggle the window's full screen state.
1812 void FGAPIENTRY glutFullScreenToggle( void )
1816 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutFullScreenToggle" );
1817 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutFullScreenToggle" );
1819 win = fgStructure.CurrentWindow;
1821 #if TARGET_HOST_POSIX_X11
1822 if(fghToggleFullscreen() != -1) {
1823 win->State.IsFullscreen = !win->State.IsFullscreen;
1825 #elif TARGET_HOST_MS_WINDOWS
1827 win->State.IsFullscreen = !win->State.IsFullscreen;
1832 * A.Donev: Set and retrieve the window's user data
1834 void* FGAPIENTRY glutGetWindowData( void )
1836 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutGetWindowData" );
1837 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutGetWindowData" );
1838 return fgStructure.CurrentWindow->UserData;
1841 void FGAPIENTRY glutSetWindowData(void* data)
1843 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetWindowData" );
1844 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutSetWindowData" );
1845 fgStructure.CurrentWindow->UserData = data;
1848 /*** END OF FILE ***/