home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / useful / dev / c / cmanual / intuition / idcmp / example5.c < prev    next >
C/C++ Source or Header  |  1993-10-12  |  7KB  |  198 lines

  1. /***********************************************************/
  2. /*                                                         */
  3. /* Amiga C Encyclopedia (ACE) V3.0      Amiga C Club (ACC) */
  4. /* -------------------------------      ------------------ */
  5. /*                                                         */
  6. /* Book:    ACM Intuition               Amiga C Club       */
  7. /* Chapter: IDCMP                       Tulevagen 22       */
  8. /* File:    Example5.c                  181 41  LIDINGO    */
  9. /* Author:  Anders Bjerin               SWEDEN             */
  10. /* Date:    92-05-01                                       */
  11. /* Version: 1.10                                           */
  12. /*                                                         */
  13. /*   Copyright 1992, Anders Bjerin - Amiga C Club (ACC)    */
  14. /*                                                         */
  15. /* Registered members may use this program freely in their */
  16. /*     own commercial/noncommercial programs/articles.     */
  17. /*                                                         */
  18. /***********************************************************/
  19.  
  20. /* This program explains how to use the IDCMP flag RAWKEY. */
  21.  
  22.  
  23.  
  24. #include <intuition/intuition.h>
  25.  
  26.  
  27.  
  28. struct IntuitionBase *IntuitionBase;
  29.  
  30.  
  31.  
  32. /* Declare a pointer to a Window structure: */ 
  33. struct Window *my_window;
  34.  
  35. /* Declare and initialize your NewWindow structure: */
  36. struct NewWindow my_new_window=
  37. {
  38.   50,             /* LeftEdge    x position of the window. */
  39.   25,             /* TopEdge     y positio of the window. */
  40.   320,            /* Width       320 pixels wide. */
  41.   100,            /* Height      100 lines high. */
  42.   0,              /* DetailPen   Text should be drawn with colour reg. 0 */
  43.   1,              /* BlockPen    Blocks should be drawn with colour r. 1 */
  44.   CLOSEWINDOW|    /* IDCMPFlags  We will recieve a message when the user */
  45.                   /*             selects the Close window gad.           */
  46.  
  47.   RAWKEY,         /*             We will also recieve a message whenever */
  48.                   /*             the user presses/releases a key.        */
  49.  
  50.   SMART_REFRESH|  /* Flags       Intuition should refresh the window. */
  51.   WINDOWCLOSE|    /*             Close Gadget. */
  52.   WINDOWDRAG|     /*             Drag gadget. */
  53.   WINDOWDEPTH|    /*             Depth arrange Gadgets. */
  54.   WINDOWSIZING|   /*             Sizing Gadget. */
  55.   ACTIVATE,       /*             The window should be Active when opened. */
  56.   NULL,           /* FirstGadget No gadgets connected to this window. */
  57.   NULL,           /* CheckMark   Use Intuition's default CheckMark. */
  58.   "PRESS MY KEYS",/* Title       Title of the window. */
  59.   NULL,           /* Screen      Connected to the Workbench Screen. */
  60.   NULL,           /* BitMap      No Custom BitMap. */
  61.   100,            /* MinWidth    We will not allow the window to become */
  62.   50,             /* MinHeight   smaller than 100 x 50, and not bigger */
  63.   400,            /* MaxWidth    than 400 x 200. */
  64.   200,            /* MaxHeight */
  65.   WBENCHSCREEN    /* Type        Connected to the Workbench Screen. */
  66. };
  67.  
  68.  
  69.  
  70. /**************************************************************************/
  71. /* Extra information:                                                     */
  72. /* Whenever the user presses/releases a key will we recieve a message.    */
  73. /* The Code part of the message contains the raw (untranslated) keykodes. */
  74. /* (See Appendix * for more information about raw keykodes.) The          */
  75. /* Qualifier field of the message tells us if any qualifier (SHIFT/CTRL   */
  76. /* etc) was also pressed. (See Appendix * for more information about      */
  77. /* qualifiers.                                                            */
  78. /**************************************************************************/
  79.  
  80.  
  81.  
  82. main()
  83. {
  84.   /* Boolean variable used for the while loop: */
  85.   BOOL close_me;
  86.  
  87.   ULONG class;      /* IDCMP flag. */
  88.   USHORT code;      /* Code. */
  89.   USHORT qualifier; /* Qualifier. */
  90.  
  91.   /* Pointer to an IntuiMessage structure: */
  92.   struct IntuiMessage *my_message;
  93.  
  94.  
  95.  
  96.   /* Before we can use Intuition we need to open the Intuition Library: */
  97.   IntuitionBase = (struct IntuitionBase *)
  98.     OpenLibrary( "intuition.library", 0 );
  99.   
  100.   if( IntuitionBase == NULL )
  101.     exit(); /* Could NOT open the Intuition Library! */
  102.  
  103.  
  104.  
  105.   /* We will now try to open the window: */
  106.   my_window = (struct Window *) OpenWindow( &my_new_window );
  107.   
  108.   /* Have we opened the window succesfully? */
  109.   if(my_window == NULL)
  110.   {
  111.     /* Could NOT open the Window! */
  112.     
  113.     /* Close the Intuition Library since we have opened it: */
  114.     CloseLibrary( IntuitionBase );
  115.  
  116.     exit();  
  117.   }
  118.  
  119.  
  120.  
  121.   /* We have opened the window, and everything seems to be OK. */
  122.  
  123.   printf("Press some keys!\n\n");
  124.  
  125.  
  126.  
  127.   close_me = FALSE;
  128.  
  129.   /* Stay in the while loop until the user has selected the Close window */
  130.   /* gadget: */
  131.   while( close_me == FALSE )
  132.   {
  133.     /* Wait until we have recieved a message: */
  134.     Wait( 1 << my_window->UserPort->mp_SigBit );
  135.  
  136.  
  137.     /* As long as we can collect messages successfully we stay in the */
  138.     /* while-loop: */
  139.     while(my_message = (struct IntuiMessage *) GetMsg(my_window->UserPort))
  140.     {
  141.       /* After we have successfully collected the message we can read */
  142.       /* it, and save any important values which we maybe want to check */
  143.       /* later: */
  144.       class = my_message->Class;         /* IDCMP flag. */
  145.       code = my_message->Code;           /* Code. */
  146.       qualifier = my_message->Qualifier; /* Qualifier. */
  147.  
  148.  
  149.       /* After we have read it we reply as fast as possible: */
  150.       /* REMEMBER! Do never try to read a message after you have replied! */
  151.       /* (Some other process has maybe changed it.) */
  152.       ReplyMsg( my_message );
  153.  
  154.  
  155.       /* Check which IDCMP flag was sent: */
  156.       switch( class )
  157.       {
  158.         case CLOSEWINDOW:    /* The user selected the Close window gad. */
  159.                close_me=TRUE;
  160.                break;
  161.  
  162.         case RAWKEY:         /* The user pressed/released a key! */
  163.                /* Print out the raw keycode (both as decimal and hex.): */
  164.                printf("Raw keycode: %6d(d) %6x(h)\n", code, code );
  165.                
  166.                /* Print out the qualifier (both as decimal and hex.): */
  167.                printf("Qualifier:   %6d(d) %6x(h)\n", qualifier, qualifier);
  168.                
  169.                /* This shows how you can check if a SHIFT or CTRL */
  170.                /* qualifier key was also pressed:                 */
  171.                if( qualifier &= IEQUALIFIER_LSHIFT )
  172.                  printf("Left SHIFT button pressed\n");
  173.  
  174.                if( qualifier &= IEQUALIFIER_RSHIFT )
  175.                  printf("Right SHIFT button pressed\n");
  176.                
  177.                if( qualifier &= IEQUALIFIER_CONTROL )
  178.                  printf("CTRL button pressed\n");
  179.  
  180.                printf("\n");
  181.                break;
  182.       }
  183.     }
  184.   }
  185.  
  186.  
  187.  
  188.   /* Close the window: */
  189.   CloseWindow( my_window );
  190.  
  191.  
  192.  
  193.   /* Close the Intuition Library: */
  194.   CloseLibrary( IntuitionBase );
  195.   
  196.   /* THE END */
  197. }
  198.