Adding the \"freeglut_input_devices.c\" file to the Windows project files
[freeglut] / src / freeglut_main.c
1 /*
2  * freeglut_main.c
3  *
4  * The windows message processing 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 #include <errno.h>
31 #include <stdarg.h>
32 #if TARGET_HOST_WIN32
33 #    define VFPRINTF(s,f,a) vfprintf((s),(f),(a))
34 #else
35 #    if HAVE_VPRINTF
36 #        define VFPRINTF(s,f,a) vfprintf((s),(f),(a))
37 #    elif HAVE_DOPRNT
38 #        define VFPRINTF(s,f,a) _doprnt((f),(a),(s))
39 #    else
40 #        define VFPRINTF(s,f,a)
41 #    endif
42 #endif
43
44 #if TARGET_HOST_WINCE
45
46 typedef struct GXDisplayProperties GXDisplayProperties;
47 typedef struct GXKeyList GXKeyList;
48 #include <gx.h>
49
50 typedef struct GXKeyList (*GXGETDEFAULTKEYS)(int);
51 typedef int (*GXOPENINPUT)();
52
53 GXGETDEFAULTKEYS GXGetDefaultKeys_ = NULL;
54 GXOPENINPUT GXOpenInput_ = NULL;
55
56 struct GXKeyList gxKeyList;
57
58 #endif
59
60 /*
61  * Try to get the maximum value allowed for ints, falling back to the minimum
62  * guaranteed by ISO C99 if there is no suitable header.
63  */
64 #if HAVE_LIMITS_H
65 #    include <limits.h>
66 #endif
67 #ifndef INT_MAX
68 #    define INT_MAX 32767
69 #endif
70
71 #ifndef MIN
72 #define MIN(a,b) (((a)<(b)) ? (a) : (b))
73 #endif
74
75
76 /*
77  * TODO BEFORE THE STABLE RELEASE:
78  *
79  * There are some issues concerning window redrawing under X11, and maybe
80  * some events are not handled. The Win32 version lacks some more features,
81  * but seems acceptable for not demanding purposes.
82  *
83  * Need to investigate why the X11 version breaks out with an error when
84  * closing a window (using the window manager, not glutDestroyWindow)...
85  */
86
87 /* -- PRIVATE FUNCTIONS ---------------------------------------------------- */
88
89 /*
90  * Handle a window configuration change. When no reshape
91  * callback is hooked, the viewport size is updated to
92  * match the new window size.
93  */
94 static void fghReshapeWindow ( SFG_Window *window, int width, int height )
95 {
96     SFG_Window *current_window = fgStructure.CurrentWindow;
97
98     freeglut_return_if_fail( window != NULL );
99
100
101 #if TARGET_HOST_UNIX_X11
102
103     XResizeWindow( fgDisplay.Display, window->Window.Handle,
104                    width, height );
105     XFlush( fgDisplay.Display ); /* XXX Shouldn't need this */
106
107 #elif TARGET_HOST_WIN32
108     {
109         RECT winRect;
110         int x, y, w, h;
111
112         /*
113          * For windowed mode, get the current position of the
114          * window and resize taking the size of the frame
115          * decorations into account.
116          */
117
118         /* "GetWindowRect" returns the pixel coordinates of the outside of the window */
119         GetWindowRect( window->Window.Handle, &winRect );
120         x = winRect.left;
121         y = winRect.top;
122         w = width;
123         h = height;
124
125         if ( window->Parent == NULL )
126         {
127             if ( ! window->IsMenu && !window->State.IsGameMode )
128             {
129                 w += GetSystemMetrics( SM_CXSIZEFRAME ) * 2;
130                 h += GetSystemMetrics( SM_CYSIZEFRAME ) * 2 +
131                      GetSystemMetrics( SM_CYCAPTION );
132             }
133         }
134         else
135         {
136             RECT parentRect;
137             GetWindowRect( window->Parent->Window.Handle, &parentRect );
138             x -= parentRect.left + GetSystemMetrics( SM_CXSIZEFRAME ) * 2;
139             y -= parentRect.top  + GetSystemMetrics( SM_CYSIZEFRAME ) * 2 +
140                                    GetSystemMetrics( SM_CYCAPTION );
141         }
142
143         /*
144          * SWP_NOACTIVATE      Do not activate the window
145          * SWP_NOOWNERZORDER   Do not change position in z-order
146          * SWP_NOSENDCHANGING  Supress WM_WINDOWPOSCHANGING message
147          * SWP_NOZORDER        Retains the current Z order (ignore 2nd param)
148          */
149
150         SetWindowPos( window->Window.Handle,
151                       HWND_TOP,
152                       x, y, w, h,
153                       SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOSENDCHANGING |
154                       SWP_NOZORDER
155         );
156     }
157 #endif
158
159     /*
160      * XXX Should update {window->State.OldWidth, window->State.OldHeight}
161      * XXX to keep in lockstep with UNIX_X11 code.
162      */
163     if( FETCH_WCB( *window, Reshape ) )
164         INVOKE_WCB( *window, Reshape, ( width, height ) );
165     else
166     {
167         fgSetWindow( window );
168         glViewport( 0, 0, width, height );
169     }
170
171     /*
172      * Force a window redraw.  In Windows at least this is only a partial
173      * solution:  if the window is increasing in size in either dimension,
174      * the already-drawn part does not get drawn again and things look funny.
175      * But without this we get this bad behaviour whenever we resize the
176      * window.
177      */
178     window->State.Redisplay = GL_TRUE;
179
180     if( window->IsMenu )
181         fgSetWindow( current_window );
182 }
183
184 /*
185  * Calls a window's redraw method. This is used when
186  * a redraw is forced by the incoming window messages.
187  */
188 static void fghRedrawWindow ( SFG_Window *window )
189 {
190     SFG_Window *current_window = fgStructure.CurrentWindow;
191
192     freeglut_return_if_fail( window );
193     freeglut_return_if_fail( FETCH_WCB ( *window, Display ) );
194
195     window->State.Redisplay = GL_FALSE;
196
197     freeglut_return_if_fail( window->State.Visible );
198
199     fgSetWindow( window );
200
201     if( window->State.NeedToResize )
202     {
203         fghReshapeWindow(
204             window,
205             window->State.Width,
206             window->State.Height
207         );
208
209         window->State.NeedToResize = GL_FALSE;
210     }
211
212     INVOKE_WCB( *window, Display, ( ) );
213
214     fgSetWindow( current_window );
215 }
216
217 /*
218  * A static helper function to execute display callback for a window
219  */
220 static void fghcbDisplayWindow( SFG_Window *window,
221                                 SFG_Enumerator *enumerator )
222 {
223     if( window->State.Redisplay &&
224         window->State.Visible )
225     {
226         window->State.Redisplay = GL_FALSE;
227
228 #if TARGET_HOST_UNIX_X11
229         fghRedrawWindow ( window ) ;
230 #elif TARGET_HOST_WIN32 || TARGET_HOST_WINCE
231         RedrawWindow(
232             window->Window.Handle, NULL, NULL,
233             RDW_NOERASE | RDW_INTERNALPAINT | RDW_INVALIDATE | RDW_UPDATENOW
234         );
235 #endif
236     }
237
238     fgEnumSubWindows( window, fghcbDisplayWindow, enumerator );
239 }
240
241 /*
242  * Make all windows perform a display call
243  */
244 static void fghDisplayAll( void )
245 {
246     SFG_Enumerator enumerator;
247
248     enumerator.found = GL_FALSE;
249     enumerator.data  =  NULL;
250
251     fgEnumWindows( fghcbDisplayWindow, &enumerator );
252 }
253
254 /*
255  * Window enumerator callback to check for the joystick polling code
256  */
257 static void fghcbCheckJoystickPolls( SFG_Window *window,
258                                      SFG_Enumerator *enumerator )
259 {
260     long int checkTime = fgElapsedTime( );
261
262     if( window->State.JoystickLastPoll + window->State.JoystickPollRate <=
263         checkTime )
264     {
265 #if !TARGET_HOST_WINCE
266         fgJoystickPollWindow( window );
267 #endif /* !TARGET_HOST_WINCE */
268         window->State.JoystickLastPoll = checkTime;
269     }
270
271     fgEnumSubWindows( window, fghcbCheckJoystickPolls, enumerator );
272 }
273
274 /*
275  * Check all windows for joystick polling
276  */
277 static void fghCheckJoystickPolls( void )
278 {
279     SFG_Enumerator enumerator;
280
281     enumerator.found = GL_FALSE;
282     enumerator.data  =  NULL;
283
284     fgEnumWindows( fghcbCheckJoystickPolls, &enumerator );
285 }
286
287 /*
288  * Check the global timers
289  */
290 static void fghCheckTimers( void )
291 {
292     long checkTime = fgElapsedTime( );
293
294     while( fgState.Timers.First )
295     {
296         SFG_Timer *timer = fgState.Timers.First;
297
298         if( timer->TriggerTime > checkTime )
299             break;
300
301         fgListRemove( &fgState.Timers, &timer->Node );
302         fgListAppend( &fgState.FreeTimers, &timer->Node );
303
304         timer->Callback( timer->ID );
305     }
306 }
307
308 /*
309  * Elapsed Time
310  */
311 long fgElapsedTime( void )
312 {
313     if ( fgState.Time.Set )
314     {
315 #if TARGET_HOST_UNIX_X11
316         struct timeval now;
317         long elapsed;
318
319         gettimeofday( &now, NULL );
320
321         elapsed = (now.tv_usec - fgState.Time.Value.tv_usec) / 1000;
322         elapsed += (now.tv_sec - fgState.Time.Value.tv_sec) * 1000;
323
324         return elapsed;
325 #elif TARGET_HOST_WIN32
326         return timeGetTime() - fgState.Time.Value;
327 #elif TARGET_HOST_WINCE
328         return GetTickCount() - fgState.Time.Value;
329 #endif
330     }
331     else
332     {
333 #if TARGET_HOST_UNIX_X11
334         gettimeofday( &fgState.Time.Value, NULL );
335 #elif TARGET_HOST_WIN32
336         fgState.Time.Value = timeGetTime ();
337 #elif TARGET_HOST_WINCE
338         fgState.Time.Value = GetTickCount();
339 #endif
340         fgState.Time.Set = GL_TRUE ;
341
342         return 0 ;
343     }
344 }
345
346 /*
347  * Error Messages.
348  */
349 void fgError( const char *fmt, ... )
350 {
351     va_list ap;
352
353     va_start( ap, fmt );
354
355     fprintf( stderr, "freeglut ");
356     if( fgState.ProgramName )
357         fprintf( stderr, "(%s): ", fgState.ProgramName );
358     VFPRINTF( stderr, fmt, ap );
359     fprintf( stderr, "\n" );
360
361     va_end( ap );
362
363     if ( fgState.Initialised )
364         fgDeinitialize ();
365
366     exit( 1 );
367 }
368
369 void fgWarning( const char *fmt, ... )
370 {
371     va_list ap;
372
373     va_start( ap, fmt );
374
375     fprintf( stderr, "freeglut ");
376     if( fgState.ProgramName )
377         fprintf( stderr, "(%s): ", fgState.ProgramName );
378     VFPRINTF( stderr, fmt, ap );
379     fprintf( stderr, "\n" );
380
381     va_end( ap );
382 }
383
384 /*
385  * Indicates whether Joystick events are being used by ANY window.
386  *
387  * The current mechanism is to walk all of the windows and ask if
388  * there is a joystick callback.  We have a short-circuit early
389  * return if we find any joystick handler registered.
390  *
391  * The real way to do this is to make use of the glutTimer() API
392  * to more cleanly re-implement the joystick API.  Then, this code
393  * and all other "joystick timer" code can be yanked.
394  *
395  */
396 static void fghCheckJoystickCallback( SFG_Window* w, SFG_Enumerator* e)
397 {
398     if( FETCH_WCB( *w, Joystick ) )
399     {
400         e->found = GL_TRUE;
401         e->data = w;
402     }
403     fgEnumSubWindows( w, fghCheckJoystickCallback, e );
404 }
405 static int fghHaveJoystick( void )
406 {
407     SFG_Enumerator enumerator;
408
409     enumerator.found = GL_FALSE;
410     enumerator.data = NULL;
411     fgEnumWindows( fghCheckJoystickCallback, &enumerator );
412     return !!enumerator.data;
413 }
414 static void fghHavePendingRedisplaysCallback( SFG_Window* w, SFG_Enumerator* e)
415 {
416     if( w->State.Redisplay )
417     {
418         e->found = GL_TRUE;
419         e->data = w;
420     }
421     fgEnumSubWindows( w, fghHavePendingRedisplaysCallback, e );
422 }
423 static int fghHavePendingRedisplays (void)
424 {
425     SFG_Enumerator enumerator;
426
427     enumerator.found = GL_FALSE;
428     enumerator.data = NULL;
429     fgEnumWindows( fghHavePendingRedisplaysCallback, &enumerator );
430     return !!enumerator.data;
431 }
432 /*
433  * Returns the number of GLUT ticks (milliseconds) till the next timer event.
434  */
435 static long fghNextTimer( void )
436 {
437     long ret = INT_MAX;
438     SFG_Timer *timer = fgState.Timers.First;
439
440     if( timer )
441         ret = timer->TriggerTime - fgElapsedTime();
442     if( ret < 0 )
443         ret = 0;
444
445     return ret;
446 }
447 /*
448  * Does the magic required to relinquish the CPU until something interesting
449  * happens.
450  */
451 static void fghSleepForEvents( void )
452 {
453     long msec;
454
455     if( fgState.IdleCallback || fghHavePendingRedisplays( ) )
456         return;
457
458     msec = fghNextTimer( );
459     /* XXX Use GLUT timers for joysticks... */
460     /* XXX Dumb; forces granularity to .01sec */
461     if( fghHaveJoystick( ) && ( msec > 10 ) )     
462         msec = 10;
463
464 #if TARGET_HOST_UNIX_X11
465     /*
466      * Possibly due to aggressive use of XFlush() and friends,
467      * it is possible to have our socket drained but still have
468      * unprocessed events.  (Or, this may just be normal with
469      * X, anyway?)  We do non-trivial processing of X events
470      * after the event-reading loop, in any case, so we
471      * need to allow that we may have an empty socket but non-
472      * empty event queue.
473      */
474     if( ! XPending( fgDisplay.Display ) )
475     {
476         fd_set fdset;
477         int err;
478         int socket;
479         struct timeval wait;
480
481         socket = ConnectionNumber( fgDisplay.Display );
482         FD_ZERO( &fdset );
483         FD_SET( socket, &fdset );
484         wait.tv_sec = msec / 1000;
485         wait.tv_usec = (msec % 1000) * 1000;
486         err = select( socket+1, &fdset, NULL, NULL, &wait );
487
488         if( ( -1 == err ) && ( errno != EINTR ) )
489             fgWarning ( "freeglut select() error: %d", errno );
490     }
491 #elif TARGET_HOST_WIN32 || TARGET_HOST_WINCE
492     MsgWaitForMultipleObjects( 0, NULL, FALSE, msec, QS_ALLEVENTS );
493 #endif
494 }
495
496 #if TARGET_HOST_UNIX_X11
497 /*
498  * Returns GLUT modifier mask for an XEvent.
499  */
500 static int fghGetXModifiers( XEvent *event )
501 {
502     int ret = 0;
503
504     if( event->xkey.state & ( ShiftMask | LockMask ) )
505         ret |= GLUT_ACTIVE_SHIFT;
506     if( event->xkey.state & ControlMask )
507         ret |= GLUT_ACTIVE_CTRL;
508     if( event->xkey.state & Mod1Mask )
509         ret |= GLUT_ACTIVE_ALT;
510
511     return ret;
512 }
513 #endif
514
515
516 #if TARGET_HOST_UNIX_X11 && _DEBUG
517
518 static const char* fghTypeToString( int type )
519 {
520     switch( type ) {
521     case KeyPress: return "KeyPress";
522     case KeyRelease: return "KeyRelease";
523     case ButtonPress: return "ButtonPress";
524     case ButtonRelease: return "ButtonRelease";
525     case MotionNotify: return "MotionNotify";
526     case EnterNotify: return "EnterNotify";
527     case LeaveNotify: return "LeaveNotify";
528     case FocusIn: return "FocusIn";
529     case FocusOut: return "FocusOut";
530     case KeymapNotify: return "KeymapNotify";
531     case Expose: return "Expose";
532     case GraphicsExpose: return "GraphicsExpose";
533     case NoExpose: return "NoExpose";
534     case VisibilityNotify: return "VisibilityNotify";
535     case CreateNotify: return "CreateNotify";
536     case DestroyNotify: return "DestroyNotify";
537     case UnmapNotify: return "UnmapNotify";
538     case MapNotify: return "MapNotify";
539     case MapRequest: return "MapRequest";
540     case ReparentNotify: return "ReparentNotify";
541     case ConfigureNotify: return "ConfigureNotify";
542     case ConfigureRequest: return "ConfigureRequest";
543     case GravityNotify: return "GravityNotify";
544     case ResizeRequest: return "ResizeRequest";
545     case CirculateNotify: return "CirculateNotify";
546     case CirculateRequest: return "CirculateRequest";
547     case PropertyNotify: return "PropertyNotify";
548     case SelectionClear: return "SelectionClear";
549     case SelectionRequest: return "SelectionRequest";
550     case SelectionNotify: return "SelectionNotify";
551     case ColormapNotify: return "ColormapNotify";
552     case ClientMessage: return "ClientMessage";
553     case MappingNotify: return "MappingNotify";
554     default: return "UNKNOWN";
555     }
556 }
557
558 static const char* fghBoolToString( Bool b )
559 {
560     return b == False ? "False" : "True";
561 }
562
563 static const char* fghNotifyHintToString( char is_hint )
564 {
565     switch( is_hint ) {
566     case NotifyNormal: return "NotifyNormal";
567     case NotifyHint: return "NotifyHint";
568     default: return "UNKNOWN";
569     }
570 }
571
572 static const char* fghNotifyModeToString( int mode )
573 {
574     switch( mode ) {
575     case NotifyNormal: return "NotifyNormal";
576     case NotifyGrab: return "NotifyGrab";
577     case NotifyUngrab: return "NotifyUngrab";
578     case NotifyWhileGrabbed: return "NotifyWhileGrabbed";
579     default: return "UNKNOWN";
580     }
581 }
582
583 static const char* fghNotifyDetailToString( int detail )
584 {
585     switch( detail ) {
586     case NotifyAncestor: return "NotifyAncestor";
587     case NotifyVirtual: return "NotifyVirtual";
588     case NotifyInferior: return "NotifyInferior";
589     case NotifyNonlinear: return "NotifyNonlinear";
590     case NotifyNonlinearVirtual: return "NotifyNonlinearVirtual";
591     case NotifyPointer: return "NotifyPointer";
592     case NotifyPointerRoot: return "NotifyPointerRoot";
593     case NotifyDetailNone: return "NotifyDetailNone";
594     default: return "UNKNOWN";
595     }
596 }
597
598 static const char* fghVisibilityToString( int state ) {
599     switch( state ) {
600     case VisibilityUnobscured: return "VisibilityUnobscured";
601     case VisibilityPartiallyObscured: return "VisibilityPartiallyObscured";
602     case VisibilityFullyObscured: return "VisibilityFullyObscured";
603     default: return "UNKNOWN";
604     }
605 }
606
607 static const char* fghConfigureDetailToString( int detail )
608 {
609     switch( detail ) {
610     case Above: return "Above";
611     case Below: return "Below";
612     case TopIf: return "TopIf";
613     case BottomIf: return "BottomIf";
614     case Opposite: return "Opposite";
615     default: return "UNKNOWN";
616     }
617 }
618
619 static const char* fghPlaceToString( int place )
620 {
621     switch( place ) {
622     case PlaceOnTop: return "PlaceOnTop";
623     case PlaceOnBottom: return "PlaceOnBottom";
624     default: return "UNKNOWN";
625     }
626 }
627
628 static const char* fghMappingRequestToString( int request )
629 {
630     switch( request ) {
631     case MappingModifier: return "MappingModifier";
632     case MappingKeyboard: return "MappingKeyboard";
633     case MappingPointer: return "MappingPointer";
634     default: return "UNKNOWN";
635     }
636 }
637
638 static const char* fghPropertyStateToString( int state )
639 {
640     switch( state ) {
641     case PropertyNewValue: return "PropertyNewValue";
642     case PropertyDelete: return "PropertyDelete";
643     default: return "UNKNOWN";
644     }
645 }
646
647 static const char* fghColormapStateToString( int state )
648 {
649     switch( state ) {
650     case ColormapUninstalled: return "ColormapUninstalled";
651     case ColormapInstalled: return "ColormapInstalled";
652     default: return "UNKNOWN";
653     }
654 }
655
656 static void fghPrintEvent( XEvent *event )
657 {
658     switch( event->type ) {
659
660     case KeyPress:
661     case KeyRelease: {
662         XKeyEvent *e = &event->xkey;
663         fgWarning( "%s: window=0x%x, root=0x%x, subwindow=0x%x, time=%lu, "
664                    "(x,y)=(%d,%d), (x_root,y_root)=(%d,%d), state=0x%x, "
665                    "keycode=%u, same_screen=%s", fghTypeToString( e->type ),
666                    e->window, e->root, e->subwindow, (unsigned long)e->time,
667                    e->x, e->y, e->x_root, e->y_root, e->state, e->keycode,
668                    fghBoolToString( e->same_screen ) );
669         break;
670     }
671
672     case ButtonPress:
673     case ButtonRelease: {
674         XButtonEvent *e = &event->xbutton;
675         fgWarning( "%s: window=0x%x, root=0x%x, subwindow=0x%x, time=%lu, "
676                    "(x,y)=(%d,%d), (x_root,y_root)=(%d,%d), state=0x%x, "
677                    "button=%u, same_screen=%d", fghTypeToString( e->type ),
678                    e->window, e->root, e->subwindow, (unsigned long)e->time,
679                    e->x, e->y, e->x_root, e->y_root, e->state, e->button,
680                    fghBoolToString( e->same_screen ) );
681         break;
682     }
683
684     case MotionNotify: {
685         XMotionEvent *e = &event->xmotion;
686         fgWarning( "%s: window=0x%x, root=0x%x, subwindow=0x%x, time=%lu, "
687                    "(x,y)=(%d,%d), (x_root,y_root)=(%d,%d), state=0x%x, "
688                    "is_hint=%s, same_screen=%d", fghTypeToString( e->type ),
689                    e->window, e->root, e->subwindow, (unsigned long)e->time,
690                    e->x, e->y, e->x_root, e->y_root, e->state,
691                    fghNotifyHintToString( e->is_hint ),
692                    fghBoolToString( e->same_screen ) );
693         break;
694     }
695
696     case EnterNotify:
697     case LeaveNotify: {
698         XCrossingEvent *e = &event->xcrossing;
699         fgWarning( "%s: window=0x%x, root=0x%x, subwindow=0x%x, time=%lu, "
700                    "(x,y)=(%d,%d), mode=%s, detail=%s, same_screen=%d, "
701                    "focus=%d, state=0x%x", fghTypeToString( e->type ),
702                    e->window, e->root, e->subwindow, (unsigned long)e->time,
703                    e->x, e->y, fghNotifyModeToString( e->mode ),
704                    fghNotifyDetailToString( e->detail ), (int)e->same_screen,
705                    (int)e->focus, e->state );
706         break;
707     }
708
709     case FocusIn:
710     case FocusOut: {
711         XFocusChangeEvent *e = &event->xfocus;
712         fgWarning( "%s: window=0x%x, mode=%s, detail=%s",
713                    fghTypeToString( e->type ), e->window,
714                    fghNotifyModeToString( e->mode ),
715                    fghNotifyDetailToString( e->detail ) );
716         break;
717     }
718
719     case KeymapNotify: {
720         XKeymapEvent *e = &event->xkeymap;
721         char buf[32 * 2 + 1];
722         int i;
723         for ( i = 0; i < 32; i++ ) {
724             snprintf( &buf[ i * 2 ], sizeof( buf ) - i * 2,
725                       "%02x", e->key_vector[ i ] );
726         }
727         buf[ i ] = '\0';
728         fgWarning( "%s: window=0x%x, %s", fghTypeToString( e->type ), e->window,
729                    buf );
730         break;
731     }
732
733     case Expose: {
734         XExposeEvent *e = &event->xexpose;
735         fgWarning( "%s: window=0x%x, (x,y)=(%d,%d), (width,height)=(%d,%d), "
736                    "count=%d", fghTypeToString( e->type ), e->window, e->x,
737                    e->y, e->width, e->height, e->count );
738         break;
739     }
740
741     case GraphicsExpose: {
742         XGraphicsExposeEvent *e = &event->xgraphicsexpose;
743         fgWarning( "%s: drawable=0x%x, (x,y)=(%d,%d), (width,height)=(%d,%d), "
744                    "count=%d, (major_code,minor_code)=(%d,%d)",
745                    fghTypeToString( e->type ), e->drawable, e->x, e->y,
746                    e->width, e->height, e->count, e->major_code,
747                    e->minor_code );
748         break;
749     }
750
751     case NoExpose: {
752         XNoExposeEvent *e = &event->xnoexpose;
753         fgWarning( "%s: drawable=0x%x, (major_code,minor_code)=(%d,%d)",
754                    fghTypeToString( e->type ), e->drawable, e->major_code,
755                    e->minor_code );
756         break;
757     }
758
759     case VisibilityNotify: {
760         XVisibilityEvent *e = &event->xvisibility;
761         fgWarning( "%s: window=0x%x, state=%s", fghTypeToString( e->type ),
762                    e->window, fghVisibilityToString( e->state) );
763         break;
764     }
765
766     case CreateNotify: {
767         XCreateWindowEvent *e = &event->xcreatewindow;
768         fgWarning( "%s: (x,y)=(%d,%d), (width,height)=(%d,%d), border_width=%d, "
769                    "window=0x%x, override_redirect=%s",
770                    fghTypeToString( e->type ), e->x, e->y, e->width, e->height,
771                    e->border_width, e->window,
772                    fghBoolToString( e->override_redirect ) );
773         break;
774     }
775
776     case DestroyNotify: {
777         XDestroyWindowEvent *e = &event->xdestroywindow;
778         fgWarning( "%s: event=0x%x, window=0x%x",
779                    fghTypeToString( e->type ), e->event, e->window );
780         break;
781     }
782
783     case UnmapNotify: {
784         XUnmapEvent *e = &event->xunmap;
785         fgWarning( "%s: event=0x%x, window=0x%x, from_configure=%s",
786                    fghTypeToString( e->type ), e->event, e->window,
787                    fghBoolToString( e->from_configure ) );
788         break;
789     }
790
791     case MapNotify: {
792         XMapEvent *e = &event->xmap;
793         fgWarning( "%s: event=0x%x, window=0x%x, override_redirect=%s",
794                    fghTypeToString( e->type ), e->event, e->window,
795                    fghBoolToString( e->override_redirect ) );
796         break;
797     }
798
799     case MapRequest: {
800         XMapRequestEvent *e = &event->xmaprequest;
801         fgWarning( "%s: parent=0x%x, window=0x%x",
802                    fghTypeToString( event->type ), e->parent, e->window );
803         break;
804     }
805
806     case ReparentNotify: {
807         XReparentEvent *e = &event->xreparent;
808         fgWarning( "%s: event=0x%x, window=0x%x, parent=0x%x, (x,y)=(%d,%d), "
809                    "override_redirect=%s", fghTypeToString( e->type ),
810                    e->event, e->window, e->parent, e->x, e->y,
811                    fghBoolToString( e->override_redirect ) );
812         break;
813     }
814
815     case ConfigureNotify: {
816         XConfigureEvent *e = &event->xconfigure;
817         fgWarning( "%s: event=0x%x, window=0x%x, (x,y)=(%d,%d), "
818                    "(width,height)=(%d,%d), border_width=%d, above=0x%x, "
819                    "override_redirect=%s", fghTypeToString( e->type ), e->event,
820                    e->window, e->x, e->y, e->width, e->height, e->border_width,
821                    e->above, fghBoolToString( e->override_redirect ) );
822         break;
823     }
824
825     case ConfigureRequest: {
826         XConfigureRequestEvent *e = &event->xconfigurerequest;
827         fgWarning( "%s: parent=0x%x, window=0x%x, (x,y)=(%d,%d), "
828                    "(width,height)=(%d,%d), border_width=%d, above=0x%x, "
829                    "detail=%s, value_mask=%lx", fghTypeToString( e->type ),
830                    e->parent, e->window, e->x, e->y, e->width, e->height,
831                    e->border_width, e->above,
832                    fghConfigureDetailToString( e->detail ), e->value_mask );
833         break;
834     }
835
836     case GravityNotify: {
837         XGravityEvent *e = &event->xgravity;
838         fgWarning( "%s: event=0x%x, window=0x%x, (x,y)=(%d,%d)",
839                    fghTypeToString( e->type ), e->event, e->window, e->x, e->y );
840         break;
841     }
842
843     case ResizeRequest: {
844         XResizeRequestEvent *e = &event->xresizerequest;
845         fgWarning( "%s: window=0x%x, (width,height)=(%d,%d)",
846                    fghTypeToString( e->type ), e->window, e->width, e->height );
847         break;
848     }
849
850     case CirculateNotify: {
851         XCirculateEvent *e = &event->xcirculate;
852         fgWarning( "%s: event=0x%x, window=0x%x, place=%s",
853                    fghTypeToString( e->type ), e->event, e->window,
854                    fghPlaceToString( e->place ) );
855         break;
856     }
857
858     case CirculateRequest: {
859         XCirculateRequestEvent *e = &event->xcirculaterequest;
860         fgWarning( "%s: parent=0x%x, window=0x%x, place=%s",
861                    fghTypeToString( e->type ), e->parent, e->window,
862                    fghPlaceToString( e->place ) );
863         break;
864     }
865
866     case PropertyNotify: {
867         XPropertyEvent *e = &event->xproperty;
868         fgWarning( "%s: window=0x%x, atom=%lu, time=%lu, state=%s",
869                    fghTypeToString( e->type ), e->window,
870                    (unsigned long)e->atom, (unsigned long)e->time,
871                    fghPropertyStateToString( e->state ) );
872         break;
873     }
874
875     case SelectionClear: {
876         XSelectionClearEvent *e = &event->xselectionclear;
877         fgWarning( "%s: window=0x%x, selection=%lu, time=%lu",
878                    fghTypeToString( e->type ), e->window,
879                    (unsigned long)e->selection, (unsigned long)e->time );
880         break;
881     }
882
883     case SelectionRequest: {
884         XSelectionRequestEvent *e = &event->xselectionrequest;
885         fgWarning( "%s: owner=0x%x, requestor=0x%x, selection=0x%x, "
886                    "target=0x%x, property=%lu, time=%lu",
887                    fghTypeToString( e->type ), e->owner, e->requestor,
888                    (unsigned long)e->selection, (unsigned long)e->target,
889                    (unsigned long)e->property, (unsigned long)e->time );
890         break;
891     }
892
893     case SelectionNotify: {
894         XSelectionEvent *e = &event->xselection;
895         fgWarning( "%s: requestor=0x%x, selection=0x%x, target=0x%x, "
896                    "property=%lu, time=%lu", fghTypeToString( e->type ),
897                    e->requestor, (unsigned long)e->selection,
898                    (unsigned long)e->target, (unsigned long)e->property,
899                    (unsigned long)e->time );
900         break;
901     }
902
903     case ColormapNotify: {
904         XColormapEvent *e = &event->xcolormap;
905         fgWarning( "%s: window=0x%x, colormap=%lu, new=%s, state=%s",
906                    fghTypeToString( e->type ), e->window,
907                    (unsigned long)e->colormap, fghBoolToString( e->new ),
908                    fghColormapStateToString( e->state ) );
909         break;
910     }
911
912     case ClientMessage: {
913         XClientMessageEvent *e = &event->xclient;
914         char buf[ 61 ];
915         char* p = buf;
916         char* end = buf + sizeof( buf );
917         int i;
918         switch( e->format ) {
919         case 8:
920           for ( i = 0; i < 20; i++, p += 3 ) {
921                 snprintf( p, end - p, " %02x", e->data.b[ i ] );
922             }
923             break;
924         case 16:
925             for ( i = 0; i < 10; i++, p += 5 ) {
926                 snprintf( p, end - p, " %04x", e->data.s[ i ] );
927             }
928             break;
929         case 32:
930             for ( i = 0; i < 5; i++, p += 9 ) {
931                 snprintf( p, end - p, " %08lx", e->data.l[ i ] );
932             }
933             break;
934         }
935         *p = '\0';
936         fgWarning( "%s: window=0x%x, message_type=%lu, format=%d, data=(%s )",
937                    fghTypeToString( e->type ), e->window,
938                    (unsigned long)e->message_type, e->format, buf );
939         break;
940     }
941
942     case MappingNotify: {
943         XMappingEvent *e = &event->xmapping;
944         fgWarning( "%s: window=0x%x, request=%s, first_keycode=%d, count=%d",
945                    fghTypeToString( e->type ), e->window,
946                    fghMappingRequestToString( e->request ), e->first_keycode,
947                    e->count );
948         break;
949     }
950
951     default: {
952         fgWarning( "%s", fghTypeToString( event->type ) );
953         break;
954     }
955     }
956 }
957
958 #endif
959
960 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
961
962 /*
963  * Executes a single iteration in the freeglut processing loop.
964  */
965 void FGAPIENTRY glutMainLoopEvent( void )
966 {
967 #if TARGET_HOST_UNIX_X11
968     SFG_Window* window;
969     XEvent event;
970
971     /* This code was repeated constantly, so here it goes into a definition: */
972 #define GETWINDOW(a)                             \
973     window = fgWindowByHandle( event.a.window ); \
974     if( window == NULL )                         \
975         break;
976
977 #define GETMOUSE(a)                              \
978     window->State.MouseX = event.a.x;            \
979     window->State.MouseY = event.a.y;
980
981     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutMainLoopEvent" );
982
983     while( XPending( fgDisplay.Display ) )
984     {
985         XNextEvent( fgDisplay.Display, &event );
986 #if _DEBUG
987         fghPrintEvent( &event );
988 #endif
989
990         switch( event.type )
991         {
992         case ClientMessage:
993             /* Destroy the window when the WM_DELETE_WINDOW message arrives */
994             if( (Atom) event.xclient.data.l[ 0 ] == fgDisplay.DeleteWindow )
995             {
996                 GETWINDOW( xclient );
997
998                 fgDestroyWindow ( window );
999
1000                 if( fgState.ActionOnWindowClose == GLUT_ACTION_EXIT )
1001                 {
1002                     fgDeinitialize( );
1003                     exit( 0 );
1004                 }
1005                 else if( fgState.ActionOnWindowClose == GLUT_ACTION_GLUTMAINLOOP_RETURNS )
1006                     fgState.ExecState = GLUT_EXEC_STATE_STOP;
1007
1008                 return;
1009             }
1010             break;
1011
1012             /*
1013              * CreateNotify causes a configure-event so that sub-windows are
1014              * handled compatibly with GLUT.  Otherwise, your sub-windows
1015              * (in freeglut only) will not get an initial reshape event,
1016              * which can break things.
1017              *
1018              * GLUT presumably does this because it generally tries to treat
1019              * sub-windows the same as windows.
1020              */
1021         case CreateNotify:
1022         case ConfigureNotify:
1023             {
1024                 int width, height;
1025                 if( event.type == CreateNotify ) {
1026                     GETWINDOW( xcreatewindow );
1027                     width = event.xcreatewindow.width;
1028                     height = event.xcreatewindow.height;
1029                 } else {
1030                     GETWINDOW( xconfigure );
1031                     width = event.xconfigure.width;
1032                     height = event.xconfigure.height;
1033                 }
1034
1035                 if( ( width != window->State.OldWidth ) ||
1036                     ( height != window->State.OldHeight ) )
1037                 {
1038                     SFG_Window *current_window = fgStructure.CurrentWindow;
1039
1040                     window->State.OldWidth = width;
1041                     window->State.OldHeight = height;
1042                     if( FETCH_WCB( *window, Reshape ) )
1043                         INVOKE_WCB( *window, Reshape, ( width, height ) );
1044                     else
1045                     {
1046                         fgSetWindow( window );
1047                         glViewport( 0, 0, width, height );
1048                     }
1049                     glutPostRedisplay( );
1050                     if( window->IsMenu )
1051                         fgSetWindow( current_window );
1052                 }
1053             }
1054             break;
1055
1056         case DestroyNotify:
1057             /*
1058              * This is sent to confirm the XDestroyWindow call.
1059              *
1060              * XXX WHY is this commented out?  Should we re-enable it?
1061              */
1062             /* fgAddToWindowDestroyList ( window ); */
1063             break;
1064
1065         case Expose:
1066             /*
1067              * We are too dumb to process partial exposes...
1068              *
1069              * XXX Well, we could do it.  However, it seems to only
1070              * XXX be potentially useful for single-buffered (since
1071              * XXX double-buffered does not respect viewport when we
1072              * XXX do a buffer-swap).
1073              *
1074              */
1075             if( event.xexpose.count == 0 )
1076             {
1077                 GETWINDOW( xexpose );
1078                 window->State.Redisplay = GL_TRUE;
1079             }
1080             break;
1081
1082         case MapNotify:
1083             break;
1084
1085         case UnmapNotify:
1086             /* We get this when iconifying a window. */ 
1087             GETWINDOW( xunmap );
1088             fgSetWindow( window );
1089             INVOKE_WCB( *window, WindowStatus, ( GLUT_HIDDEN ) );
1090             window->State.Visible = GL_FALSE;
1091             break;
1092
1093         case MappingNotify:
1094             /*
1095              * Have the client's keyboard knowledge updated (xlib.ps,
1096              * page 206, says that's a good thing to do)
1097              */
1098             XRefreshKeyboardMapping( (XMappingEvent *) &event );
1099             break;
1100
1101         case VisibilityNotify:
1102         {
1103             GETWINDOW( xvisibility );
1104             /*
1105              * XXX INVOKE_WCB() does this check for us.
1106              */
1107             if( ! FETCH_WCB( *window, WindowStatus ) )
1108                 break;
1109             fgSetWindow( window );
1110
1111             /*
1112              * Sending this event, the X server can notify us that the window
1113              * has just acquired one of the three possible visibility states:
1114              * VisibilityUnobscured, VisibilityPartiallyObscured or
1115              * VisibilityFullyObscured. Note that we DO NOT receive a
1116              * VisibilityNotify event when iconifying a window, we only get an
1117              * UnmapNotify then.
1118              */
1119             switch( event.xvisibility.state )
1120             {
1121             case VisibilityUnobscured:
1122                 INVOKE_WCB( *window, WindowStatus, ( GLUT_FULLY_RETAINED ) );
1123                 window->State.Visible = GL_TRUE;
1124                 break;
1125
1126             case VisibilityPartiallyObscured:
1127                 INVOKE_WCB( *window, WindowStatus,
1128                             ( GLUT_PARTIALLY_RETAINED ) );
1129                 window->State.Visible = GL_TRUE;
1130                 break;
1131
1132             case VisibilityFullyObscured:
1133                 INVOKE_WCB( *window, WindowStatus, ( GLUT_FULLY_COVERED ) );
1134                 window->State.Visible = GL_FALSE;
1135                 break;
1136
1137             default:
1138                 fgWarning( "Unknown X visibility state: %d",
1139                            event.xvisibility.state );
1140                 break;
1141             }
1142         }
1143         break;
1144
1145         case EnterNotify:
1146         case LeaveNotify:
1147             GETWINDOW( xcrossing );
1148             GETMOUSE( xcrossing );
1149             if( ( event.type == LeaveNotify ) && window->IsMenu &&
1150                 window->ActiveMenu && window->ActiveMenu->IsActive )
1151                 fgUpdateMenuHighlight( window->ActiveMenu );
1152
1153             INVOKE_WCB( *window, Entry, ( ( EnterNotify == event.type ) ?
1154                                           GLUT_ENTERED :
1155                                           GLUT_LEFT ) );
1156             break;
1157
1158         case MotionNotify:
1159         {
1160             GETWINDOW( xmotion );
1161             GETMOUSE( xmotion );
1162
1163             if( window->ActiveMenu )
1164             {
1165                 if( window == window->ActiveMenu->ParentWindow )
1166                 {
1167                     window->ActiveMenu->Window->State.MouseX =
1168                         event.xmotion.x_root - window->ActiveMenu->X;
1169                     window->ActiveMenu->Window->State.MouseY =
1170                         event.xmotion.y_root - window->ActiveMenu->Y;
1171                 }
1172
1173                 fgUpdateMenuHighlight( window->ActiveMenu );
1174
1175                 break;
1176             }
1177
1178             /*
1179              * XXX For more than 5 buttons, just check {event.xmotion.state},
1180              * XXX rather than a host of bit-masks?  Or maybe we need to
1181              * XXX track ButtonPress/ButtonRelease events in our own
1182              * XXX bit-mask?
1183              */
1184 #define BUTTON_MASK \
1185   ( Button1Mask | Button2Mask | Button3Mask | Button4Mask | Button5Mask )
1186             if ( event.xmotion.state & BUTTON_MASK )
1187                 INVOKE_WCB( *window, Motion, ( event.xmotion.x,
1188                                                event.xmotion.y ) );
1189             else
1190                 INVOKE_WCB( *window, Passive, ( event.xmotion.x,
1191                                                 event.xmotion.y ) );
1192         }
1193         break;
1194
1195         case ButtonRelease:
1196         case ButtonPress:
1197         {
1198             GLboolean pressed = GL_TRUE;
1199             int button;
1200
1201             if( event.type == ButtonRelease )
1202                 pressed = GL_FALSE ;
1203
1204             /*
1205              * A mouse button has been pressed or released. Traditionally,
1206              * break if the window was found within the freeglut structures.
1207              */
1208             GETWINDOW( xbutton );
1209             GETMOUSE( xbutton );
1210
1211             /*
1212              * An X button (at least in XFree86) is numbered from 1.
1213              * A GLUT button is numbered from 0.
1214              * Old GLUT passed through buttons other than just the first
1215              * three, though it only gave symbolic names and official
1216              * support to the first three.
1217              */
1218             button = event.xbutton.button - 1;
1219
1220             /*
1221              * Do not execute the application's mouse callback if a menu
1222              * is hooked to this button.  In that case an appropriate
1223              * private call should be generated.
1224              */
1225             if( fgCheckActiveMenu( window, button, pressed,
1226                                    event.xbutton.x_root, event.xbutton.y_root ) )
1227                 break;
1228
1229             /*
1230              * Check if there is a mouse or mouse wheel callback hooked to the
1231              * window
1232              */
1233             if( ! FETCH_WCB( *window, Mouse ) &&
1234                 ! FETCH_WCB( *window, MouseWheel ) )
1235                 break;
1236
1237             fgState.Modifiers = fghGetXModifiers( &event );
1238
1239             /* Finally execute the mouse or mouse wheel callback */
1240             if( ( button < glutDeviceGet ( GLUT_NUM_MOUSE_BUTTONS ) ) || ( ! FETCH_WCB( *window, MouseWheel ) ) )
1241                 INVOKE_WCB( *window, Mouse, ( button,
1242                                               pressed ? GLUT_DOWN : GLUT_UP,
1243                                               event.xbutton.x,
1244                                               event.xbutton.y )
1245                 );
1246             else
1247             {
1248                 /*
1249                  * Map 4 and 5 to wheel zero; EVEN to +1, ODD to -1
1250                  *  "  6 and 7 "    "   one; ...
1251                  *
1252                  * XXX This *should* be behind some variables/macros,
1253                  * XXX since the order and numbering isn't certain
1254                  * XXX See XFree86 configuration docs (even back in the
1255                  * XXX 3.x days, and especially with 4.x).
1256                  *
1257                  * XXX Note that {button} has already been decremeted
1258                  * XXX in mapping from X button numbering to GLUT.
1259                  */
1260                 int wheel_number = (button - glutDeviceGet ( GLUT_NUM_MOUSE_BUTTONS )) / 2;
1261                 int direction = -1;
1262                 if( button % 2 )
1263                     direction = 1;
1264
1265                 if( pressed )
1266                     INVOKE_WCB( *window, MouseWheel, ( wheel_number,
1267                                                        direction,
1268                                                        event.xbutton.x,
1269                                                        event.xbutton.y )
1270                     );
1271             }
1272
1273             /* Trash the modifiers state */
1274             fgState.Modifiers = 0xffffffff;
1275         }
1276         break;
1277
1278         case KeyRelease:
1279         case KeyPress:
1280         {
1281             FGCBKeyboard keyboard_cb;
1282             FGCBSpecial special_cb;
1283
1284             GETWINDOW( xkey );
1285             GETMOUSE( xkey );
1286
1287             /* Detect auto repeated keys, if configured globally or per-window */
1288
1289             if ( fgState.KeyRepeat==GLUT_KEY_REPEAT_OFF || window->State.IgnoreKeyRepeat==GL_TRUE )
1290             {
1291                 if (event.type==KeyRelease)
1292                 {
1293                     /*
1294                      * Look at X11 keystate to detect repeat mode.
1295                      * While X11 says the key is actually held down, we'll ignore KeyRelease/KeyPress pairs.
1296                      */
1297
1298                     char keys[32];
1299                     XQueryKeymap( fgDisplay.Display, keys ); /* Look at X11 keystate to detect repeat mode */
1300
1301                     if ( event.xkey.keycode<256 )            /* XQueryKeymap is limited to 256 keycodes    */
1302                     {
1303                         if ( keys[event.xkey.keycode>>3] & (1<<(event.xkey.keycode%8)) )
1304                             window->State.KeyRepeating = GL_TRUE;
1305                         else
1306                             window->State.KeyRepeating = GL_FALSE;
1307                     }
1308                 }
1309             }
1310             else
1311                 window->State.KeyRepeating = GL_FALSE;
1312
1313             /* Cease processing this event if it is auto repeated */
1314
1315             if (window->State.KeyRepeating)
1316                 break;
1317
1318             if( event.type == KeyPress )
1319             {
1320                 keyboard_cb = (FGCBKeyboard)( FETCH_WCB( *window, Keyboard ));
1321                 special_cb  = (FGCBSpecial) ( FETCH_WCB( *window, Special  ));
1322             }
1323             else
1324             {
1325                 keyboard_cb = (FGCBKeyboard)( FETCH_WCB( *window, KeyboardUp ));
1326                 special_cb  = (FGCBSpecial) ( FETCH_WCB( *window, SpecialUp  ));
1327             }
1328
1329             /* Is there a keyboard/special callback hooked for this window? */
1330             if( keyboard_cb || special_cb )
1331             {
1332                 XComposeStatus composeStatus;
1333                 char asciiCode[ 32 ];
1334                 KeySym keySym;
1335                 int len;
1336
1337                 /* Check for the ASCII/KeySym codes associated with the event: */
1338                 len = XLookupString( &event.xkey, asciiCode, sizeof(asciiCode),
1339                                      &keySym, &composeStatus
1340                 );
1341
1342                 /* GLUT API tells us to have two separate callbacks... */
1343                 if( len > 0 )
1344                 {
1345                     /* ...one for the ASCII translateable keypresses... */
1346                     if( keyboard_cb )
1347                     {
1348                         fgSetWindow( window );
1349                         fgState.Modifiers = fghGetXModifiers( &event );
1350                         keyboard_cb( asciiCode[ 0 ],
1351                                      event.xkey.x, event.xkey.y
1352                         );
1353                         fgState.Modifiers = 0xffffffff;
1354                     }
1355                 }
1356                 else
1357                 {
1358                     int special = -1;
1359
1360                     /*
1361                      * ...and one for all the others, which need to be
1362                      * translated to GLUT_KEY_Xs...
1363                      */
1364                     switch( keySym )
1365                     {
1366                     case XK_F1:     special = GLUT_KEY_F1;     break;
1367                     case XK_F2:     special = GLUT_KEY_F2;     break;
1368                     case XK_F3:     special = GLUT_KEY_F3;     break;
1369                     case XK_F4:     special = GLUT_KEY_F4;     break;
1370                     case XK_F5:     special = GLUT_KEY_F5;     break;
1371                     case XK_F6:     special = GLUT_KEY_F6;     break;
1372                     case XK_F7:     special = GLUT_KEY_F7;     break;
1373                     case XK_F8:     special = GLUT_KEY_F8;     break;
1374                     case XK_F9:     special = GLUT_KEY_F9;     break;
1375                     case XK_F10:    special = GLUT_KEY_F10;    break;
1376                     case XK_F11:    special = GLUT_KEY_F11;    break;
1377                     case XK_F12:    special = GLUT_KEY_F12;    break;
1378
1379                     case XK_Left:   special = GLUT_KEY_LEFT;   break;
1380                     case XK_Right:  special = GLUT_KEY_RIGHT;  break;
1381                     case XK_Up:     special = GLUT_KEY_UP;     break;
1382                     case XK_Down:   special = GLUT_KEY_DOWN;   break;
1383
1384                     case XK_KP_Prior:
1385                     case XK_Prior:  special = GLUT_KEY_PAGE_UP; break;
1386                     case XK_KP_Next:
1387                     case XK_Next:   special = GLUT_KEY_PAGE_DOWN; break;
1388                     case XK_KP_Home:
1389                     case XK_Home:   special = GLUT_KEY_HOME;   break;
1390                     case XK_KP_End:
1391                     case XK_End:    special = GLUT_KEY_END;    break;
1392                     case XK_KP_Insert:
1393                     case XK_Insert: special = GLUT_KEY_INSERT; break;
1394                     }
1395
1396                     /*
1397                      * Execute the callback (if one has been specified),
1398                      * given that the special code seems to be valid...
1399                      */
1400                     if( special_cb && (special != -1) )
1401                     {
1402                         fgSetWindow( window );
1403                         fgState.Modifiers = fghGetXModifiers( &event );
1404                         special_cb( special, event.xkey.x, event.xkey.y );
1405                         fgState.Modifiers = 0xffffffff;
1406                     }
1407                 }
1408             }
1409         }
1410         break;
1411
1412         case ReparentNotify:
1413             break; /* XXX Should disable this event */
1414
1415         default:
1416             fgWarning ("Unknown X event type: %d", event.type);
1417             break;
1418         }
1419     }
1420
1421 #elif TARGET_HOST_WIN32 || TARGET_HOST_WINCE
1422
1423     MSG stMsg;
1424
1425     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutMainLoopEvent" );
1426
1427     while( PeekMessage( &stMsg, NULL, 0, 0, PM_NOREMOVE ) )
1428     {
1429         if( GetMessage( &stMsg, NULL, 0, 0 ) == 0 )
1430         {
1431             if( fgState.ActionOnWindowClose == GLUT_ACTION_EXIT )
1432             {
1433                 fgDeinitialize( );
1434                 exit( 0 );
1435             }
1436             else if( fgState.ActionOnWindowClose == GLUT_ACTION_GLUTMAINLOOP_RETURNS )
1437                 fgState.ExecState = GLUT_EXEC_STATE_STOP;
1438
1439             return;
1440         }
1441
1442         TranslateMessage( &stMsg );
1443         DispatchMessage( &stMsg );
1444     }
1445 #endif
1446
1447     if( fgState.Timers.First )
1448         fghCheckTimers( );
1449     fghCheckJoystickPolls( );
1450     fghDisplayAll( );
1451
1452     fgCloseWindows( );
1453 }
1454
1455 /*
1456  * Enters the freeglut processing loop.
1457  * Stays until the "ExecState" changes to "GLUT_EXEC_STATE_STOP".
1458  */
1459 void FGAPIENTRY glutMainLoop( void )
1460 {
1461     int action;
1462
1463 #if TARGET_HOST_WIN32 || TARGET_HOST_WINCE
1464     SFG_Window *window = (SFG_Window *)fgStructure.Windows.First ;
1465 #endif
1466
1467     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutMainLoop" );
1468
1469 #if TARGET_HOST_WIN32 || TARGET_HOST_WINCE
1470     /*
1471      * Processing before the main loop:  If there is a window which is open and
1472      * which has a visibility callback, call it.  I know this is an ugly hack,
1473      * but I'm not sure what else to do about it.  Ideally we should leave
1474      * something uninitialized in the create window code and initialize it in
1475      * the main loop, and have that initialization create a "WM_ACTIVATE"
1476      * message.  Then we would put the visibility callback code in the
1477      * "case WM_ACTIVATE" block below.         - John Fay -- 10/24/02
1478      */
1479     while( window )
1480     {
1481         if ( FETCH_WCB( *window, Visibility ) )
1482         {
1483             SFG_Window *current_window = fgStructure.CurrentWindow ;
1484
1485             INVOKE_WCB( *window, Visibility, ( window->State.Visible ) );
1486             fgSetWindow( current_window );
1487         }
1488
1489         window = (SFG_Window *)window->Node.Next ;
1490     }
1491 #endif
1492
1493     fgState.ExecState = GLUT_EXEC_STATE_RUNNING ;
1494     while( fgState.ExecState == GLUT_EXEC_STATE_RUNNING )
1495     {
1496         SFG_Window *window;
1497
1498         glutMainLoopEvent( );
1499         /*
1500          * Step through the list of windows, seeing if there are any
1501          * that are not menus
1502          */
1503         for( window = ( SFG_Window * )fgStructure.Windows.First;
1504              window;
1505              window = ( SFG_Window * )window->Node.Next )
1506             if ( ! ( window->IsMenu ) )
1507                 break;
1508
1509         if( ! window )
1510             fgState.ExecState = GLUT_EXEC_STATE_STOP;
1511         else
1512         {
1513             if( fgState.IdleCallback )
1514             {
1515                 if( fgStructure.CurrentWindow &&
1516                     fgStructure.CurrentWindow->IsMenu )
1517                     /* fail safe */
1518                     fgSetWindow( window );
1519                 fgState.IdleCallback( );
1520             }
1521
1522             fghSleepForEvents( );
1523         }
1524     }
1525
1526     /*
1527      * When this loop terminates, destroy the display, state and structure
1528      * of a freeglut session, so that another glutInit() call can happen
1529      *
1530      * Save the "ActionOnWindowClose" because "fgDeinitialize" resets it.
1531      */
1532     action = fgState.ActionOnWindowClose;
1533     fgDeinitialize( );
1534     if( action == GLUT_ACTION_EXIT )
1535         exit( 0 );
1536 }
1537
1538 /*
1539  * Leaves the freeglut processing loop.
1540  */
1541 void FGAPIENTRY glutLeaveMainLoop( void )
1542 {
1543     FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutLeaveMainLoop" );
1544     fgState.ExecState = GLUT_EXEC_STATE_STOP ;
1545 }
1546
1547
1548 #if TARGET_HOST_WIN32 || TARGET_HOST_WINCE
1549 /*
1550  * Determine a GLUT modifer mask based on MS-WINDOWS system info.
1551  */
1552 static int fghGetWin32Modifiers (void)
1553 {
1554     return
1555         ( ( ( GetKeyState( VK_LSHIFT   ) < 0 ) ||
1556             ( GetKeyState( VK_RSHIFT   ) < 0 )) ? GLUT_ACTIVE_SHIFT : 0 ) |
1557         ( ( ( GetKeyState( VK_LCONTROL ) < 0 ) ||
1558             ( GetKeyState( VK_RCONTROL ) < 0 )) ? GLUT_ACTIVE_CTRL  : 0 ) |
1559         ( ( ( GetKeyState( VK_LMENU    ) < 0 ) ||
1560             ( GetKeyState( VK_RMENU    ) < 0 )) ? GLUT_ACTIVE_ALT   : 0 );
1561 }
1562
1563 /*
1564  * The window procedure for handling Win32 events
1565  */
1566 LRESULT CALLBACK fgWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam,
1567                                LPARAM lParam )
1568 {
1569     SFG_Window* window;
1570     PAINTSTRUCT ps;
1571     LONG lRet = 1;
1572
1573     FREEGLUT_INTERNAL_ERROR_EXIT_IF_NOT_INITIALISED ( "Event Handler" ) ;
1574
1575     window = fgWindowByHandle( hWnd );
1576
1577     if ( ( window == NULL ) && ( uMsg != WM_CREATE ) )
1578       return DefWindowProc( hWnd, uMsg, wParam, lParam );
1579
1580     /* printf ( "Window %3d message <%04x> %12d %12d\n", window?window->ID:0,
1581              uMsg, wParam, lParam ); */
1582     switch( uMsg )
1583     {
1584     case WM_CREATE:
1585         /* The window structure is passed as the creation structure paramter... */
1586         window = (SFG_Window *) (((LPCREATESTRUCT) lParam)->lpCreateParams);
1587         FREEGLUT_INTERNAL_ERROR_EXIT ( ( window != NULL ), "Cannot create window",
1588                                        "fgWindowProc" );
1589
1590         window->Window.Handle = hWnd;
1591         window->Window.Device = GetDC( hWnd );
1592         if( window->IsMenu )
1593         {
1594             unsigned int current_DisplayMode = fgState.DisplayMode;
1595             fgState.DisplayMode = GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH;
1596 #if !TARGET_HOST_WINCE
1597             fgSetupPixelFormat( window, GL_FALSE, PFD_MAIN_PLANE );
1598 #endif
1599             fgState.DisplayMode = current_DisplayMode;
1600
1601             if( fgStructure.MenuContext )
1602                 wglMakeCurrent( window->Window.Device,
1603                                 fgStructure.MenuContext->Context
1604                 );
1605             else
1606             {
1607                 fgStructure.MenuContext =
1608                     (SFG_MenuContext *)malloc( sizeof(SFG_MenuContext) );
1609                 fgStructure.MenuContext->Context =
1610                     wglCreateContext( window->Window.Device );
1611             }
1612
1613             /* window->Window.Context = wglGetCurrentContext ();   */
1614             window->Window.Context = wglCreateContext( window->Window.Device );
1615         }
1616         else
1617         {
1618 #if !TARGET_HOST_WINCE
1619             fgSetupPixelFormat( window, GL_FALSE, PFD_MAIN_PLANE );
1620 #endif
1621
1622             if( ! fgState.UseCurrentContext )
1623                 window->Window.Context =
1624                     wglCreateContext( window->Window.Device );
1625             else
1626             {
1627                 window->Window.Context = wglGetCurrentContext( );
1628                 if( ! window->Window.Context )
1629                     window->Window.Context =
1630                         wglCreateContext( window->Window.Device );
1631             }
1632         }
1633
1634         window->State.NeedToResize = GL_TRUE;
1635         window->State.Width  = fgState.Size.X;
1636         window->State.Height = fgState.Size.Y;
1637
1638         ReleaseDC( window->Window.Handle, window->Window.Device );
1639
1640 #if TARGET_HOST_WINCE
1641         /* Take over button handling */
1642         {
1643             HINSTANCE dxDllLib=LoadLibrary(_T("gx.dll"));
1644             if (dxDllLib)
1645             {
1646                 GXGetDefaultKeys_=(GXGETDEFAULTKEYS)GetProcAddress(dxDllLib, _T("?GXGetDefaultKeys@@YA?AUGXKeyList@@H@Z"));
1647                 GXOpenInput_=(GXOPENINPUT)GetProcAddress(dxDllLib, _T("?GXOpenInput@@YAHXZ"));
1648             }
1649
1650             if(GXOpenInput_)
1651                 (*GXOpenInput_)();
1652             if(GXGetDefaultKeys_)
1653                 gxKeyList = (*GXGetDefaultKeys_)(GX_LANDSCAPEKEYS);
1654         }
1655
1656 #endif /* TARGET_HOST_WINCE */
1657         break;
1658
1659     case WM_SIZE:
1660         /*
1661          * If the window is visible, then it is the user manually resizing it.
1662          * If it is not, then it is the system sending us a dummy resize with
1663          * zero dimensions on a "glutIconifyWindow" call.
1664          */
1665         if( window->State.Visible )
1666         {
1667             window->State.NeedToResize = GL_TRUE;
1668 #if TARGET_HOST_WINCE
1669             window->State.Width  = HIWORD(lParam);
1670             window->State.Height = LOWORD(lParam);
1671 #else
1672             window->State.Width  = LOWORD(lParam);
1673             window->State.Height = HIWORD(lParam);
1674 #endif /* TARGET_HOST_WINCE */
1675         }
1676
1677         break;
1678 #if 0
1679     case WM_SETFOCUS:
1680 /*        printf("WM_SETFOCUS: %p\n", window ); */
1681         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
1682         break;
1683
1684     case WM_ACTIVATE:
1685         if (LOWORD(wParam) != WA_INACTIVE)
1686         {
1687 /*            printf("WM_ACTIVATE: fgSetCursor( %p, %d)\n", window,
1688                    window->State.Cursor ); */
1689             fgSetCursor( window, window->State.Cursor );
1690         }
1691
1692         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
1693         break;
1694 #endif
1695
1696     case WM_SETCURSOR:
1697 /*      printf ( "Cursor event %x %x %x %x\n", window, window->State.Cursor, lParam, wParam ) ; */
1698         if( LOWORD( lParam ) == HTCLIENT )
1699             fgSetCursor ( window, window->State.Cursor ) ;
1700         else
1701             lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
1702         break;
1703
1704     case WM_SHOWWINDOW:
1705         window->State.Visible = GL_TRUE;
1706         window->State.Redisplay = GL_TRUE;
1707         break;
1708
1709     case WM_PAINT:
1710         /* Turn on the visibility in case it was turned off somehow */
1711         window->State.Visible = GL_TRUE;
1712         BeginPaint( hWnd, &ps );
1713         fghRedrawWindow( window );
1714         EndPaint( hWnd, &ps );
1715         break;
1716
1717     case WM_CLOSE:
1718         fgDestroyWindow ( window );
1719         if ( fgState.ActionOnWindowClose != GLUT_ACTION_CONTINUE_EXECUTION )
1720             PostQuitMessage(0);
1721         break;
1722
1723     case WM_DESTROY:
1724         /*
1725          * The window already got destroyed, so don't bother with it.
1726          */
1727         return 0;
1728
1729     /* XXX For a future patch:  we need a mouse entry event.  Unfortunately Windows
1730      * XXX doesn't give us one, so we will probably need a "MouseInWindow" flag in
1731      * XXX the SFG_Window structure.  Set it to true to begin with and then have the
1732      * XXX WM_MOUSELEAVE code set it to false.  Then when we get a WM_MOUSEMOVE event,
1733      * XXX if the flag is false we invoke the Entry callback and set the flag to true.
1734      */
1735     case 0x02a2:  /* This is the message we get when the mouse is leaving the window */
1736         if( window->IsMenu &&
1737             window->ActiveMenu && window->ActiveMenu->IsActive )
1738             fgUpdateMenuHighlight( window->ActiveMenu );
1739
1740         INVOKE_WCB( *window, Entry, ( GLUT_LEFT ) );
1741         break ;
1742
1743     case WM_MOUSEMOVE:
1744     {
1745 #if TARGET_HOST_WINCE
1746         window->State.MouseX = 320-HIWORD( lParam );
1747         window->State.MouseY = LOWORD( lParam );
1748 #else
1749         window->State.MouseX = LOWORD( lParam );
1750         window->State.MouseY = HIWORD( lParam );
1751 #endif /* TARGET_HOST_WINCE */
1752         /* Restrict to [-32768, 32767] to match X11 behaviour       */
1753         /* See comment in "freeglut_developer" mailing list 10/4/04 */
1754         if ( window->State.MouseX > 32767 ) window->State.MouseX -= 65536;
1755         if ( window->State.MouseY > 32767 ) window->State.MouseY -= 65536;
1756
1757         if ( window->ActiveMenu )
1758         {
1759             fgUpdateMenuHighlight( window->ActiveMenu );
1760             break;
1761         }
1762
1763         fgState.Modifiers = fghGetWin32Modifiers( );
1764
1765         if( ( wParam & MK_LBUTTON ) ||
1766             ( wParam & MK_MBUTTON ) ||
1767             ( wParam & MK_RBUTTON ) )
1768             INVOKE_WCB( *window, Motion, ( window->State.MouseX,
1769                                            window->State.MouseY ) );
1770         else
1771             INVOKE_WCB( *window, Passive, ( window->State.MouseX,
1772                                             window->State.MouseY ) );
1773
1774         fgState.Modifiers = 0xffffffff;
1775     }
1776     break;
1777
1778     case WM_LBUTTONDOWN:
1779     case WM_MBUTTONDOWN:
1780     case WM_RBUTTONDOWN:
1781     case WM_LBUTTONUP:
1782     case WM_MBUTTONUP:
1783     case WM_RBUTTONUP:
1784     {
1785         GLboolean pressed = GL_TRUE;
1786         int button;
1787
1788 #if TARGET_HOST_WINCE
1789         window->State.MouseX = 320-HIWORD( lParam );
1790         window->State.MouseY = LOWORD( lParam );
1791 #else
1792         window->State.MouseX = LOWORD( lParam );
1793         window->State.MouseY = HIWORD( lParam );
1794 #endif /* TARGET_HOST_WINCE */
1795
1796         /* Restrict to [-32768, 32767] to match X11 behaviour       */
1797         /* See comment in "freeglut_developer" mailing list 10/4/04 */
1798         if ( window->State.MouseX > 32767 ) window->State.MouseX -= 65536;
1799         if ( window->State.MouseY > 32767 ) window->State.MouseY -= 65536;
1800
1801         switch( uMsg )
1802         {
1803         case WM_LBUTTONDOWN:
1804             pressed = GL_TRUE;
1805             button = GLUT_LEFT_BUTTON;
1806             break;
1807         case WM_MBUTTONDOWN:
1808             pressed = GL_TRUE;
1809             button = GLUT_MIDDLE_BUTTON;
1810             break;
1811         case WM_RBUTTONDOWN:
1812             pressed = GL_TRUE;
1813             button = GLUT_RIGHT_BUTTON;
1814             break;
1815         case WM_LBUTTONUP:
1816             pressed = GL_FALSE;
1817             button = GLUT_LEFT_BUTTON;
1818             break;
1819         case WM_MBUTTONUP:
1820             pressed = GL_FALSE;
1821             button = GLUT_MIDDLE_BUTTON;
1822             break;
1823         case WM_RBUTTONUP:
1824             pressed = GL_FALSE;
1825             button = GLUT_RIGHT_BUTTON;
1826             break;
1827         default:
1828             pressed = GL_FALSE;
1829             button = -1;
1830             break;
1831         }
1832
1833 #if !TARGET_HOST_WINCE
1834         if( GetSystemMetrics( SM_SWAPBUTTON ) )
1835         {
1836             if( button == GLUT_LEFT_BUTTON )
1837                 button = GLUT_RIGHT_BUTTON;
1838             else
1839                 if( button == GLUT_RIGHT_BUTTON )
1840                     button = GLUT_LEFT_BUTTON;
1841         }
1842 #endif /* !TARGET_HOST_WINCE */
1843
1844         if( button == -1 )
1845             return DefWindowProc( hWnd, uMsg, lParam, wParam );
1846
1847         /*
1848          * Do not execute the application's mouse callback if a menu
1849          * is hooked to this button.  In that case an appropriate
1850          * private call should be generated.
1851          */
1852         if( fgCheckActiveMenu( window, button, pressed,
1853                                window->State.MouseX, window->State.MouseY ) )
1854             break;
1855
1856         /* Set capture so that the window captures all the mouse messages */
1857         /*
1858          * XXX - Multiple button support:  Under X11, the mouse is not released
1859          * XXX - from the window until all buttons have been released, even if the
1860          * XXX - user presses a button in another window.  This will take more
1861          * XXX - code changes than I am up to at the moment (10/5/04).  The present
1862          * XXX - is a 90 percent solution.
1863          */
1864         if ( pressed == GL_TRUE )
1865           SetCapture ( window->Window.Handle ) ;
1866         else
1867           ReleaseCapture () ;
1868
1869         if( ! FETCH_WCB( *window, Mouse ) )
1870             break;
1871
1872         fgSetWindow( window );
1873         fgState.Modifiers = fghGetWin32Modifiers( );
1874
1875         INVOKE_WCB(
1876             *window, Mouse,
1877             ( button,
1878               pressed ? GLUT_DOWN : GLUT_UP,
1879               window->State.MouseX,
1880               window->State.MouseY
1881             )
1882         );
1883
1884         fgState.Modifiers = 0xffffffff;
1885     }
1886     break;
1887
1888     case 0x020a:
1889         /* Should be WM_MOUSEWHEEL but my compiler doesn't recognize it */
1890     {
1891         /*
1892          * XXX THIS IS SPECULATIVE -- John Fay, 10/2/03
1893          * XXX Should use WHEEL_DELTA instead of 120
1894          */
1895         int wheel_number = LOWORD( wParam );
1896         short ticks = ( short )HIWORD( wParam ) / 120;
1897         int direction = 1;
1898
1899         if( ticks < 0 )
1900         {
1901             direction = -1;
1902             ticks = -ticks;
1903         }
1904
1905         /*
1906          * The mouse cursor has moved. Remember the new mouse cursor's position
1907          */
1908         /*        window->State.MouseX = LOWORD( lParam ); */
1909         /* Need to adjust by window position, */
1910         /*        window->State.MouseY = HIWORD( lParam ); */
1911         /* change "lParam" to other parameter */
1912
1913         if( ! FETCH_WCB( *window, MouseWheel ) &&
1914             ! FETCH_WCB( *window, Mouse ) )
1915             break;
1916
1917         fgSetWindow( window );
1918         fgState.Modifiers = fghGetWin32Modifiers( );
1919
1920         while( ticks-- )
1921             if( FETCH_WCB( *window, MouseWheel ) )
1922                 INVOKE_WCB( *window, MouseWheel,
1923                             ( wheel_number,
1924                               direction,
1925                               window->State.MouseX,
1926                               window->State.MouseY
1927                             )
1928                 );
1929             else  /* No mouse wheel, call the mouse button callback twice */
1930             {
1931                 /*
1932                  * Map wheel zero to button 3 and 4; +1 to 3, -1 to 4
1933                  *  "    "   one                     +1 to 5, -1 to 6, ...
1934                  *
1935                  * XXX The below assumes that you have no more than 3 mouse
1936                  * XXX buttons.  Sorry.
1937                  */
1938                 int button = wheel_number * 2 + 3;
1939                 if( direction < 0 )
1940                     ++button;
1941                 INVOKE_WCB( *window, Mouse,
1942                             ( button, GLUT_DOWN,
1943                               window->State.MouseX, window->State.MouseY )
1944                 );
1945                 INVOKE_WCB( *window, Mouse,
1946                             ( button, GLUT_UP,
1947                               window->State.MouseX, window->State.MouseY )
1948                 );
1949             }
1950
1951         fgState.Modifiers = 0xffffffff;
1952     }
1953     break ;
1954
1955     case WM_SYSKEYDOWN:
1956     case WM_KEYDOWN:
1957     {
1958         int keypress = -1;
1959         POINT mouse_pos ;
1960
1961         if( ( fgState.KeyRepeat==GLUT_KEY_REPEAT_OFF || window->State.IgnoreKeyRepeat==GL_TRUE ) && (HIWORD(lParam) & KF_REPEAT) )
1962             break;
1963
1964         /*
1965          * Remember the current modifiers state. This is done here in order
1966          * to make sure the VK_DELETE keyboard callback is executed properly.
1967          */
1968         fgState.Modifiers = fghGetWin32Modifiers( );
1969
1970         GetCursorPos( &mouse_pos );
1971         ScreenToClient( window->Window.Handle, &mouse_pos );
1972
1973         window->State.MouseX = mouse_pos.x;
1974         window->State.MouseY = mouse_pos.y;
1975
1976         /* Convert the Win32 keystroke codes to GLUTtish way */
1977 #       define KEY(a,b) case a: keypress = b; break;
1978
1979         switch( wParam )
1980         {
1981             KEY( VK_F1,     GLUT_KEY_F1        );
1982             KEY( VK_F2,     GLUT_KEY_F2        );
1983             KEY( VK_F3,     GLUT_KEY_F3        );
1984             KEY( VK_F4,     GLUT_KEY_F4        );
1985             KEY( VK_F5,     GLUT_KEY_F5        );
1986             KEY( VK_F6,     GLUT_KEY_F6        );
1987             KEY( VK_F7,     GLUT_KEY_F7        );
1988             KEY( VK_F8,     GLUT_KEY_F8        );
1989             KEY( VK_F9,     GLUT_KEY_F9        );
1990             KEY( VK_F10,    GLUT_KEY_F10       );
1991             KEY( VK_F11,    GLUT_KEY_F11       );
1992             KEY( VK_F12,    GLUT_KEY_F12       );
1993             KEY( VK_PRIOR,  GLUT_KEY_PAGE_UP   );
1994             KEY( VK_NEXT,   GLUT_KEY_PAGE_DOWN );
1995             KEY( VK_HOME,   GLUT_KEY_HOME      );
1996             KEY( VK_END,    GLUT_KEY_END       );
1997             KEY( VK_LEFT,   GLUT_KEY_LEFT      );
1998             KEY( VK_UP,     GLUT_KEY_UP        );
1999             KEY( VK_RIGHT,  GLUT_KEY_RIGHT     );
2000             KEY( VK_DOWN,   GLUT_KEY_DOWN      );
2001             KEY( VK_INSERT, GLUT_KEY_INSERT    );
2002
2003         case VK_DELETE:
2004             /* The delete key should be treated as an ASCII keypress: */
2005             INVOKE_WCB( *window, Keyboard,
2006                         ( 127, window->State.MouseX, window->State.MouseY )
2007             );
2008         }
2009
2010 #if TARGET_HOST_WINCE
2011         if(!(lParam & 0x40000000)) /* Prevent auto-repeat */
2012         {
2013             if(wParam==(unsigned)gxKeyList.vkRight)
2014                 keypress = GLUT_KEY_RIGHT;
2015             else if(wParam==(unsigned)gxKeyList.vkLeft)
2016                 keypress = GLUT_KEY_LEFT;
2017             else if(wParam==(unsigned)gxKeyList.vkUp)
2018                 keypress = GLUT_KEY_UP;
2019             else if(wParam==(unsigned)gxKeyList.vkDown)
2020                 keypress = GLUT_KEY_DOWN;
2021             else if(wParam==(unsigned)gxKeyList.vkA)
2022                 keypress = GLUT_KEY_F1;
2023             else if(wParam==(unsigned)gxKeyList.vkB)
2024                 keypress = GLUT_KEY_F2;
2025             else if(wParam==(unsigned)gxKeyList.vkC)
2026                 keypress = GLUT_KEY_F3;
2027             else if(wParam==(unsigned)gxKeyList.vkStart)
2028                 keypress = GLUT_KEY_F4;
2029         }
2030 #endif
2031
2032         if( keypress != -1 )
2033             INVOKE_WCB( *window, Special,
2034                         ( keypress,
2035                           window->State.MouseX, window->State.MouseY )
2036             );
2037
2038         fgState.Modifiers = 0xffffffff;
2039     }
2040     break;
2041
2042     case WM_SYSKEYUP:
2043     case WM_KEYUP:
2044     {
2045         int keypress = -1;
2046         POINT mouse_pos;
2047
2048         /*
2049          * Remember the current modifiers state. This is done here in order
2050          * to make sure the VK_DELETE keyboard callback is executed properly.
2051          */
2052         fgState.Modifiers = fghGetWin32Modifiers( );
2053
2054         GetCursorPos( &mouse_pos );
2055         ScreenToClient( window->Window.Handle, &mouse_pos );
2056
2057         window->State.MouseX = mouse_pos.x;
2058         window->State.MouseY = mouse_pos.y;
2059
2060         /*
2061          * Convert the Win32 keystroke codes to GLUTtish way.
2062          * "KEY(a,b)" was defined under "WM_KEYDOWN"
2063          */
2064
2065         switch( wParam )
2066         {
2067             KEY( VK_F1,     GLUT_KEY_F1        );
2068             KEY( VK_F2,     GLUT_KEY_F2        );
2069             KEY( VK_F3,     GLUT_KEY_F3        );
2070             KEY( VK_F4,     GLUT_KEY_F4        );
2071             KEY( VK_F5,     GLUT_KEY_F5        );
2072             KEY( VK_F6,     GLUT_KEY_F6        );
2073             KEY( VK_F7,     GLUT_KEY_F7        );
2074             KEY( VK_F8,     GLUT_KEY_F8        );
2075             KEY( VK_F9,     GLUT_KEY_F9        );
2076             KEY( VK_F10,    GLUT_KEY_F10       );
2077             KEY( VK_F11,    GLUT_KEY_F11       );
2078             KEY( VK_F12,    GLUT_KEY_F12       );
2079             KEY( VK_PRIOR,  GLUT_KEY_PAGE_UP   );
2080             KEY( VK_NEXT,   GLUT_KEY_PAGE_DOWN );
2081             KEY( VK_HOME,   GLUT_KEY_HOME      );
2082             KEY( VK_END,    GLUT_KEY_END       );
2083             KEY( VK_LEFT,   GLUT_KEY_LEFT      );
2084             KEY( VK_UP,     GLUT_KEY_UP        );
2085             KEY( VK_RIGHT,  GLUT_KEY_RIGHT     );
2086             KEY( VK_DOWN,   GLUT_KEY_DOWN      );
2087             KEY( VK_INSERT, GLUT_KEY_INSERT    );
2088
2089           case VK_DELETE:
2090               /* The delete key should be treated as an ASCII keypress: */
2091               INVOKE_WCB( *window, KeyboardUp,
2092                           ( 127, window->State.MouseX, window->State.MouseY )
2093               );
2094               break;
2095
2096         default:
2097         {
2098 #if !TARGET_HOST_WINCE
2099             BYTE state[ 256 ];
2100             WORD code[ 2 ];
2101
2102             GetKeyboardState( state );
2103
2104             if( ToAscii( wParam, 0, state, code, 0 ) == 1 )
2105                 wParam=code[ 0 ];
2106
2107             INVOKE_WCB( *window, KeyboardUp,
2108                         ( (char)wParam,
2109                           window->State.MouseX, window->State.MouseY )
2110             );
2111 #endif /* !TARGET_HOST_WINCE */
2112         }
2113         }
2114
2115         if( keypress != -1 )
2116             INVOKE_WCB( *window, SpecialUp,
2117                         ( keypress,
2118                           window->State.MouseX, window->State.MouseY )
2119             );
2120
2121         fgState.Modifiers = 0xffffffff;
2122     }
2123     break;
2124
2125     case WM_SYSCHAR:
2126     case WM_CHAR:
2127     {
2128       if( (fgState.KeyRepeat==GLUT_KEY_REPEAT_OFF || window->State.IgnoreKeyRepeat==GL_TRUE) && (HIWORD(lParam) & KF_REPEAT) )
2129             break;
2130
2131         fgState.Modifiers = fghGetWin32Modifiers( );
2132         INVOKE_WCB( *window, Keyboard,
2133                     ( (char)wParam,
2134                       window->State.MouseX, window->State.MouseY )
2135         );
2136         fgState.Modifiers = 0xffffffff;
2137     }
2138     break;
2139
2140     case WM_CAPTURECHANGED:
2141         /* User has finished resizing the window, force a redraw */
2142         INVOKE_WCB( *window, Display, ( ) );
2143
2144         /*lRet = DefWindowProc( hWnd, uMsg, wParam, lParam ); */
2145         break;
2146
2147         /* Other messages that I have seen and which are not handled already */
2148     case WM_SETTEXT:  /* 0x000c */
2149         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
2150         /* Pass it on to "DefWindowProc" to set the window text */
2151         break;
2152
2153     case WM_GETTEXT:  /* 0x000d */
2154         /* Ideally we would copy the title of the window into "lParam" */
2155         /* strncpy ( (char *)lParam, "Window Title", wParam );
2156            lRet = ( wParam > 12 ) ? 12 : wParam;  */
2157         /* the number of characters copied */
2158         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
2159         break;
2160
2161     case WM_GETTEXTLENGTH:  /* 0x000e */
2162         /* Ideally we would get the length of the title of the window */
2163         lRet = 12;
2164         /* the number of characters in "Window Title\0" (see above) */
2165         break;
2166
2167     case WM_ERASEBKGND:  /* 0x0014 */
2168         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
2169         break;
2170
2171 #if !TARGET_HOST_WINCE
2172     case WM_SYNCPAINT:  /* 0x0088 */
2173         /* Another window has moved, need to update this one */
2174         window->State.Redisplay = GL_TRUE;
2175         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
2176         /* Help screen says this message must be passed to "DefWindowProc" */
2177         break;
2178
2179     case WM_NCPAINT:  /* 0x0085 */
2180       /* Need to update the border of this window */
2181         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
2182         /* Pass it on to "DefWindowProc" to repaint a standard border */
2183         break;
2184
2185     case WM_SYSCOMMAND :  /* 0x0112 */
2186         {
2187           /*
2188            * We have received a system command message.  Try to act on it.
2189            * The commands are passed in through the "wParam" parameter:
2190            * The least significant digit seems to be which edge of the window
2191            * is being used for a resize event:
2192            *     4  3  5
2193            *     1     2
2194            *     7  6  8
2195            * Congratulations and thanks to Richard Rauch for figuring this out..
2196            */
2197             switch ( wParam & 0xfff0 )
2198             {
2199             case SC_SIZE       :
2200                 break ;
2201
2202             case SC_MOVE       :
2203                 break ;
2204
2205             case SC_MINIMIZE   :
2206                 /* User has clicked on the "-" to minimize the window */
2207                 /* Turn off the visibility */
2208                 window->State.Visible = GL_FALSE ;
2209
2210                 break ;
2211
2212             case SC_MAXIMIZE   :
2213                 break ;
2214
2215             case SC_NEXTWINDOW :
2216                 break ;
2217
2218             case SC_PREVWINDOW :
2219                 break ;
2220
2221             case SC_CLOSE      :
2222                 /* Followed very closely by a WM_CLOSE message */
2223                 break ;
2224
2225             case SC_VSCROLL    :
2226                 break ;
2227
2228             case SC_HSCROLL    :
2229                 break ;
2230
2231             case SC_MOUSEMENU  :
2232                 break ;
2233
2234             case SC_KEYMENU    :
2235                 break ;
2236
2237             case SC_ARRANGE    :
2238                 break ;
2239
2240             case SC_RESTORE    :
2241                 break ;
2242
2243             case SC_TASKLIST   :
2244                 break ;
2245
2246             case SC_SCREENSAVE :
2247                 break ;
2248
2249             case SC_HOTKEY     :
2250                 break ;
2251
2252             default:
2253 #if _DEBUG
2254                 fgWarning( "Unknown wParam type 0x%x", wParam );
2255 #endif
2256                 break;
2257             }
2258         }
2259 #endif /* !TARGET_HOST_WINCE */
2260
2261         /* We need to pass the message on to the operating system as well */
2262         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
2263         break;
2264
2265     default:
2266         /* Handle unhandled messages */
2267         lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
2268         break;
2269     }
2270
2271     return lRet;
2272 }
2273 #endif
2274
2275 /*** END OF FILE ***/