summaryrefslogtreecommitdiff
path: root/src/glut/os2/os2_winproc.cpp
blob: e2d4ba9d55028942edcd1aa73f6e7251ef5dfc54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
/* os2_winproc.c */


#define INCL_DEV
#include "WarpGL.h"
#include "GL/os2mesa.h"


#define  _MEERROR_H_
#include <mmioos2.h>                   /* It is from MMPM toolkit           */
#include <dive.h>
#include <fourcc.h>


#include "os2mesadef.h"
#include "glutint.h"


#define POKA 0

#if POKA

extern unsigned __glutMenuButton;
extern GLUTidleCB __glutIdleFunc;
extern GLUTtimer *__glutTimerList;
extern void handleTimeouts(void);
extern GLUTmenuItem *__glutGetUniqueMenuItem(GLUTmenu * menu, int unique);
static HMENU __glutHMenu;

#endif

extern void _mesa_ResizeBuffersMESA( void );


MRESULT EXPENTRY GlutWindowProc( HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2 );
MRESULT EXPENTRY GlutWindowChildProc( HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2 );
void updateWindowState(GLUTwindow *window, int visState);

volatile extern HAB   hab;      /* PM anchor block handle         */
volatile extern HPS   hpsCurrent;

RECTL     rCtls[52];
ULONG     ulNumRcls;

MRESULT EXPENTRY GlutWindowChildProc( HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2 )
{   MRESULT rc;
    rc = GlutWindowProc(hwnd, msg, mp1, mp2 );
    return rc;
}

MRESULT EXPENTRY GlutWindowProc( HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2 )
{
  HPS   hps = NULLHANDLE; /* presentation space handle */
  GLUTwindow*   window;   /* GLUT window associated with message. */
  GLUTmenu*     menu;     /* GLUT menu associated with message. */
  RECTL rclClient;
  POINTL point;
  int button = -1,rc,key;


/* Process the message. */

   switch( msg )
   {
      case WM_CREATE:
     {
      SIZEL sizl = { 0L, 0L };
      LONG  *alCaps;
      HDC hdc;

      /*+-----------------------------------------------------------------+*/
      /*| The client window is being created.  Create the semaphore to    |*/
      /*| control access to the presentation space.  Then create the      |*/
      /*| thread that will draw the lines.                                |*/
      /*+-----------------------------------------------------------------+*/
 //    DosCreateMutexSem( (PSZ)NULL, &hmtxPS, 0UL, FALSE );

      hdc = WinOpenWindowDC(hwnd);

      /*+-----------------------------------------------------------------+*/
      /*| Create a non-cached presentation space.  We will not release    |*/
      /*| this PS, as we will be Selecting a Palette to this PS and then  |*/
      /*| animating the palette.  Upon releasing a PS the palette is no   |*/
      /*| longer selected for obvious reasons.                            |*/
      /*+-----------------------------------------------------------------+*/
      hpsCurrent = GpiCreatePS( hab,
                  hdc,
                  &sizl,
                  PU_PELS | GPIF_DEFAULT |
                  GPIT_MICRO | GPIA_ASSOC );
//      DevQueryCaps( hdc, lStart, lCount, alCaps );
//      fPaletteCaps = alCaps[CAPS_ADDITIONAL_GRAPHICS] & CAPS_PALETTE_MANAGER;
//      PaletteInit(3);
       /* ¯¥p¥¢®¤ hpsBuffer ¢ p¥¦¨¬ RGB color table  */

        GpiCreateLogColorTable(hpsCurrent,0 ,LCOLF_RGB,0,0,NULL);
        GpiSetPattern(hpsCurrent,PATSYM_SOLID);
        GpiSetPatternSet(hpsCurrent,LCID_DEFAULT);

     }
    break;

         return 0;
      case WM_CLOSE:
        WinPostMsg( hwnd, WM_QUIT, NULL, NULL );

        return 0;

      case WM_PAINT:
    window = __glutGetWindow(hwnd);
    if (window)
    {
       PWMC ctx;
//   hps = WinBeginPaint(hwnd,NULLHANDLE,&rclClient);
    hps = WinBeginPaint(hwnd,NULLHANDLE,&rclClient);
       // blit Dive buffer to screen.

     {
         SWP    swp;            // Window position
         POINTL pointl;         // Point to offset from Desktop

             // Convert the point to offset from desktop lower left.
             pointl.x = 0;
             pointl.y = 0;
             WinMapWindowPoints ( hwnd, HWND_DESKTOP, &pointl, 1 );


//            ctx = window->ctx;
//            ctx->xDiveScr = pointl.x;
//            ctx->yDiveScr = pointl.y;
      }
//      rc = DiveBlitImage (ctx->hDive,
//                          ctx->ulDiveBufferNumber,
//                      DIVE_BUFFER_SCREEN );
//

        if (window->win == hwnd) {
          __glutPostRedisplay(window, GLUT_REPAIR_WORK);
        } else if (window->overlay && window->overlay->win == hwnd) {
         __glutPostRedisplay(window, GLUT_OVERLAY_REPAIR_WORK);
        }
        WinEndPaint(hps);
    } else {

        hps = WinBeginPaint(hwnd,NULLHANDLE,&rclClient);
        WinFillRect(hps, &rclClient, CLR_WHITE);
        WinEndPaint(hps);
    }
        break;

    case WM_VRNDISABLED:

//           pwinData->fDataInProcess = TRUE;
//           DiveSetupBlitter ( pwinData->hDive, 0 );
//           pwinData->fVrnDisabled = TRUE;
        break;

    case WM_VRNENABLED:
      {    HRGN      hrgn;      /* Region handle  */
           RGNRECT   rgnCtl;    /* Processing control structure  */
//           RECTL     rCtls[52];
//           ULONG     ulNumRcls;

//            pwinData->fDataInProcess = TRUE;
            hps = WinGetPS ( hwnd );
            if ( !hps )
                  break;
            hrgn = GpiCreateRegion ( hps, 0L, NULL );
            if ( hrgn )
            {  /* NOTE: If mp1 is zero, then this was just a move message.
               ** Illustrate the visible region on a WM_VRNENABLE.
               */
               WinQueryVisibleRegion ( hwnd, hrgn );
               rgnCtl.ircStart     = 0;
               rgnCtl.crc          = 50;
               rgnCtl.ulDirection  = 1;

               /* Get the all ORed rectangles */
               if ( GpiQueryRegionRects ( hps, hrgn, NULL,
                                          &rgnCtl, rCtls) )
               {
                  ulNumRcls = rgnCtl.crcReturned;

                  /* Now find the window position and size, relative to parent.
                  */
//                  WinQueryWindowPos ( pwinData->hwndClient, &pwinData->swp );

//                  rcl.xLeft   = 0;
//                  rcl.yBottom = 0;

                  /* Convert the point to offset from desktop lower left.
                  */
//                  pointl.x = pwinData->swp.x;
//                  pointl.y = pwinData->swp.y;

//                  WinMapWindowPoints ( pwinData->hwndFrame,
//                                       HWND_DESKTOP, &pointl, 1 );

//                  pwinData->cxWindowPos = pointl.x;
//                  pwinData->cyWindowPos = pointl.y;

               }
               GpiDestroyRegion( hps, hrgn );
            }
            WinReleasePS( hps );

      }
        break;

  case WM_SIZE:
    window = __glutGetWindow(hwnd);
    if (window)
    {  int width,height;
       width = SHORT1FROMMP(mp2);
      height = SHORT2FROMMP(mp2);
      if (width != window->width || height != window->height) {
#if 0  /* Win32 GLUT does not support overlays for now. */
       if (window->overlay) {
         XResizeWindow(__glutDisplay, window->overlay->win, width, height);
       }
#endif
       window->width = width;
       window->height = height;
       __glutSetWindow(window);
       if(width <= 0 || height <= 0)
                            break;
       _mesa_ResizeBuffersMESA();

       /* Do not execute OpenGL out of sequence with respect
          to the SetWindowPos request! */
       window->reshape(width, height);
       window->forceReshape = FALSE;
       /* A reshape should be considered like posting a
          repair request. */
       __glutPostRedisplay(window, GLUT_REPAIR_WORK);
      }
    }
    return 0;
  case WM_SHOW:
    window = __glutGetWindow(hwnd);
    if (window) {
       int visState;
       visState = SHORT1FROMMP( mp1 );
       updateWindowState(window, visState);
    }
    return 0;

  case WM_ACTIVATE:
    window = __glutGetWindow(hwnd);
//    /* Make sure we re-select the correct palette if needed. */
//    if (LOWORD(wParam)) {
//      PostMessage(hwnd, WM_PALETTECHANGED, 0, 0);
//    }
    if (window) {
       int visState;
       visState = SHORT1FROMMP( mp1 );
       updateWindowState(window, visState);
    }
    return 0;

  case WM_CHAR:
  { USHORT fsflags;
    window = __glutGetWindow(hwnd);
    if (!window) {
      break;
    }
    fsflags = SHORT1FROMMP(mp1);
/* ?? */
    if((fsflags & KC_KEYUP) )  /* ¨£­®p¨p㥬 ®â¦ â¨¥ ª­®¯ª¨, p¥ £¨p㥬 ⮫쪮 ­  ­ ¦ â¨¥  */
            break;
///////////////////////////////////////////////////
   if(!(fsflags & KC_CHAR) )
   {
        if (!(fsflags & KC_VIRTUALKEY))
                             break;
        key = 0;
         /* Get the virtual key from mp2.       */
         switch (SHORT2FROMMP(mp2))
         {
/* directional keys */
          case VK_LEFT:  key = GLUT_KEY_LEFT;  break;
          case VK_UP:    key = GLUT_KEY_UP;    break;
          case VK_RIGHT: key = GLUT_KEY_RIGHT; break;
          case VK_DOWN:  key = GLUT_KEY_DOWN;  break;

          case VK_PAGEUP:  key = GLUT_KEY_PAGE_UP;    break;
          case VK_PAGEDOWN:key = GLUT_KEY_PAGE_DOWN;  break;
          case VK_HOME:    key = GLUT_KEY_HOME;break;
          case VK_END:     key = GLUT_KEY_END; break;
          case VK_INSERT:  key = GLUT_KEY_INSERT;     break;

/* function keys */
          case VK_F1 : key = GLUT_KEY_F1;  break;
          case VK_F2 : key = GLUT_KEY_F2; break;
          case VK_F3 : key = GLUT_KEY_F3; break;
          case VK_F4 : key = GLUT_KEY_F4; break;
          case VK_F5 : key = GLUT_KEY_F5; break;
          case VK_F6 : key = GLUT_KEY_F6; break;
          case VK_F7 : key = GLUT_KEY_F7; break;
          case VK_F8 : key = GLUT_KEY_F8; break;
          case VK_F9 : key = GLUT_KEY_F9; break;
          case VK_F10: key = GLUT_KEY_F10;break;
          case VK_F11: key = GLUT_KEY_F11; break;
          case VK_F12: key = GLUT_KEY_F12; break;
          case VK_ESC:   key = -1; break;  /* Character codes */
          case VK_SPACE: key = -1; break;
          case VK_TAB:   key = -1; break;
         }
         if(!key)
         {     break; /* Key Not implemented  */
         }
         if(key > 0)
         {   if (!window->special)  /* ­¥ ãáâ ­®¢«¥­® ®¡à ¡®â稪  */
                             break;

               WinQueryPointerPos(HWND_DESKTOP,&point);
               ScreenToClient(window->win, &point);
               __glutSetWindow(window);
               __glutModifierMask = 0;
               if(WinGetKeyState(HWND_DESKTOP,VK_SHIFT) & 0x8000)   /*  high order bit is on */
                          __glutModifierMask |= ShiftMask;
               if(WinGetKeyState(HWND_DESKTOP,VK_CTRL) & 0x8000)
                          __glutModifierMask |= ControlMask;
               if(WinGetKeyState(HWND_DESKTOP,VK_MENU) & 0x8000)
                          __glutModifierMask |= Mod1Mask;
               window->special(key, point.x, point.y);
               __glutModifierMask = (unsigned int) ~0;
               return 0;
         }

   }
/////////////////////////////////////////////////////
    /* If  we are ignoring auto repeated key strokes for the window, bail. */
    if (window->ignoreKeyRepeat && (CHAR3FROMMP(mp1)) )
                                                   break;
     if(!((unsigned char)SHORT1FROMMP(mp2))  )  /* ¨£­®p¨p㥬 ­¥á¨¬¢®«ì­ë¥ ª®¤ë */
                                            break;
    if (window->keyboard) {
       WinQueryPointerPos(HWND_DESKTOP,&point);

      ScreenToClient(window->win, &point);
      __glutSetWindow(window);
      __glutModifierMask = 0;
      if(WinGetKeyState(HWND_DESKTOP,VK_SHIFT) & 0x8000)   /*  high order bit is on */
           __glutModifierMask |= ShiftMask;
      if(WinGetKeyState(HWND_DESKTOP,VK_CTRL) & 0x8000)
           __glutModifierMask |= ControlMask;
      if(WinGetKeyState(HWND_DESKTOP,VK_MENU) & 0x8000)
           __glutModifierMask |= Mod1Mask;
      window->keyboard((unsigned char)SHORT1FROMMP(mp2), point.x, point.y);
      __glutModifierMask = (unsigned int) ~0;
    }
    return 0;
  } /* endof case WM_CHAR: */
////////////////////////////////////////////////
  case WM_BUTTON1DOWN:
    button = GLUT_LEFT_BUTTON;
  case WM_BUTTON3DOWN:
    if (button < 0)
      button = GLUT_MIDDLE_BUTTON;
  case WM_BUTTON2DOWN:
    if (button < 0)
      button = GLUT_RIGHT_BUTTON;
    {  POINTS psh;
       psh = *((POINTS *)&mp1);
       point.x = psh.x;
       point.y = psh.y;
    }
    /* finish the menu if we get a button down message (user must have
       cancelled the menu). */
    if (__glutMappedMenu) {
      /* TODO: take this out once the menu on middle mouse stuff works
        properly. */
      if (button == GLUT_MIDDLE_BUTTON)
       return 0;
 /* get current mouse pointer position */
//      WinQueryPointerPos(HWND_DESKTOP,&point);
 /* map from desktop to client window */
//      WinMapWindowPoints(HWND_DESKTOP, hwnd, &point, 1);
      __glutItemSelected = NULL;
      __glutFinishMenu(hwnd, point.x, point.y);
      return 0;
    }
    window = __glutGetWindow(hwnd);
    if (window) {
      window->buttonDownState = button+1;
      menu = __glutGetMenuByNum(window->menu[button]);
      if (menu) {
//todo
//   __glutMenuButton = button == GLUT_RIGHT_BUTTON ? TPM_RIGHTBUTTON :
//                           button == GLUT_LEFT_BUTTON  ? TPM_LEFTBUTTON :
//                           0x0001;
//   __glutStartMenu(menu, window, point.x, point.y, x, y);
      } else if (window->mouse) {

       __glutSetWindow(window);
       __glutModifierMask = 0;
       if (WinGetKeyState(HWND_DESKTOP,VK_SHIFT) & 0x8000)  /* < 0 = high order bit is on. */
            __glutModifierMask |= ShiftMask;
       if (WinGetKeyState(HWND_DESKTOP,VK_CTRL) & 0x8000)
            __glutModifierMask |= ControlMask;
       if (WinGetKeyState(HWND_DESKTOP,VK_MENU) & 0x8000)
            __glutModifierMask |= Mod1Mask;
      window->mouse(button, GLUT_DOWN, point.x, point.y);
      __glutModifierMask = (unsigned int)~0;
      } else {
   /* Stray mouse events.  Ignore. */
      }
    }
    return 0;

    break;
/********************************************/
  case WM_BUTTON1UP:
    button = GLUT_LEFT_BUTTON;
  case WM_BUTTON3UP:
    if (button < 0)
      button = GLUT_MIDDLE_BUTTON;
  case WM_BUTTON2UP:
    if (button < 0)
      button = GLUT_RIGHT_BUTTON;
    {  POINTS psh;
       psh = *((POINTS *)&mp1);
       point.x = psh.x;
       point.y = psh.y;
    }
    /* Bail out if we're processing a menu. */
    /* Bail out = ¢ë¡à®á¨âìáï á ¯ à èã⮬   */
    if (__glutMappedMenu) {
      WinQueryPointerPos(HWND_DESKTOP,&point);
      WinMapWindowPoints(HWND_DESKTOP, hwnd, &point, 1);
      /* if we're getting the middle button up signal, then something
        on the menu was selected. */
      if (button == GLUT_MIDDLE_BUTTON) {
       return 0;
       /* For some reason, the code below always returns -1 even
          though the point IS IN THE ITEM!  Therefore, just bail out if
          we get a middle mouse up.  The user must select using the
          left mouse button.  Stupid Win32. */
#if 0
       int item = MenuItemFromPoint(hwnd, __glutHMenu, point);
       if (item != -1)
         __glutItemSelected = (GLUTmenuItem*)GetMenuItemID(__glutHMenu, item);
       else
         __glutItemSelected = NULL;
       __glutFinishMenu(hwnd, point.x, point.y);
#endif
      } else {
       __glutItemSelected = NULL;
       __glutFinishMenu(hwnd, point.x, point.y);
      }
      return 0;
    }

    window = __glutGetWindow(hwnd);
    if(window)
           window->buttonDownState = 0;

    if (window && window->mouse) {
      __glutSetWindow(window);
      __glutModifierMask = 0;
      if (WinGetKeyState(HWND_DESKTOP,VK_SHIFT) & 0x8000)   /* < 0 = high order bit is on */
                          __glutModifierMask |= ShiftMask;
      if (WinGetKeyState(HWND_DESKTOP,VK_CTRL) & 0x8000)
   __glutModifierMask |= ControlMask;
      if (WinGetKeyState(HWND_DESKTOP,VK_MENU) & 0x8000)
   __glutModifierMask |= Mod1Mask;
      window->mouse(button, GLUT_UP, point.x, point.y);

      __glutModifierMask = (unsigned int)~0;
    } else {
      /* Window might have been destroyed and all the
    events for the window may not yet be received. */
    }
    return 0;


    break;
//////////////////////////////////////////////////
  case WM_COMMAND:
    window = __glutGetWindow(hwnd);
    if (window)
    {   if (window->wm_command)
            window->wm_command(hwnd,mp1,mp2);
    }
    break;

  case WM_MOUSEMOVE:
    if (!__glutMappedMenu) {
      window = __glutGetWindow(hwnd);
      if (window) {
          /* If motion function registered _and_ buttons held *
             down, call motion function...  */
          {  POINTS psh;
             psh = *((POINTS *)&mp1);
             point.x = psh.x;
             point.y = psh.y;
          }

         if (window->motion && window->buttonDownState) {
           __glutSetWindow(window);
           window->motion(point.x, point.y);
         }
   /* If passive motion function registered _and_
      buttons not held down, call passive motion
      function...  */
         else if (window->passive && !window->buttonDownState) {
           __glutSetWindow(window);
           window->passive(point.x, point.y);
         }
      }
    } else {
      /* Motion events are thrown away when a pop up menu is
    active. */
    }
    return 0;


      default:
 /* For all other messages, let the default window procedure process them. */
       return ( WinDefWindowProc( hwnd, msg, mp1, mp2 ) );

   } //endof switch( msg )
   return ( WinDefWindowProc( hwnd, msg, mp1, mp2 ) );
//   return NULL;
}

void APIENTRY glutCommandFunc(GLUTcommandCB Func)
{
extern GLUTwindow *__glutCurrentWindow;
    __glutCurrentWindow->wm_command = Func;
}




void
updateWindowState(GLUTwindow *window, int visState)
{
  GLUTwindow* child;

  /* XXX shownState and visState are the same in Win32. */
  window->shownState = visState;
  if (visState != window->visState) {
    if (window->windowStatus) {
      window->visState = visState;
      __glutSetWindow(window);
      window->windowStatus(visState);
    }
  }
  /* Since Win32 only sends an activate for the toplevel window,
     update the visibility for all the child windows. */
  child = window->children;
  while (child) {
    updateWindowState(child, visState);
    child = child->siblings;
  }
}

#if POKA

LONG WINAPI
__glutWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
  POINT         point;                 /* Point structure. */
  PAINTSTRUCT   ps;                    /* Paint structure. */
  LPMINMAXINFO  minmax;                        /* Minimum/maximum info structure. */
  GLUTwindow*   window;                        /* GLUT window associated with message. */
  GLUTmenu*     menu;                  /* GLUT menu associated with message. */
  int x, y, width, height, key;
  int button = -1;

  switch(msg) {
  case WM_CREATE:
    return 0;
  case WM_CLOSE:
    PostQuitMessage(0);
    return 0;
#if 0
  case WM_DESTROY:
    /* XXX NVidia's NT OpenGL can have problems closing down
       its OpenGL internal data structures if we just allow
       the process to terminate without unbinding and deleting
       the windows context.  Apparently, DirectDraw unloads
       before OPENGL32.DLL in the close down sequence, but
       NVidia's NT OpenGL needs DirectDraw to close down its
       data structures. */
    window = __glutGetWindow(hwnd);
    if (window) {
      if (window->ctx) {
        wglMakeCurrent(NULL, NULL);
        wglDeleteContext(window->ctx);
      }
    }
    return 0;
#endif

  case WM_SYSKEYUP:
  case WM_KEYUP:
    window = __glutGetWindow(hwnd);
    if (!window) {
      break;
    }
    /* Win32 is dumb and sends these messages only to the parent
       window.  Therefore, find out if we're in a child window and
       call the child windows keyboard callback if we are. */
    if (window->parent) {
      GetCursorPos(&point);
      ScreenToClient(hwnd, &point);
      hwnd = ChildWindowFromPoint(hwnd, point);
      window = __glutGetWindow(hwnd);
    }
    if (window->specialUp || window->keyboardUp) {
      GetCursorPos(&point);
      ScreenToClient(window->win, &point);
      __glutSetWindow(window);
      __glutModifierMask = 0;
      if (GetKeyState(VK_SHIFT) < 0)  /* < 0 = high order bit is on */
       __glutModifierMask |= ShiftMask;
      if (GetKeyState(VK_SHIFT) < 0)  /* < 0 = high order bit is on */
       __glutModifierMask |= ControlMask;
      if (GetKeyState(VK_MENU) < 0)
       __glutModifierMask |= Mod1Mask;
      switch (wParam) {
      /* *INDENT-OFF* */
      case VK_F1:     key = GLUT_KEY_F1; break;
      case VK_F2:     key = GLUT_KEY_F2; break;
      case VK_F3:     key = GLUT_KEY_F3; break;
      case VK_F4:     key = GLUT_KEY_F4; break;
      case VK_F5:     key = GLUT_KEY_F5; break;
      case VK_F6:     key = GLUT_KEY_F6; break;
      case VK_F7:     key = GLUT_KEY_F7; break;
      case VK_F8:     key = GLUT_KEY_F8; break;
      case VK_F9:     key = GLUT_KEY_F9; break;
      case VK_F10:    key = GLUT_KEY_F10; break;
      case VK_F11:    key = GLUT_KEY_F11; break;
      case VK_F12:    key = GLUT_KEY_F12; break;
      case VK_LEFT:   key = GLUT_KEY_LEFT; break;
      case VK_UP:     key = GLUT_KEY_UP; break;
      case VK_RIGHT:  key = GLUT_KEY_RIGHT; break;
      case VK_DOWN:   key = GLUT_KEY_DOWN; break;
      case VK_PRIOR:  key = GLUT_KEY_PAGE_UP; break;
      case VK_NEXT:   key = GLUT_KEY_PAGE_DOWN; break;
      case VK_HOME:   key = GLUT_KEY_HOME; break;
      case VK_END:    key = GLUT_KEY_END; break;
      case VK_INSERT: key = GLUT_KEY_INSERT; break;
      case VK_DELETE:
        /* Delete is an ASCII character. */
       if (window->keyboardUp) {
         window->keyboardUp((unsigned char) 127, point.x, point.y);
       }
       return 0;
      /* *INDENT-ON* */
      default:
       if (window->keyboardUp) {
         key = MapVirtualKey(wParam, 2);  /* Map to ASCII. */
         if (isascii(key) && (key != 0)) {

           /* XXX Attempt to determine modified ASCII character
              is quite incomplete.  Digits, symbols, CapsLock,
              Ctrl, and numeric keypad are all ignored.  Fix this. */

           if (!(__glutModifierMask & ShiftMask))
             key = tolower(key);
           window->keyboardUp((unsigned char) key, point.x, point.y);
          }
        }
       __glutModifierMask = (unsigned int) ~0;
       return 0;
      }
      if (window->specialUp) {
        window->specialUp(key, point.x, point.y);
      }
      __glutModifierMask = (unsigned int) ~0;
    }
    return 0;

  case WM_SYSCHAR:
  case WM_CHAR:
    window = __glutGetWindow(hwnd);
    if (!window) {
      break;
    }

    /* Bit 30 of lParam is set if key already held down.  If
       we are ignoring auto repeated key strokes for the window, bail. */
    if (window->ignoreKeyRepeat && (lParam & (1 << 30)) ) {
      break;
    }

    /* Win32 is dumb and sends these messages only to the parent
       window.  Therefore, find out if we're in a child window and
       call the child windows keyboard callback if we are. */
    if (window->parent) {
       GetCursorPos(&point);
       ScreenToClient(hwnd, &point);
       hwnd = ChildWindowFromPoint(hwnd, point);
       window = __glutGetWindow(hwnd);
    }
    if (window->keyboard) {
      GetCursorPos(&point);
      ScreenToClient(window->win, &point);
      __glutSetWindow(window);
      __glutModifierMask = 0;
      if (GetKeyState(VK_SHIFT) < 0)   /* < 0 = high order bit is on */
       __glutModifierMask |= ShiftMask;
      if (GetKeyState(VK_CONTROL) < 0)
       __glutModifierMask |= ControlMask;
      if (GetKeyState(VK_MENU) < 0)
       __glutModifierMask |= Mod1Mask;
      window->keyboard((unsigned char)wParam, point.x, point.y);
      __glutModifierMask = (unsigned int) ~0;
    }
    return 0;

  case WM_SYSKEYDOWN:
  case WM_KEYDOWN:
    window = __glutGetWindow(hwnd);
    if (!window) {
      break;
    }

    /* Bit 30 of lParam is set if key already held down.  If
       we are ignoring auto repeated key strokes for the window, bail. */
    if (window->ignoreKeyRepeat && (lParam & (1 << 30)) ) {
      break;
    }

    /* Win32 is dumb and sends these messages only to the parent
       window.  Therefore, find out if we're in a child window and
       call the child windows keyboard callback if we are. */
    if (window->parent) {
       GetCursorPos(&point);
       ScreenToClient(hwnd, &point);
       hwnd = ChildWindowFromPoint(hwnd, point);
       window = __glutGetWindow(hwnd);
    }
    if (window->special) {
      switch (wParam) {
       /* *INDENT-OFF* */
       /* function keys */
       case VK_F1:     key = GLUT_KEY_F1; break;
       case VK_F2:     key = GLUT_KEY_F2; break;
       case VK_F3:     key = GLUT_KEY_F3; break;
       case VK_F4:     key = GLUT_KEY_F4; break;
       case VK_F5:     key = GLUT_KEY_F5; break;
       case VK_F6:     key = GLUT_KEY_F6; break;
       case VK_F7:     key = GLUT_KEY_F7; break;
       case VK_F8:     key = GLUT_KEY_F8; break;
       case VK_F9:     key = GLUT_KEY_F9; break;
       case VK_F10:    key = GLUT_KEY_F10; break;
       case VK_F11:    key = GLUT_KEY_F11; break;
       case VK_F12:    key = GLUT_KEY_F12; break;
       /* directional keys */
       case VK_LEFT:   key = GLUT_KEY_LEFT; break;
       case VK_UP:     key = GLUT_KEY_UP; break;
       case VK_RIGHT:  key = GLUT_KEY_RIGHT; break;
       case VK_DOWN:   key = GLUT_KEY_DOWN; break;
       /* *INDENT-ON* */

       case VK_PRIOR:
         /* VK_PRIOR is Win32's Page Up */
         key = GLUT_KEY_PAGE_UP;
         break;
       case VK_NEXT:
         /* VK_NEXT is Win32's Page Down */
         key = GLUT_KEY_PAGE_DOWN;
         break;
       case VK_HOME:
         key = GLUT_KEY_HOME;
         break;
       case VK_END:
         key = GLUT_KEY_END;
         break;
       case VK_INSERT:
         key = GLUT_KEY_INSERT;
         break;
        case VK_DELETE:
         goto handleDelete;
       default:
         goto defproc;
      }
      GetCursorPos(&point);
      ScreenToClient(window->win, &point);
      __glutSetWindow(window);
      __glutModifierMask = 0;
      if (GetKeyState(VK_SHIFT) < 0)   /* < 0 = high order bit is on */
       __glutModifierMask |= ShiftMask;
      if (GetKeyState(VK_CONTROL) < 0)
       __glutModifierMask |= ControlMask;
      if (GetKeyState(VK_MENU) < 0)
       __glutModifierMask |= Mod1Mask;
      window->special(key, point.x, point.y);
      __glutModifierMask = (unsigned int) ~0;
    } else if (window->keyboard) {
      /* Specially handle any keys that match ASCII values but
         do not generate Windows WM_SYSCHAR or WM_CHAR messages. */
      switch (wParam) {
      case VK_DELETE:
      handleDelete:
        /* Delete is an ASCII character. */
        GetCursorPos(&point);
        ScreenToClient(window->win, &point);
        __glutSetWindow(window);
        __glutModifierMask = 0;
        if (GetKeyState(VK_SHIFT) < 0) /* < 0 = high order bit is on */
          __glutModifierMask |= ShiftMask;
        if (GetKeyState(VK_CONTROL) < 0)
          __glutModifierMask |= ControlMask;
        if (GetKeyState(VK_MENU) < 0)
          __glutModifierMask |= Mod1Mask;
       window->keyboard((unsigned char) 127, point.x, point.y);
        __glutModifierMask = (unsigned int) ~0;
       return 0;
      default:
        /* Let the following WM_SYSCHAR or WM_CHAR message generate
          the keyboard callback. */
        break;
      }
    }
    return 0;

  case WM_LBUTTONDOWN:
    button = GLUT_LEFT_BUTTON;
  case WM_MBUTTONDOWN:
    if (button < 0)
      button = GLUT_MIDDLE_BUTTON;
  case WM_RBUTTONDOWN:
    if (button < 0)
      button = GLUT_RIGHT_BUTTON;

    /* finish the menu if we get a button down message (user must have
       cancelled the menu). */
    if (__glutMappedMenu) {
      /* TODO: take this out once the menu on middle mouse stuff works
        properly. */
      if (button == GLUT_MIDDLE_BUTTON)
       return 0;
      GetCursorPos(&point);
      ScreenToClient(hwnd, &point);
      __glutItemSelected = NULL;
      __glutFinishMenu(hwnd, point.x, point.y);
      return 0;
    }

    /* set the capture so we can get mouse events outside the window */
    SetCapture(hwnd);

    /* Win32 doesn't return the same numbers as X does when the mouse
       goes beyond the upper or left side of the window.  roll the
       Win32's 0..2^16 pointer co-ord range to 0 +/- 2^15. */
    x = LOWORD(lParam);
    y = HIWORD(lParam);
    if(x & 1 << 15) x -= (1 << 16);
    if(y & 1 << 15) y -= (1 << 16);

    window = __glutGetWindow(hwnd);
    if (window) {
      menu = __glutGetMenuByNum(window->menu[button]);
      if (menu) {
       point.x = LOWORD(lParam); point.y = HIWORD(lParam);
       ClientToScreen(window->win, &point);
       __glutMenuButton = button == GLUT_RIGHT_BUTTON ? TPM_RIGHTBUTTON :
                           button == GLUT_LEFT_BUTTON  ? TPM_LEFTBUTTON :
                           0x0001;
       __glutStartMenu(menu, window, point.x, point.y, x, y);
      } else if (window->mouse) {

        __glutSetWindow(window);
       __glutModifierMask = 0;
       if (GetKeyState(VK_SHIFT) < 0)  /* < 0 = high order bit is on. */
         __glutModifierMask |= ShiftMask;
       if (GetKeyState(VK_CONTROL) < 0)
         __glutModifierMask |= ControlMask;
       if (GetKeyState(VK_MENU) < 0)
         __glutModifierMask |= Mod1Mask;
       window->mouse(button, GLUT_DOWN, x, y);
       __glutModifierMask = (unsigned int)~0;
      } else {
       /* Stray mouse events.  Ignore. */
      }
    }
    return 0;

  case WM_LBUTTONUP:
    button = GLUT_LEFT_BUTTON;
  case WM_MBUTTONUP:
    if (button < 0)
      button = GLUT_MIDDLE_BUTTON;
  case WM_RBUTTONUP:
    if (button < 0)
      button = GLUT_RIGHT_BUTTON;

    /* Bail out if we're processing a menu. */
    if (__glutMappedMenu) {
      GetCursorPos(&point);
      ScreenToClient(hwnd, &point);
      /* if we're getting the middle button up signal, then something
        on the menu was selected. */
      if (button == GLUT_MIDDLE_BUTTON) {
       return 0;
       /* For some reason, the code below always returns -1 even
          though the point IS IN THE ITEM!  Therefore, just bail out if
          we get a middle mouse up.  The user must select using the
          left mouse button.  Stupid Win32. */
#if 0
       int item = MenuItemFromPoint(hwnd, __glutHMenu, point);
       if (item != -1)
         __glutItemSelected = (GLUTmenuItem*)GetMenuItemID(__glutHMenu, item);
       else
         __glutItemSelected = NULL;
       __glutFinishMenu(hwnd, point.x, point.y);
#endif
      } else {
       __glutItemSelected = NULL;
       __glutFinishMenu(hwnd, point.x, point.y);
      }
      return 0;
    }

    /* Release the mouse capture. */
    ReleaseCapture();

    window = __glutGetWindow(hwnd);
    if (window && window->mouse) {
      /* Win32 doesn't return the same numbers as X does when the
        mouse goes beyond the upper or left side of the window.  roll
        the Win32's 0..2^16 pointer co-ord range to 0 +/- 2^15. */
      x = LOWORD(lParam);
      y = HIWORD(lParam);
      if(x & 1 << 15) x -= (1 << 16);
      if(y & 1 << 15) y -= (1 << 16);

      __glutSetWindow(window);
      __glutModifierMask = 0;
      if (GetKeyState(VK_SHIFT) < 0)   /* < 0 = high order bit is on */
       __glutModifierMask |= ShiftMask;
      if (GetKeyState(VK_CONTROL) < 0)
       __glutModifierMask |= ControlMask;
      if (GetKeyState(VK_MENU) < 0)
       __glutModifierMask |= Mod1Mask;
      window->mouse(button, GLUT_UP, x, y);
      __glutModifierMask = (unsigned int)~0;
    } else {
      /* Window might have been destroyed and all the
        events for the window may not yet be received. */
    }
    return 0;

  case WM_ENTERMENULOOP:
    /* KLUDGE: create a timer that fires every 100 ms when we start a
       menu so that we can still process the idle & timer events (that
       way, the timers will fire during a menu pick and so will the
       idle func. */
    SetTimer(hwnd, 1, 1, NULL);
    return 0;

  case WM_TIMER:
#if 0
    /* If the timer id is 2, then this is the timer that is set up in
       the main glut message processing loop, and we don't want to do
       anything but acknowledge that we got it.  It is used to prevent
       CPU spiking when an idle function is installed. */
    if (wParam == 2)
      return 0;
#endif

    /* only worry about the idle function and the timeouts, since
       these are the only events we expect to process during
       processing of a menu. */
    /* we no longer process the idle functions (as outlined in the
       README), since drawing can't be done until the menu has
       finished...it's pretty lame when the animation goes on, but
       doesn't update, so you get this weird jerkiness. */
#if 0
     if (__glutIdleFunc)
       __glutIdleFunc();
#endif
    if (__glutTimerList)
      handleTimeouts();
    return 0;

  case WM_EXITMENULOOP:
    /* nuke the above created timer...we don't need it anymore, since
       the menu is gone now. */
    KillTimer(hwnd, 1);
    return 0;

  case WM_MENUSELECT:
    if (lParam != 0)
      __glutHMenu = (HMENU)lParam;
    return 0;

  case WM_COMMAND:
    if (__glutMappedMenu) {
      if (GetSubMenu(__glutHMenu, LOWORD(wParam)))
       __glutItemSelected = NULL;
      else
       __glutItemSelected =
         __glutGetUniqueMenuItem(__glutMappedMenu, LOWORD(wParam));
      GetCursorPos(&point);
      ScreenToClient(hwnd, &point);
      __glutFinishMenu(hwnd, point.x, point.y);
    }
    return 0;

  case WM_MOUSEMOVE:
    if (!__glutMappedMenu) {
      window = __glutGetWindow(hwnd);
      if (window) {
          /* If motion function registered _and_ buttons held *
             down, call motion function...  */
       x = LOWORD(lParam);
       y = HIWORD(lParam);

       /* Win32 doesn't return the same numbers as X does when the
          mouse goes beyond the upper or left side of the window.
          roll the Win32's 0..2^16 pointer co-ord range to 0..+/-2^15. */
       if(x & 1 << 15) x -= (1 << 16);
       if(y & 1 << 15) y -= (1 << 16);

       if (window->motion && wParam &
            (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)) {
         __glutSetWindow(window);
         window->motion(x, y);
       }
       /* If passive motion function registered _and_
          buttons not held down, call passive motion
          function...  */
       else if (window->passive &&
                ((wParam &
                  (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)) ==
                 0)) {
         __glutSetWindow(window);
         window->passive(x, y);
       }
      }
    } else {
      /* Motion events are thrown away when a pop up menu is
        active. */
    }
    return 0;

  case WM_GETMINMAXINFO:
    /* this voodoo is brought to you by Win32 (again).  It allows the
       window to be bigger than the screen, and smaller than 100x100
       (although it doesn't seem to help the y minimum). */
    minmax = (LPMINMAXINFO)lParam;
    minmax->ptMaxSize.x = __glutScreenWidth;
    minmax->ptMaxSize.y = __glutScreenHeight;
    minmax->ptMinTrackSize.x = 0;
    minmax->ptMinTrackSize.y = 0;
    minmax->ptMaxTrackSize.x = __glutScreenWidth +
      GetSystemMetrics(SM_CXSIZE) * 2;
    minmax->ptMaxTrackSize.y = __glutScreenHeight +
      GetSystemMetrics(SM_CXSIZE) * 2 + GetSystemMetrics(SM_CYCAPTION);
    return 0;

  case WM_SIZE:
    window = __glutGetWindow(hwnd);
    if (window) {
      width = LOWORD(lParam);
      height = HIWORD(lParam);
      if (width != window->width || height != window->height) {
#if 0  /* Win32 GLUT does not support overlays for now. */
       if (window->overlay) {
         XResizeWindow(__glutDisplay, window->overlay->win, width, height);
       }
#endif
       window->width = width;
       window->height = height;
       __glutSetWindow(window);
       /* Do not execute OpenGL out of sequence with respect
          to the SetWindowPos request! */
       GdiFlush();
       window->reshape(width, height);
       window->forceReshape = FALSE;
       /* A reshape should be considered like posting a
          repair request. */
       __glutPostRedisplay(window, GLUT_REPAIR_WORK);
      }
    }
    return 0;

  case WM_SETCURSOR:
    /* If the cursor is not in the client area, then we want to send
       this message to the default window procedure ('cause its
       probably in the border or title, and we don't handle that
       cursor.  otherwise, set our cursor.  Win32 makes us set the
       cursor every time the mouse moves (DUMB!). */
    if(LOWORD(lParam) != HTCLIENT) {
      goto defproc;
    }
    window = __glutGetWindow(hwnd);
    if (window) {
      __glutSetCursor(window);
    }
    /* TODO: check out the info in DevStudio on WM_SETCURSOR in the
       DefaultAction section. */
    return 1;

  case WM_SETFOCUS:
    window = __glutGetWindow(hwnd);
    if (window) {
      window->entryState = WM_SETFOCUS;
      if (window->entry) {
       __glutSetWindow(window);
       window->entry(GLUT_ENTERED);
       /* XXX Generation of fake passive notify?  See how much
          work the X11 code does to support fake passive notify
          callbacks. */
      }
      if (window->joystick && __glutCurrentWindow) {
        if (__glutCurrentWindow->joyPollInterval > 0) {
         MMRESULT result;

         /* Because Win32 will only let one window capture the
            joystick at a time, we must capture it when we get the
            focus and release it when we lose the focus. */
         result = joySetCapture(__glutCurrentWindow->win,
           JOYSTICKID1, 0, TRUE);
         if (result != JOYERR_NOERROR) {
           return 0;
          }
         (void) joySetThreshold(JOYSTICKID1,
            __glutCurrentWindow->joyPollInterval);
        }
      }
    }
    return 0;

  case WM_KILLFOCUS:
    window = __glutGetWindow(hwnd);
    if (window) {
      window->entryState = WM_KILLFOCUS;
      if (window->entry) {
       __glutSetWindow(window);
       window->entry(GLUT_LEFT);
      }
      if (window->joystick && __glutCurrentWindow) {
       if (__glutCurrentWindow->joyPollInterval > 0) {
         /* Because Win32 will only let one window capture the
            joystick at a time, we must capture it when we get the
            focus and release it when we lose the focus. */
           (void) joyReleaseCapture(JOYSTICKID1);
        }
      }
    }
    return 0;
  case WM_ACTIVATE:
    window = __glutGetWindow(hwnd);
    /* Make sure we re-select the correct palette if needed. */
    if (LOWORD(wParam)) {
      PostMessage(hwnd, WM_PALETTECHANGED, 0, 0);
    }
    if (window) {
      int visState;

      /* HIWORD(wParam) is the minimized flag. */
      visState = !HIWORD(wParam);
      updateWindowState(window, visState);
    }
    return 0;

  /* Colour Palette Management */
  case WM_PALETTECHANGED:
    if (hwnd == (HWND)wParam) {
      /* Don't respond to the message that we sent! */
      break;
    }
    /* fall through to WM_QUERYNEWPALETTE */

  case WM_QUERYNEWPALETTE:
    window = __glutGetWindow(hwnd);
    if (window && window->colormap) {
      UnrealizeObject(window->colormap->cmap);
      SelectPalette(window->hdc, window->colormap->cmap, FALSE);
      RealizePalette(window->hdc);
      return TRUE;
    }
    return FALSE;

  case MM_JOY1MOVE:
  case MM_JOY1ZMOVE:
    window = __glutGetWindow(hwnd);
    if (window->joystick) {
      JOYINFOEX jix;
      int x, y, z;

      /* Because WIN32 only supports messages for X, Y, and Z
         translations, we must poll for the rest */
      jix.dwSize = sizeof(jix);
      jix.dwFlags = JOY_RETURNALL;
      joyGetPosEx(JOYSTICKID1,&jix);

#define SCALE(v)  ((int) ((v - 32767)/32.768))

      /* Convert to integer for scaling. */
      x = jix.dwXpos;
      y = jix.dwYpos;
      z = jix.dwZpos;
      window->joystick(jix.dwButtons, SCALE(x), SCALE(y), SCALE(z));

      return TRUE;
    }
    return FALSE;
  case MM_JOY1BUTTONDOWN:
  case MM_JOY1BUTTONUP:
    window = __glutGetWindow(hwnd);
    if (window->joystick) {
      JOYINFOEX jix;

      /* Because WIN32 only supports messages for X, Y, and Z
         translations, we must poll for the rest */
      jix.dwSize = sizeof(jix);
      jix.dwFlags = JOY_RETURNALL;
      joyGetPosEx(JOYSTICKID1,&jix);

      return TRUE;
    }
    return FALSE;

#if 0
  /* Miscellaneous messages (don't really need to enumerate them,
     but it's good to know what you're not getting sometimes). */
  case WM_DISPLAYCHANGE:
    break;
  case WM_NCHITTEST:
    /* This event is generated by every mouse move event. */
    goto defproc;
  case WM_NCMOUSEMOVE:
    goto defproc;
  case WM_NCACTIVATE:
    goto defproc;
  case WM_NCPAINT:
    goto defproc;
  case WM_NCCALCSIZE:
    goto defproc;
  case WM_NCCREATE:
    goto defproc;
  case WM_NCDESTROY:
    goto defproc;
  case WM_NCLBUTTONDOWN:
    goto defproc;
  case WM_SETTEXT:
    goto defproc;
  case WM_GETTEXT:
    goto defproc;
  case WM_ACTIVATEAPP:
    goto defproc;
  case WM_GETICON:
    goto defproc;
  case WM_ERASEBKGND:
    goto defproc;
  case WM_WINDOWPOSCHANGING:
    goto defproc;
  case WM_WINDOWPOSCHANGED:
    goto defproc;
  case WM_MOUSEACTIVATE:
    goto defproc;
  case WM_SHOWWINDOW:
    goto defproc;
  case WM_MOVING:
    goto defproc;
  case WM_MOVE:
    goto defproc;
  case WM_KEYUP:
    goto defproc;
  case WM_CAPTURECHANGED:
    goto defproc;
  case WM_SYSCOMMAND:
    goto defproc;
  case WM_ENTERSIZEMOVE:
    goto defproc;
  case WM_ENTERIDLE:
    goto defproc;
#endif

  default:
    goto defproc;
  }

defproc:
  return DefWindowProc(hwnd, msg, wParam, lParam);
}

#endif

#if defined(__OS2PM__)
Bool __glutSetWindowText(Window window, char *text)
{
  return WinSetWindowText(window, (PCSZ)text);

}

#endif