Removed the annoying "Unable to create direct context rendering..." warning,
[freeglut] / src / freeglut_window.c
1 /*
2  * freeglut_window.c
3  *
4  * Window management methods.
5  *
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
9  *
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:
16  *
17  * The above copyright notice and this permission notice shall be included
18  * in all copies or substantial portions of the Software.
19  *
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.
26  */
27
28 #include <GL/freeglut.h>
29 #include "freeglut_internal.h"
30
31 #if TARGET_HOST_POSIX_X11
32 #include <limits.h>  /* LONG_MAX */
33 #endif
34
35 #if defined(_WIN32_WCE)
36 #   include <Aygshell.h>
37 #   ifdef FREEGLUT_LIB_PRAGMAS
38 #       pragma comment( lib, "Aygshell.lib" )
39 #   endif
40
41 static wchar_t* fghWstrFromStr(const char* str)
42 {
43     int i,len=strlen(str);
44     wchar_t* wstr = (wchar_t*)malloc(2*len+2);
45     for(i=0; i<len; i++)
46         wstr[i] = str[i];
47     wstr[len] = 0;
48     return wstr;
49 }
50
51 #endif /* defined(_WIN32_WCE) */
52
53 /*
54  * TODO BEFORE THE STABLE RELEASE:
55  *
56  *  fgChooseFBConfig()      -- OK, but what about glutInitDisplayString()?
57  *  fgSetupPixelFormat      -- ignores the display mode settings
58  *  fgOpenWindow()          -- check the Win32 version, -iconic handling!
59  *  fgCloseWindow()         -- check the Win32 version
60  *  glutCreateWindow()      -- Check when default position and size is {-1,-1}
61  *  glutCreateSubWindow()   -- Check when default position and size is {-1,-1}
62  *  glutDestroyWindow()     -- check the Win32 version
63  *  glutSetWindow()         -- check the Win32 version
64  *  glutGetWindow()         -- OK
65  *  glutSetWindowTitle()    -- check the Win32 version
66  *  glutSetIconTitle()      -- check the Win32 version
67  *  glutShowWindow()        -- check the Win32 version
68  *  glutHideWindow()        -- check the Win32 version
69  *  glutIconifyWindow()     -- check the Win32 version
70  *  glutReshapeWindow()     -- check the Win32 version
71  *  glutPositionWindow()    -- check the Win32 version
72  *  glutPushWindow()        -- check the Win32 version
73  *  glutPopWindow()         -- check the Win32 version
74  */
75
76 /* -- PRIVATE FUNCTIONS ---------------------------------------------------- */
77
78 /*
79  * Chooses a visual basing on the current display mode settings
80  */
81 #if TARGET_HOST_POSIX_X11
82
83 GLXFBConfig* fgChooseFBConfig( void )
84 {
85     GLboolean wantIndexedMode = GL_FALSE;
86     int attributes[ 32 ];
87     int where = 0;
88
89     /* First we have to process the display mode settings... */
90 /*
91  * XXX Why is there a semi-colon in this #define?  The code
92  * XXX that uses the macro seems to always add more semicolons...
93  */
94 #define ATTRIB(a) attributes[where++]=a;
95 #define ATTRIB_VAL(a,v) {ATTRIB(a); ATTRIB(v);}
96
97     if( fgState.DisplayMode & GLUT_INDEX )
98     {
99         ATTRIB_VAL( GLX_BUFFER_SIZE, 8 );
100         /*  Buffer size is selected later.  */
101
102         ATTRIB_VAL( GLX_RENDER_TYPE, GLX_COLOR_INDEX_BIT );
103         wantIndexedMode = GL_TRUE;
104     }
105     else
106     {
107         ATTRIB_VAL( GLX_RED_SIZE,   1 );
108         ATTRIB_VAL( GLX_GREEN_SIZE, 1 );
109         ATTRIB_VAL( GLX_BLUE_SIZE,  1 );
110         if( fgState.DisplayMode & GLUT_ALPHA )
111             ATTRIB_VAL( GLX_ALPHA_SIZE, 1 );
112     }
113
114     if( fgState.DisplayMode & GLUT_DOUBLE )
115         ATTRIB_VAL( GLX_DOUBLEBUFFER, True );
116
117     if( fgState.DisplayMode & GLUT_STEREO )
118         ATTRIB_VAL( GLX_STEREO, True );
119
120     if( fgState.DisplayMode & GLUT_DEPTH )
121         ATTRIB_VAL( GLX_DEPTH_SIZE, 1 );
122
123     if( fgState.DisplayMode & GLUT_STENCIL )
124         ATTRIB_VAL( GLX_STENCIL_SIZE, 1 );
125
126     if( fgState.DisplayMode & GLUT_ACCUM )
127     {
128         ATTRIB_VAL( GLX_ACCUM_RED_SIZE,   1 );
129         ATTRIB_VAL( GLX_ACCUM_GREEN_SIZE, 1 );
130         ATTRIB_VAL( GLX_ACCUM_BLUE_SIZE,  1 );
131         if( fgState.DisplayMode & GLUT_ALPHA )
132             ATTRIB_VAL( GLX_ACCUM_ALPHA_SIZE, 1 );
133     }
134
135     if ((fgState.DisplayMode & GLUT_AUX)
136      || (fgState.DisplayMode & GLUT_AUX1)
137      || (fgState.DisplayMode & GLUT_AUX2)
138      || (fgState.DisplayMode & GLUT_AUX3)
139      || (fgState.DisplayMode & GLUT_AUX4))
140       {
141         ATTRIB_VAL(GLX_AUX_BUFFERS, fgState.AuxiliaryBufferNumber)
142       }
143
144     if (fgState.DisplayMode & GLUT_MULTISAMPLE)
145       {
146         ATTRIB_VAL(GLX_SAMPLE_BUFFERS, 1)
147         ATTRIB_VAL(GLX_SAMPLES, fgState.SampleNumber)
148       }
149
150     /* Push a null at the end of the list */
151     ATTRIB( None );
152
153     {
154         GLXFBConfig * fbconfigArray;  /*  Array of FBConfigs  */
155         GLXFBConfig * fbconfig;       /*  The FBConfig we want  */
156         int fbconfigArraySize;        /*  Number of FBConfigs in the array  */
157
158
159         /*  Get all FBConfigs that match "attributes".  */
160         fbconfigArray = glXChooseFBConfig( fgDisplay.Display,
161                                            fgDisplay.Screen,
162                                            attributes,
163                                            &fbconfigArraySize );
164
165         if (fbconfigArray != NULL)
166         {
167             int result;  /* Returned by glXGetFBConfigAttrib, not checked. */
168
169
170             if( wantIndexedMode )
171             {
172                 /*
173                  * In index mode, we want the largest buffer size, i.e. visual
174                  * depth.  Here, FBConfigs are sorted by increasing buffer size
175                  * first, so FBConfigs with the largest size come last.
176                  */
177
178                 int bufferSizeMin, bufferSizeMax;
179
180                 /*  Get bufferSizeMin.  */
181                 result =
182                   glXGetFBConfigAttrib( fgDisplay.Display,
183                                         fbconfigArray[0],
184                                         GLX_BUFFER_SIZE,
185                                         &bufferSizeMin );
186                 /*  Get bufferSizeMax.  */
187                 result =
188                   glXGetFBConfigAttrib( fgDisplay.Display,
189                                         fbconfigArray[fbconfigArraySize - 1],
190                                         GLX_BUFFER_SIZE,
191                                         &bufferSizeMax );
192
193                 if (bufferSizeMax > bufferSizeMin)
194                 {
195                     /* 
196                      * Free and reallocate fbconfigArray, keeping only FBConfigs
197                      * with the largest buffer size.
198                      */
199                     XFree(fbconfigArray);
200
201                     /*  Add buffer size token at the end of the list.  */
202                     where--;
203                     ATTRIB_VAL( GLX_BUFFER_SIZE, bufferSizeMax );
204                     ATTRIB( None );
205
206                     fbconfigArray = glXChooseFBConfig( fgDisplay.Display,
207                                                        fgDisplay.Screen,
208                                                        attributes,
209                                                        &fbconfigArraySize );
210                 }
211             }
212
213             /*
214              * We now have an array of FBConfigs, the first one being the "best"
215              * one.  So we should return only this FBConfig:
216              *
217              * int fbconfigXID;
218              *
219              *  - pick the XID of the FBConfig we want
220              * result = glXGetFBConfigAttrib( fgDisplay.Display,
221              *                                fbconfigArray[0],
222              *                                GLX_FBCONFIG_ID,
223              *                                &fbconfigXID );
224              *
225              * - free the array
226              * XFree(fbconfigArray);
227              *
228              * - reset "attributes" with the XID
229              * where = 0;
230              * ATTRIB_VAL( GLX_FBCONFIG_ID, fbconfigXID );
231              * ATTRIB( None );
232              *
233              * - get our FBConfig only
234              * fbconfig = glXChooseFBConfig( fgDisplay.Display,
235              *                               fgDisplay.Screen,
236              *                               attributes,
237              *                               &fbconfigArraySize );
238              *
239              * However, for some configurations (for instance multisampling with
240              * Mesa 6.5.2 and ATI drivers), this does not work:
241              * glXChooseFBConfig returns NULL, whereas fbconfigXID is a valid
242              * XID.  Further investigation is needed.
243              *
244              * So, for now, we return the whole array of FBConfigs.  This should
245              * not produce any side effects elsewhere.
246              */
247             fbconfig = fbconfigArray;
248         }
249         else
250         {
251            fbconfig = NULL;
252         }
253
254         return fbconfig;
255     }
256 }
257 #endif /* TARGET_HOST_POSIX_X11 */
258
259 /*
260  * Setup the pixel format for a Win32 window
261  */
262 #if TARGET_HOST_MS_WINDOWS
263 /* The following include file is available from SGI but is not standard:
264  *   #include <GL/wglext.h>
265  * So we copy the necessary parts out of it.
266  * XXX: should local definitions for extensions be put in a separate include file?
267  */
268 typedef const char * (WINAPI * PFNWGLGETEXTENSIONSSTRINGARBPROC) (HDC hdc);
269
270 typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATARBPROC) (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
271
272 #define WGL_DRAW_TO_WINDOW_ARB         0x2001
273 #define WGL_ACCELERATION_ARB           0x2003
274 #define WGL_SUPPORT_OPENGL_ARB         0x2010
275 #define WGL_DOUBLE_BUFFER_ARB          0x2011
276 #define WGL_COLOR_BITS_ARB             0x2014
277 #define WGL_ALPHA_BITS_ARB             0x201B
278 #define WGL_DEPTH_BITS_ARB             0x2022
279 #define WGL_STENCIL_BITS_ARB           0x2023
280 #define WGL_FULL_ACCELERATION_ARB      0x2027
281
282 #define WGL_SAMPLE_BUFFERS_ARB         0x2041
283 #define WGL_SAMPLES_ARB                0x2042
284
285
286 GLboolean fgSetupPixelFormat( SFG_Window* window, GLboolean checkOnly,
287                               unsigned char layer_type )
288 {
289 #if defined(_WIN32_WCE)
290     return GL_TRUE;
291 #else
292     PIXELFORMATDESCRIPTOR* ppfd, pfd;
293     int flags, pixelformat;
294
295     freeglut_return_val_if_fail( window != NULL, 0 );
296     flags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
297     if( fgState.DisplayMode & GLUT_DOUBLE )
298         flags |= PFD_DOUBLEBUFFER;
299
300     if( fgState.DisplayMode & GLUT_STEREO )
301         flags |= PFD_STEREO;
302
303 #if defined(_MSC_VER)
304 #pragma message( "fgSetupPixelFormat(): there is still some work to do here!" )
305 #endif
306
307     /* Specify which pixel format do we opt for... */
308     pfd.nSize           = sizeof(PIXELFORMATDESCRIPTOR);
309     pfd.nVersion        = 1;
310     pfd.dwFlags         = flags;
311
312     if( fgState.DisplayMode & GLUT_INDEX )
313     {
314         pfd.iPixelType = PFD_TYPE_COLORINDEX;
315         pfd.cRedBits                = 0;
316         pfd.cGreenBits            = 0;
317         pfd.cBlueBits             = 0;
318         pfd.cAlphaBits            = 0;
319     }
320     else
321     {
322         pfd.iPixelType      = PFD_TYPE_RGBA;
323         pfd.cRedBits                = 8;
324         pfd.cGreenBits            = 8;
325         pfd.cBlueBits             = 8;
326         if ( fgState.DisplayMode & GLUT_ALPHA )
327             pfd.cAlphaBits            = 8;
328         else
329             pfd.cAlphaBits            = 0;
330     }
331
332     pfd.cColorBits      = 24;
333     pfd.cRedShift       = 0;
334     pfd.cGreenShift     = 0;
335     pfd.cBlueShift      = 0;
336     pfd.cAlphaShift     = 0;
337     pfd.cAccumBits      = 0;
338     pfd.cAccumRedBits   = 0;
339     pfd.cAccumGreenBits = 0;
340     pfd.cAccumBlueBits  = 0;
341     pfd.cAccumAlphaBits = 0;
342 #if 0
343     pfd.cDepthBits      = 32;
344     pfd.cStencilBits    = 0;
345 #else
346     pfd.cDepthBits      = 24;
347     pfd.cStencilBits    = 8;
348 #endif
349     if( fgState.DisplayMode & GLUT_AUX4 )
350         pfd.cAuxBuffers = 4;
351     else if( fgState.DisplayMode & GLUT_AUX3 )
352         pfd.cAuxBuffers = 3;
353     else if( fgState.DisplayMode & GLUT_AUX2 )
354         pfd.cAuxBuffers = 2;
355     else if( fgState.DisplayMode & GLUT_AUX1 )
356         pfd.cAuxBuffers = 1;
357     else
358         pfd.cAuxBuffers = 0;
359
360     pfd.iLayerType      = layer_type;
361     pfd.bReserved       = 0;
362     pfd.dwLayerMask     = 0;
363     pfd.dwVisibleMask   = 0;
364     pfd.dwDamageMask    = 0;
365
366     pfd.cColorBits = (BYTE) GetDeviceCaps( window->Window.Device, BITSPIXEL );
367     ppfd = &pfd;
368
369     pixelformat = ChoosePixelFormat( window->Window.Device, ppfd );
370
371     /* windows hack for multismapling */
372     if (fgState.DisplayMode&GLUT_MULTISAMPLE)
373     {        
374         PFNWGLGETEXTENSIONSSTRINGARBPROC wglGetEntensionsStringARB=NULL;
375         HGLRC rc, rc_before=wglGetCurrentContext();
376         HWND hWnd;
377         HDC hDC, hDC_before=wglGetCurrentDC();
378         WNDCLASS wndCls;
379         ATOM atom;
380
381         /* create a dummy window */
382         ZeroMemory(&wndCls, sizeof(wndCls));
383                 wndCls.lpfnWndProc        = DefWindowProc;
384                 wndCls.hInstance            = fgDisplay.Instance;
385                 wndCls.style                    = CS_OWNDC | CS_HREDRAW | CS_VREDRAW;
386                 wndCls.lpszClassName    = _T("FREEGLUT_dummy");
387         atom = RegisterClass( &wndCls );
388
389         hWnd=CreateWindow((LPCSTR)atom, _T(""), WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW , 0,0,0,0, 0, 0, fgDisplay.Instance, 0 );
390         hDC=GetDC(hWnd);
391         SetPixelFormat( hDC, pixelformat, ppfd );
392         
393         rc = wglCreateContext( hDC );
394         wglMakeCurrent(hDC, rc);
395         
396         wglGetEntensionsStringARB=(PFNWGLGETEXTENSIONSSTRINGARBPROC)wglGetProcAddress("wglGetExtensionsStringARB");
397         if (wglGetEntensionsStringARB)
398         {
399             const char * pWglExtString=wglGetEntensionsStringARB(hDC);
400             if (pWglExtString)
401             {
402                 if (strstr(pWglExtString, "WGL_ARB_multisample"))
403                 {
404                     int pAttributes[100];
405                     int iCounter=0;
406                     int iPixelFormat;
407                     BOOL bValid;
408                     float fAttributes[] = {0,0};
409                     UINT numFormats;
410                     PFNWGLCHOOSEPIXELFORMATARBPROC wglChoosePixelFormatARBProc=NULL;
411
412                     wglChoosePixelFormatARBProc=(PFNWGLCHOOSEPIXELFORMATARBPROC)wglGetProcAddress("wglChoosePixelFormatARB");
413                     if ( wglChoosePixelFormatARBProc )
414                     {
415                         pAttributes[iCounter++]=WGL_DRAW_TO_WINDOW_ARB;        pAttributes[iCounter++]=GL_TRUE;
416                         pAttributes[iCounter++]=WGL_SUPPORT_OPENGL_ARB;        pAttributes[iCounter++]=GL_TRUE;
417                         pAttributes[iCounter++]=WGL_ACCELERATION_ARB;        pAttributes[iCounter++]=WGL_FULL_ACCELERATION_ARB;
418
419                         pAttributes[iCounter++]=WGL_COLOR_BITS_ARB;            pAttributes[iCounter++]=pfd.cColorBits ;
420                         pAttributes[iCounter++]=WGL_ALPHA_BITS_ARB;            pAttributes[iCounter++]=pfd.cAlphaBits;
421                         pAttributes[iCounter++]=WGL_DEPTH_BITS_ARB;            pAttributes[iCounter++]=pfd.cDepthBits;
422                         pAttributes[iCounter++]=WGL_STENCIL_BITS_ARB;        pAttributes[iCounter++]=pfd.cStencilBits;
423
424                         pAttributes[iCounter++]=WGL_DOUBLE_BUFFER_ARB;        pAttributes[iCounter++]=(fgState.DisplayMode & GLUT_DOUBLE)!=0;
425                         pAttributes[iCounter++]=WGL_SAMPLE_BUFFERS_ARB;        pAttributes[iCounter++]=GL_TRUE;
426                         pAttributes[iCounter++]=WGL_SAMPLES_ARB;            pAttributes[iCounter++]=4;
427                         pAttributes[iCounter++]=0;                            pAttributes[iCounter++]=0;    /* terminator */
428
429                         bValid = wglChoosePixelFormatARBProc(window->Window.Device,pAttributes,fAttributes,1,&iPixelFormat,&numFormats);
430
431                         if (bValid && numFormats>0)
432                             pixelformat=iPixelFormat;
433                     }
434                 }
435                 wglMakeCurrent( hDC_before, rc_before);
436                 wglDeleteContext(rc);
437                 ReleaseDC(hWnd, hDC);
438                 DestroyWindow(hWnd);
439                 UnregisterClass(_T("FREEGLUT_dummy"), fgDisplay.Instance);
440             }
441         }
442     }
443
444     if( pixelformat == 0 )
445         return GL_FALSE;
446
447     if( checkOnly )
448         return GL_TRUE;
449     return SetPixelFormat( window->Window.Device, pixelformat, ppfd );
450 #endif /* defined(_WIN32_WCE) */
451 }
452 #endif /* TARGET_HOST_MS_WINDOWS */
453
454 /*
455  * Sets the OpenGL context and the fgStructure "Current Window" pointer to
456  * the window structure passed in.
457  */
458 void fgSetWindow ( SFG_Window *window )
459 {
460 #if TARGET_HOST_POSIX_X11
461     if ( window )
462         glXMakeContextCurrent(
463             fgDisplay.Display,
464             window->Window.Handle,
465             window->Window.Handle,
466             window->Window.Context
467         );
468 #elif TARGET_HOST_MS_WINDOWS
469     if( fgStructure.CurrentWindow )
470         ReleaseDC( fgStructure.CurrentWindow->Window.Handle,
471                    fgStructure.CurrentWindow->Window.Device );
472
473     if ( window )
474     {
475         window->Window.Device = GetDC( window->Window.Handle );
476         wglMakeCurrent(
477             window->Window.Device,
478             window->Window.Context
479         );
480     }
481 #endif
482     fgStructure.CurrentWindow = window;
483 }
484
485
486
487 #if TARGET_HOST_POSIX_X11
488
489 #ifndef GLX_CONTEXT_MAJOR_VERSION_ARB
490 #define GLX_CONTEXT_MAJOR_VERSION_ARB 0x2091
491 #endif
492
493 #ifndef GLX_CONTEXT_MINOR_VERSION_ARB
494 #define GLX_CONTEXT_MINOR_VERSION_ARB 0x2092
495 #endif
496
497 #ifndef GLX_CONTEXT_FLAGS_ARB
498 #define GLX_CONTEXT_FLAGS_ARB 0x2094
499 #endif
500
501 #ifndef GLX_CONTEXT_DEBUG_BIT_ARB
502 #define GLX_CONTEXT_DEBUG_BIT_ARB 0x0001
503 #endif
504
505 #ifndef GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB
506 #define GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002
507 #endif
508
509 typedef GLXContext (*CreateContextAttribsProc)(Display *dpy, GLXFBConfig config,
510                                                GLXContext share_list, Bool direct,
511                                                const int *attrib_list);
512
513 static GLXContext fghCreateNewContext( SFG_Window* window )
514 {
515   /* for color model calculation */
516   int menu = ( window->IsMenu && !fgStructure.MenuContext );
517   int index_mode = ( fgState.DisplayMode & GLUT_INDEX );
518
519   /* "classic" context creation */
520   Display *dpy = fgDisplay.Display;
521   GLXFBConfig config = *(window->Window.FBConfig);
522   int render_type = ( !menu && index_mode ) ? GLX_COLOR_INDEX_TYPE : GLX_RGBA_TYPE;
523   GLXContext share_list = NULL;
524   Bool direct = ( fgState.DirectContext != GLUT_FORCE_INDIRECT_CONTEXT );
525   GLXContext context;
526
527   /* new context creation */
528   int attribs[7];
529   CreateContextAttribsProc createContextAttribs;
530
531   /* If nothing fancy has been required, simply use the old context creation GLX API entry */
532   if ( fgState.MajorVersion == 1 && fgState.MinorVersion == 0 && fgState.ContextFlags == 0)
533   {
534     context = glXCreateNewContext( dpy, config, render_type, share_list, direct );
535     if ( context == NULL ) {
536       fgError( "could not create new OpenGL context" );
537     }
538     return context;
539   }
540
541   /* color index mode is not available anymore with OpenGL 3.0 */
542   if ( render_type == GLX_COLOR_INDEX_TYPE ) {
543     fgWarning( "color index mode is deprecated, using RGBA mode" );
544   }
545
546   attribs[0] = GLX_CONTEXT_MAJOR_VERSION_ARB;
547   attribs[1] = fgState.MajorVersion;
548   attribs[2] = GLX_CONTEXT_MINOR_VERSION_ARB;
549   attribs[3] = fgState.MinorVersion;
550   attribs[4] = GLX_CONTEXT_FLAGS_ARB;
551   attribs[5] = ((fgState.ContextFlags & GLUT_DEBUG) ? GLX_CONTEXT_DEBUG_BIT_ARB : 0) |
552     ((fgState.ContextFlags & GLUT_FORWARD_COMPATIBLE) ? GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB : 0);
553   attribs[6] = 0;
554
555   createContextAttribs = (CreateContextAttribsProc) fghGetProcAddress( "glXCreateContextAttribsARB" );
556   if ( createContextAttribs == NULL ) {
557     fgError( "glXCreateContextAttribsARB not found" );
558   }
559
560   context = createContextAttribs( dpy, config, share_list, direct, attribs );
561   if ( context == NULL ) {
562     fgError( "could not create new OpenGL %d.%d context (flags %x)",
563              fgState.MajorVersion, fgState.MinorVersion, fgState.ContextFlags );
564   }
565   return context;
566 }
567 #endif
568
569
570 /*
571  * Opens a window. Requires a SFG_Window object created and attached
572  * to the freeglut structure. OpenGL context is created here.
573  */
574 void fgOpenWindow( SFG_Window* window, const char* title,
575                    GLboolean positionUse, int x, int y,
576                    GLboolean sizeUse, int w, int h,
577                    GLboolean gameMode, GLboolean isSubWindow )
578 {
579 #if TARGET_HOST_POSIX_X11
580     XVisualInfo * visualInfo;
581     XSetWindowAttributes winAttr;
582     XTextProperty textProperty;
583     XSizeHints sizeHints;
584     XWMHints wmHints;
585     unsigned long mask;
586     unsigned int current_DisplayMode = fgState.DisplayMode ;
587
588     /* Save the display mode if we are creating a menu window */
589     if( window->IsMenu && ( ! fgStructure.MenuContext ) )
590         fgState.DisplayMode = GLUT_DOUBLE | GLUT_RGB ;
591
592     window->Window.FBConfig = fgChooseFBConfig( );
593
594     if( window->IsMenu && ( ! fgStructure.MenuContext ) )
595         fgState.DisplayMode = current_DisplayMode ;
596
597     if( ! window->Window.FBConfig )
598     {
599         /*
600          * The "fgChooseFBConfig" returned a null meaning that the visual
601          * context is not available.
602          * Try a couple of variations to see if they will work.
603          */
604         if( !( fgState.DisplayMode & GLUT_DOUBLE ) )
605         {
606             fgState.DisplayMode |= GLUT_DOUBLE ;
607             window->Window.FBConfig = fgChooseFBConfig( );
608             fgState.DisplayMode &= ~GLUT_DOUBLE;
609         }
610
611         if( fgState.DisplayMode & GLUT_MULTISAMPLE )
612         {
613             fgState.DisplayMode &= ~GLUT_MULTISAMPLE ;
614             window->Window.FBConfig = fgChooseFBConfig( );
615             fgState.DisplayMode |= GLUT_MULTISAMPLE;
616         }
617     }
618
619     FREEGLUT_INTERNAL_ERROR_EXIT( window->Window.FBConfig != NULL,
620                                   "FBConfig with necessary capabilities not found", "fgOpenWindow" );
621
622     /*  Get the X visual.  */
623     visualInfo = glXGetVisualFromFBConfig( fgDisplay.Display,
624                                            *(window->Window.FBConfig) );
625
626     /*
627      * XXX HINT: the masks should be updated when adding/removing callbacks.
628      * XXX       This might speed up message processing. Is that true?
629      * XXX
630      * XXX A: Not appreciably, but it WILL make it easier to debug.
631      * XXX    Try tracing old GLUT and try tracing freeglut.  Old GLUT
632      * XXX    turns off events that it doesn't need and is a whole lot
633      * XXX    more pleasant to trace.  (Think mouse-motion!  Tons of
634      * XXX    ``bonus'' GUI events stream in.)
635      */
636     winAttr.event_mask        =
637         StructureNotifyMask | SubstructureNotifyMask | ExposureMask |
638         ButtonPressMask | ButtonReleaseMask | KeyPressMask | KeyReleaseMask |
639         VisibilityChangeMask | EnterWindowMask | LeaveWindowMask |
640         PointerMotionMask | ButtonMotionMask;
641     winAttr.background_pixmap = None;
642     winAttr.background_pixel  = 0;
643     winAttr.border_pixel      = 0;
644
645     winAttr.colormap = XCreateColormap(
646         fgDisplay.Display, fgDisplay.RootWindow,
647         visualInfo->visual, AllocNone
648     );
649
650     mask = CWBackPixmap | CWBorderPixel | CWColormap | CWEventMask;
651
652     if( window->IsMenu || ( gameMode == GL_TRUE ) )
653     {
654         winAttr.override_redirect = True;
655         mask |= CWOverrideRedirect;
656     }
657
658     if( ! positionUse )
659         x = y = -1; /* default window position */
660     if( ! sizeUse )
661         w = h = 300; /* default window size */
662
663     window->Window.Handle = XCreateWindow(
664         fgDisplay.Display,
665         window->Parent == NULL ? fgDisplay.RootWindow :
666         window->Parent->Window.Handle,
667         x, y, w, h, 0,
668         visualInfo->depth, InputOutput,
669         visualInfo->visual, mask,
670         &winAttr
671     );
672
673     /*
674      * The GLX context creation, possibly trying the direct context rendering
675      *  or else use the current context if the user has so specified
676      */
677
678     if( window->IsMenu )
679     {
680         /*
681          * If there isn't already an OpenGL rendering context for menu
682          * windows, make one
683          */
684         if( !fgStructure.MenuContext )
685         {
686             fgStructure.MenuContext =
687                 (SFG_MenuContext *)malloc( sizeof(SFG_MenuContext) );
688             fgStructure.MenuContext->MContext = fghCreateNewContext( window );
689         }
690
691         /* window->Window.Context = fgStructure.MenuContext->MContext; */
692         window->Window.Context = fghCreateNewContext( window );
693     }
694     else if( fgState.UseCurrentContext )
695     {
696         window->Window.Context = glXGetCurrentContext( );
697
698         if( ! window->Window.Context )
699             window->Window.Context = fghCreateNewContext( window );
700     }
701     else
702         window->Window.Context = fghCreateNewContext( window );
703
704 #if !defined( __FreeBSD__ ) && !defined( __NetBSD__ )
705     if(  !glXIsDirect( fgDisplay.Display, window->Window.Context ) )
706     {
707       if( fgState.DirectContext == GLUT_FORCE_DIRECT_CONTEXT )
708         fgError( "Unable to force direct context rendering for window '%s'",
709                  title );
710     }
711 #endif
712
713     /*
714      * XXX Assume the new window is visible by default
715      * XXX Is this a  safe assumption?
716      */
717     window->State.Visible = GL_TRUE;
718
719     sizeHints.flags = 0;
720     if ( positionUse )
721         sizeHints.flags |= USPosition;
722     if ( sizeUse )
723         sizeHints.flags |= USSize;
724
725     /*
726      * Fill in the size hints values now (the x, y, width and height
727      * settings are obsolete, are there any more WMs that support them?)
728      * Unless the X servers actually stop supporting these, we should
729      * continue to fill them in.  It is *not* our place to tell the user
730      * that they should replace a window manager that they like, and which
731      * works, just because *we* think that it's not "modern" enough.
732      */
733     sizeHints.x      = x;
734     sizeHints.y      = y;
735     sizeHints.width  = w;
736     sizeHints.height = h;
737
738     wmHints.flags = StateHint;
739     wmHints.initial_state = fgState.ForceIconic ? IconicState : NormalState;
740     /* Prepare the window and iconified window names... */
741     XStringListToTextProperty( (char **) &title, 1, &textProperty );
742
743     XSetWMProperties(
744         fgDisplay.Display,
745         window->Window.Handle,
746         &textProperty,
747         &textProperty,
748         0,
749         0,
750         &sizeHints,
751         &wmHints,
752         NULL
753     );
754     XFree( textProperty.value );
755
756     XSetWMProtocols( fgDisplay.Display, window->Window.Handle,
757                      &fgDisplay.DeleteWindow, 1 );
758
759     glXMakeContextCurrent(
760         fgDisplay.Display,
761         window->Window.Handle,
762         window->Window.Handle,
763         window->Window.Context
764     );
765
766     XMapWindow( fgDisplay.Display, window->Window.Handle );
767
768     XFree(visualInfo);
769
770 #elif TARGET_HOST_MS_WINDOWS
771
772     WNDCLASS wc;
773     DWORD flags;
774     DWORD exFlags = 0;
775     ATOM atom;
776     int WindowStyle = 0;
777
778     /* Grab the window class we have registered on glutInit(): */
779     atom = GetClassInfo( fgDisplay.Instance, _T("FREEGLUT"), &wc );
780     FREEGLUT_INTERNAL_ERROR_EXIT ( atom, "Window Class Info Not Found",
781                                    "fgOpenWindow" );
782
783     if( gameMode )
784     {
785         FREEGLUT_INTERNAL_ERROR_EXIT ( window->Parent == NULL,
786                                        "Game mode being invoked on a subwindow",
787                                        "fgOpenWindow" );
788
789         /*
790          * Set the window creation flags appropriately to make the window
791          * entirely visible:
792          */
793         flags = WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_VISIBLE;
794     }
795     else
796     {
797         int worig = w, horig = h;
798
799 #if !defined(_WIN32_WCE)
800         if ( ( ! isSubWindow ) && ( ! window->IsMenu ) )
801         {
802             /*
803              * Update the window dimensions, taking account of window
804              * decorations.  "freeglut" is to create the window with the
805              * outside of its border at (x,y) and with dimensions (w,h).
806              */
807             w += (GetSystemMetrics( SM_CXSIZEFRAME ) )*2;
808             h += (GetSystemMetrics( SM_CYSIZEFRAME ) )*2 +
809                 GetSystemMetrics( SM_CYCAPTION );
810         }
811 #endif /* defined(_WIN32_WCE) */
812
813         if( ! positionUse )
814         {
815             x = CW_USEDEFAULT;
816             y = CW_USEDEFAULT;
817         }
818         /* setting State.Width/Height to call resize callback later */
819         if( ! sizeUse )
820         {
821             if( ! window->IsMenu )
822             {
823                 w = CW_USEDEFAULT;
824                 h = CW_USEDEFAULT;
825             }
826             else /* fail safe - Windows can make a window of size (0, 0) */
827                 w = h = 300; /* default window size */
828             window->State.Width = window->State.Height = -1;
829         }
830         else
831         {
832             window->State.Width = worig;
833             window->State.Height = horig;
834         }
835
836         /*
837          * There's a small difference between creating the top, child and
838          * game mode windows
839          */
840         flags = WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_VISIBLE;
841
842         if ( window->IsMenu )
843         {
844             flags |= WS_POPUP;
845             exFlags |= WS_EX_TOOLWINDOW;
846         }
847 #if !defined(_WIN32_WCE)
848         else if( window->Parent == NULL )
849             flags |= WS_OVERLAPPEDWINDOW;
850 #endif
851         else
852             flags |= WS_CHILD;
853     }
854
855 #if defined(_WIN32_WCE)
856     {
857         wchar_t* wstr = fghWstrFromStr(title);
858
859         window->Window.Handle = CreateWindow(
860             _T("FREEGLUT"),
861             wstr,
862             WS_VISIBLE | WS_POPUP,
863             0,0, 240,320,
864             NULL,
865             NULL,
866             fgDisplay.Instance,
867             (LPVOID) window
868         );
869
870         free(wstr);
871
872         SHFullScreen(window->Window.Handle, SHFS_HIDESTARTICON);
873         SHFullScreen(window->Window.Handle, SHFS_HIDESIPBUTTON);
874         SHFullScreen(window->Window.Handle, SHFS_HIDETASKBAR);
875         MoveWindow(window->Window.Handle, 0, 0, 240, 320, TRUE);
876         ShowWindow(window->Window.Handle, SW_SHOW);
877         UpdateWindow(window->Window.Handle);
878     }
879 #else
880     window->Window.Handle = CreateWindowEx(
881         exFlags,
882         _T("FREEGLUT"),
883         title,
884         flags,
885         x, y, w, h,
886         (HWND) window->Parent == NULL ? NULL : window->Parent->Window.Handle,
887         (HMENU) NULL,
888         fgDisplay.Instance,
889         (LPVOID) window
890     );
891 #endif /* defined(_WIN32_WCE) */
892
893     if( !( window->Window.Handle ) )
894         fgError( "Failed to create a window (%s)!", title );
895
896     /* Make a menu window always on top - fix Feature Request 947118 */
897     if( window->IsMenu || gameMode )
898         SetWindowPos(
899                         window->Window.Handle,
900                         HWND_TOPMOST,
901                         0, 0, 0, 0,
902                         SWP_NOMOVE | SWP_NOSIZE
903                     );
904
905     /* Hack to remove the caption (title bar) and/or border
906      * and all the system menu controls.
907      */
908     WindowStyle = GetWindowLong(window->Window.Handle, GWL_STYLE);
909     if ( fgState.DisplayMode & GLUT_CAPTIONLESS )
910     {
911         SetWindowLong ( window->Window.Handle, GWL_STYLE,
912                         WindowStyle & ~(WS_DLGFRAME | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX));
913     }
914     else if ( fgState.DisplayMode & GLUT_BORDERLESS )
915     {
916         SetWindowLong ( window->Window.Handle, GWL_STYLE,
917                         WindowStyle & ~(WS_BORDER | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX));
918     }
919 /*  SetWindowPos(window->Window.Handle, NULL, 0, 0, 0, 0,
920      SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED); */
921
922
923 #if defined(_WIN32_WCE)
924     ShowWindow( window->Window.Handle, SW_SHOW );
925 #else
926     ShowWindow( window->Window.Handle,
927                 fgState.ForceIconic ? SW_SHOWMINIMIZED : SW_SHOW );
928 #endif /* defined(_WIN32_WCE) */
929
930     UpdateWindow( window->Window.Handle );
931     ShowCursor( TRUE );  /* XXX Old comments say "hide cursor"! */
932
933 #endif
934
935     fgSetWindow( window );
936
937     window->Window.DoubleBuffered =
938         ( fgState.DisplayMode & GLUT_DOUBLE ) ? 1 : 0;
939
940     if ( ! window->Window.DoubleBuffered )
941     {
942         glDrawBuffer ( GL_FRONT );
943         glReadBuffer ( GL_FRONT );
944     }
945 }
946
947 /*
948  * Closes a window, destroying the frame and OpenGL context
949  */
950 void fgCloseWindow( SFG_Window* window )
951 {
952 #if TARGET_HOST_POSIX_X11
953
954     glXDestroyContext( fgDisplay.Display, window->Window.Context );
955     XFree( window->Window.FBConfig );
956     XDestroyWindow( fgDisplay.Display, window->Window.Handle );
957     /* XFlush( fgDisplay.Display ); */ /* XXX Shouldn't need this */
958
959 #elif TARGET_HOST_MS_WINDOWS
960
961     /* Make sure we don't close a window with current context active */
962     if( fgStructure.CurrentWindow == window )
963         wglMakeCurrent( NULL, NULL );
964
965     /*
966      * Step through the list of windows.  If the rendering context
967      * is not being used by another window, then we delete it.
968      */
969     {
970         int used = FALSE ;
971         SFG_Window *iter ;
972
973         for( iter = (SFG_Window *)fgStructure.Windows.First;
974              iter;
975              iter = (SFG_Window *)iter->Node.Next )
976         {
977             if( ( iter->Window.Context == window->Window.Context ) &&
978                 ( iter != window ) )
979                 used = TRUE;
980         }
981
982         if( ! used )
983             wglDeleteContext( window->Window.Context );
984     }
985
986     DestroyWindow( window->Window.Handle );
987 #endif
988 }
989
990
991 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
992
993 /*
994  * Creates a new top-level freeglut window
995  */
996 int FGAPIENTRY glutCreateWindow( const char* title )
997 {
998     /* XXX GLUT does not exit; it simply calls "glutInit" quietly if the
999      * XXX application has not already done so.  The "freeglut" community
1000      * XXX decided not to go this route (freeglut-developer e-mail from
1001      * XXX Steve Baker, 12/16/04, 4:22 PM CST, "Re: [Freeglut-developer]
1002      * XXX Desired 'freeglut' behaviour when there is no current window"
1003      */
1004     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutCreateWindow" );
1005
1006     return fgCreateWindow( NULL, title, fgState.Position.Use,
1007                            fgState.Position.X, fgState.Position.Y,
1008                            fgState.Size.Use, fgState.Size.X, fgState.Size.Y,
1009                            GL_FALSE, GL_FALSE )->ID;
1010 }
1011
1012 /*
1013  * This function creates a sub window.
1014  */
1015 int FGAPIENTRY glutCreateSubWindow( int parentID, int x, int y, int w, int h )
1016 {
1017     int ret = 0;
1018     SFG_Window* window = NULL;
1019     SFG_Window* parent = NULL;
1020
1021     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutCreateSubWindow" );
1022     parent = fgWindowByID( parentID );
1023     freeglut_return_val_if_fail( parent != NULL, 0 );
1024     if ( x < 0 )
1025     {
1026         x = parent->State.Width + x ;
1027         if ( w >= 0 ) x -= w ;
1028     }
1029
1030     if ( w < 0 ) w = parent->State.Width - x + w ;
1031     if ( w < 0 )
1032     {
1033         x += w ;
1034         w = -w ;
1035     }
1036
1037     if ( y < 0 )
1038     {
1039         y = parent->State.Height + y ;
1040         if ( h >= 0 ) y -= h ;
1041     }
1042
1043     if ( h < 0 ) h = parent->State.Height - y + h ;
1044     if ( h < 0 )
1045     {
1046         y += h ;
1047         h = -h ;
1048     }
1049
1050     window = fgCreateWindow( parent, "", GL_TRUE, x, y, GL_TRUE, w, h, GL_FALSE, GL_FALSE );
1051     ret = window->ID;
1052
1053     return ret;
1054 }
1055
1056 /*
1057  * Destroys a window and all of its subwindows
1058  */
1059 void FGAPIENTRY glutDestroyWindow( int windowID )
1060 {
1061     SFG_Window* window;
1062     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutDestroyWindow" );
1063     window = fgWindowByID( windowID );
1064     freeglut_return_if_fail( window != NULL );
1065     {
1066         fgExecutionState ExecState = fgState.ExecState;
1067         fgAddToWindowDestroyList( window );
1068         fgState.ExecState = ExecState;
1069     }
1070 }
1071
1072 /*
1073  * This function selects the current window
1074  */
1075 void FGAPIENTRY glutSetWindow( int ID )
1076 {
1077     SFG_Window* window = NULL;
1078
1079     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetWindow" );
1080     if( fgStructure.CurrentWindow != NULL )
1081         if( fgStructure.CurrentWindow->ID == ID )
1082             return;
1083
1084     window = fgWindowByID( ID );
1085     if( window == NULL )
1086     {
1087         fgWarning( "glutSetWindow(): window ID %d not found!", ID );
1088         return;
1089     }
1090
1091     fgSetWindow( window );
1092 }
1093
1094 /*
1095  * This function returns the ID number of the current window, 0 if none exists
1096  */
1097 int FGAPIENTRY glutGetWindow( void )
1098 {
1099     SFG_Window *win = fgStructure.CurrentWindow;
1100     /*
1101      * Since GLUT did not throw an error if this function was called without a prior call to
1102      * "glutInit", this function shouldn't do so here.  Instead let us return a zero.
1103      * See Feature Request "[ 1307049 ] glutInit check".
1104      */
1105     if ( ! fgState.Initialised )
1106         return 0;
1107
1108     while ( win && win->IsMenu )
1109         win = win->Parent;
1110     return win ? win->ID : 0;
1111 }
1112
1113 /*
1114  * This function makes the current window visible
1115  */
1116 void FGAPIENTRY glutShowWindow( void )
1117 {
1118     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutShowWindow" );
1119     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutShowWindow" );
1120
1121 #if TARGET_HOST_POSIX_X11
1122
1123     XMapWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle );
1124     XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1125
1126 #elif TARGET_HOST_MS_WINDOWS
1127
1128     ShowWindow( fgStructure.CurrentWindow->Window.Handle, SW_SHOW );
1129
1130 #endif
1131
1132     fgStructure.CurrentWindow->State.Redisplay = GL_TRUE;
1133 }
1134
1135 /*
1136  * This function hides the current window
1137  */
1138 void FGAPIENTRY glutHideWindow( void )
1139 {
1140     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutHideWindow" );
1141     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutHideWindow" );
1142
1143 #if TARGET_HOST_POSIX_X11
1144
1145     if( fgStructure.CurrentWindow->Parent == NULL )
1146         XWithdrawWindow( fgDisplay.Display,
1147                          fgStructure.CurrentWindow->Window.Handle,
1148                          fgDisplay.Screen );
1149     else
1150         XUnmapWindow( fgDisplay.Display,
1151                       fgStructure.CurrentWindow->Window.Handle );
1152     XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1153
1154 #elif TARGET_HOST_MS_WINDOWS
1155
1156     ShowWindow( fgStructure.CurrentWindow->Window.Handle, SW_HIDE );
1157
1158 #endif
1159
1160     fgStructure.CurrentWindow->State.Redisplay = GL_FALSE;
1161 }
1162
1163 /*
1164  * Iconify the current window (top-level windows only)
1165  */
1166 void FGAPIENTRY glutIconifyWindow( void )
1167 {
1168     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutIconifyWindow" );
1169     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutIconifyWindow" );
1170
1171     fgStructure.CurrentWindow->State.Visible   = GL_FALSE;
1172 #if TARGET_HOST_POSIX_X11
1173
1174     XIconifyWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle,
1175                     fgDisplay.Screen );
1176     XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1177
1178 #elif TARGET_HOST_MS_WINDOWS
1179
1180     ShowWindow( fgStructure.CurrentWindow->Window.Handle, SW_MINIMIZE );
1181
1182 #endif
1183
1184     fgStructure.CurrentWindow->State.Redisplay = GL_FALSE;
1185 }
1186
1187 /*
1188  * Set the current window's title
1189  */
1190 void FGAPIENTRY glutSetWindowTitle( const char* title )
1191 {
1192     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetWindowTitle" );
1193     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutSetWindowTitle" );
1194     if( ! fgStructure.CurrentWindow->Parent )
1195     {
1196 #if TARGET_HOST_POSIX_X11
1197
1198         XTextProperty text;
1199
1200         text.value = (unsigned char *) title;
1201         text.encoding = XA_STRING;
1202         text.format = 8;
1203         text.nitems = strlen( title );
1204
1205         XSetWMName(
1206             fgDisplay.Display,
1207             fgStructure.CurrentWindow->Window.Handle,
1208             &text
1209         );
1210
1211         XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1212
1213 #elif TARGET_HOST_MS_WINDOWS
1214 #    ifdef _WIN32_WCE
1215         {
1216             wchar_t* wstr = fghWstrFromStr(title);
1217             SetWindowText( fgStructure.CurrentWindow->Window.Handle, wstr );
1218             free(wstr);
1219         }
1220 #    else
1221         SetWindowText( fgStructure.CurrentWindow->Window.Handle, title );
1222 #    endif
1223
1224 #endif
1225     }
1226 }
1227
1228 /*
1229  * Set the current window's iconified title
1230  */
1231 void FGAPIENTRY glutSetIconTitle( const char* title )
1232 {
1233     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetIconTitle" );
1234     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutSetIconTitle" );
1235
1236     if( ! fgStructure.CurrentWindow->Parent )
1237     {
1238 #if TARGET_HOST_POSIX_X11
1239
1240         XTextProperty text;
1241
1242         text.value = (unsigned char *) title;
1243         text.encoding = XA_STRING;
1244         text.format = 8;
1245         text.nitems = strlen( title );
1246
1247         XSetWMIconName(
1248             fgDisplay.Display,
1249             fgStructure.CurrentWindow->Window.Handle,
1250             &text
1251         );
1252
1253         XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1254
1255 #elif TARGET_HOST_MS_WINDOWS
1256 #    ifdef _WIN32_WCE
1257         {
1258             wchar_t* wstr = fghWstrFromStr(title);
1259             SetWindowText( fgStructure.CurrentWindow->Window.Handle, wstr );
1260             free(wstr);
1261         }
1262 #    else
1263         SetWindowText( fgStructure.CurrentWindow->Window.Handle, title );
1264 #    endif
1265
1266 #endif
1267     }
1268 }
1269
1270 /*
1271  * Change the current window's size
1272  */
1273 void FGAPIENTRY glutReshapeWindow( int width, int height )
1274 {
1275     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutReshapeWindow" );
1276     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutReshapeWindow" );
1277
1278     if (glutGet(GLUT_FULL_SCREEN))
1279     {
1280       /*  Leave full screen state before resizing. */
1281       glutFullScreenToggle();
1282     }
1283
1284     fgStructure.CurrentWindow->State.NeedToResize = GL_TRUE;
1285     fgStructure.CurrentWindow->State.Width  = width ;
1286     fgStructure.CurrentWindow->State.Height = height;
1287 }
1288
1289 /*
1290  * Change the current window's position
1291  */
1292 void FGAPIENTRY glutPositionWindow( int x, int y )
1293 {
1294     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutPositionWindow" );
1295     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutPositionWindow" );
1296
1297     if (glutGet(GLUT_FULL_SCREEN))
1298     {
1299       /*  Leave full screen state before moving. */
1300       glutFullScreenToggle();
1301     }
1302
1303 #if TARGET_HOST_POSIX_X11
1304
1305     XMoveWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle,
1306                  x, y );
1307     XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
1308
1309 #elif TARGET_HOST_MS_WINDOWS
1310
1311     {
1312         RECT winRect;
1313
1314         /* "GetWindowRect" returns the pixel coordinates of the outside of the window */
1315         GetWindowRect( fgStructure.CurrentWindow->Window.Handle, &winRect );
1316         MoveWindow(
1317             fgStructure.CurrentWindow->Window.Handle,
1318             x,
1319             y,
1320             winRect.right - winRect.left,
1321             winRect.bottom - winRect.top,
1322             TRUE
1323         );
1324     }
1325
1326 #endif
1327 }
1328
1329 /*
1330  * Lowers the current window (by Z order change)
1331  */
1332 void FGAPIENTRY glutPushWindow( void )
1333 {
1334     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutPushWindow" );
1335     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutPushWindow" );
1336
1337 #if TARGET_HOST_POSIX_X11
1338
1339     XLowerWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle );
1340
1341 #elif TARGET_HOST_MS_WINDOWS
1342
1343     SetWindowPos(
1344         fgStructure.CurrentWindow->Window.Handle,
1345         HWND_BOTTOM,
1346         0, 0, 0, 0,
1347         SWP_NOSIZE | SWP_NOMOVE
1348     );
1349
1350 #endif
1351 }
1352
1353 /*
1354  * Raises the current window (by Z order change)
1355  */
1356 void FGAPIENTRY glutPopWindow( void )
1357 {
1358     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutPopWindow" );
1359     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutPopWindow" );
1360
1361 #if TARGET_HOST_POSIX_X11
1362
1363     XRaiseWindow( fgDisplay.Display, fgStructure.CurrentWindow->Window.Handle );
1364
1365 #elif TARGET_HOST_MS_WINDOWS
1366
1367     SetWindowPos(
1368         fgStructure.CurrentWindow->Window.Handle,
1369         HWND_TOP,
1370         0, 0, 0, 0,
1371         SWP_NOSIZE | SWP_NOMOVE
1372     );
1373
1374 #endif
1375 }
1376
1377 /*
1378  * Resize the current window so that it fits the whole screen
1379  */
1380 void FGAPIENTRY glutFullScreen( void )
1381 {
1382     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutFullScreen" );
1383     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutFullScreen" );
1384
1385     if (glutGet(GLUT_FULL_SCREEN))
1386     {
1387       /*  Leave full screen state before resizing. */
1388       glutFullScreenToggle();
1389     }
1390
1391     {
1392 #if TARGET_HOST_POSIX_X11
1393
1394         Status status;  /* Returned by XGetWindowAttributes(), not checked. */
1395         XWindowAttributes attributes;
1396
1397         status = XGetWindowAttributes(fgDisplay.Display,
1398                                       fgStructure.CurrentWindow->Window.Handle,
1399                                       &attributes);
1400         /*
1401          * The "x" and "y" members of "attributes" are the window's coordinates
1402          * relative to its parent, i.e. to the decoration window.
1403          */
1404         XMoveResizeWindow(fgDisplay.Display,
1405                           fgStructure.CurrentWindow->Window.Handle,
1406                           -attributes.x,
1407                           -attributes.y,
1408                           fgDisplay.ScreenWidth,
1409                           fgDisplay.ScreenHeight);
1410
1411 #elif TARGET_HOST_MS_WINDOWS && !defined(_WIN32_WCE) /* FIXME: what about WinCE */
1412         RECT rect;
1413
1414         /* For fullscreen mode, force the top-left corner to 0,0
1415          * and adjust the window rectangle so that the client area
1416          * covers the whole screen.
1417          */
1418
1419         rect.left   = 0;
1420         rect.top    = 0;
1421         rect.right  = fgDisplay.ScreenWidth;
1422         rect.bottom = fgDisplay.ScreenHeight;
1423
1424         AdjustWindowRect ( &rect, WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS |
1425                                   WS_CLIPCHILDREN, FALSE );
1426
1427         /*
1428          * SWP_NOACTIVATE     Do not activate the window
1429          * SWP_NOOWNERZORDER  Do not change position in z-order
1430          * SWP_NOSENDCHANGING Supress WM_WINDOWPOSCHANGING message
1431          * SWP_NOZORDER       Retains the current Z order (ignore 2nd param)
1432          */
1433
1434         SetWindowPos( fgStructure.CurrentWindow->Window.Handle,
1435                       HWND_TOP,
1436                       rect.left,
1437                       rect.top,
1438                       rect.right  - rect.left,
1439                       rect.bottom - rect.top,
1440                       SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOSENDCHANGING |
1441                       SWP_NOZORDER
1442                     );
1443 #endif
1444     }
1445 }
1446
1447 /*
1448  * Toggle the window's full screen state.
1449  */
1450 void FGAPIENTRY glutFullScreenToggle( void )
1451 {
1452     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutFullScreenToggle" );
1453     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutFullScreenToggle" );
1454
1455     {
1456 #if TARGET_HOST_POSIX_X11
1457
1458       if (fgDisplay.StateFullScreen != None)
1459       {
1460         XEvent xevent;
1461         long event_mask;
1462         int status;
1463
1464         xevent.type = ClientMessage;
1465         xevent.xclient.type = ClientMessage;
1466         xevent.xclient.serial = 0;
1467         xevent.xclient.send_event = True;
1468         xevent.xclient.display = fgDisplay.Display;
1469         xevent.xclient.window = fgStructure.CurrentWindow->Window.Handle;
1470         xevent.xclient.message_type = fgDisplay.State;
1471         xevent.xclient.format = 32;
1472         xevent.xclient.data.l[0] = 2;  /* _NET_WM_STATE_TOGGLE */
1473         xevent.xclient.data.l[1] = fgDisplay.StateFullScreen;
1474         xevent.xclient.data.l[2] = 0;
1475         xevent.xclient.data.l[3] = 0;
1476         xevent.xclient.data.l[4] = 0;
1477
1478         /*** Don't really understand how event masks work... ***/
1479         event_mask = SubstructureRedirectMask | SubstructureNotifyMask;
1480
1481         status = XSendEvent(fgDisplay.Display,
1482           fgDisplay.RootWindow,
1483           False,
1484           event_mask,
1485           &xevent);
1486         FREEGLUT_INTERNAL_ERROR_EXIT(status != 0,
1487           "XSendEvent failed",
1488           "glutFullScreenToggle");
1489       }
1490       else
1491 #endif
1492       {
1493         /*
1494          * If the window manager is not Net WM compliant, fall back to legacy
1495          * behaviour.
1496          */
1497         glutFullScreen();
1498       }
1499     }
1500 }
1501
1502 /*
1503  * A.Donev: Set and retrieve the window's user data
1504  */
1505 void* FGAPIENTRY glutGetWindowData( void )
1506 {
1507     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutGetWindowData" );
1508     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutGetWindowData" );
1509     return fgStructure.CurrentWindow->UserData;
1510 }
1511
1512 void FGAPIENTRY glutSetWindowData(void* data)
1513 {
1514     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetWindowData" );
1515     FREEGLUT_EXIT_IF_NO_WINDOW ( "glutSetWindowData" );
1516     fgStructure.CurrentWindow->UserData = data;
1517 }
1518
1519 /*** END OF FILE ***/