home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_manual / intuition / requesters / example5.c < prev    next >
C/C++ Source or Header  |  1995-02-27  |  15KB  |  374 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: Requesters                  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 will open a normal window which is connected to the     */
  21. /* Workbench Screen. The window will use all System Gadgets, and will   */
  22. /* close first when the user has selected the System gadget Close       */
  23. /* window. Whenever the user double-clicks on the right mouse button,   */
  24. /* a Double-menue requester is activated. This example also shows how   */
  25. /* to use the IDCMP flags REQSET and REQCLEAR.                          */
  26.  
  27.  
  28.  
  29. #include <intuition/intuition.h>
  30.  
  31.  
  32.  
  33. struct IntuitionBase *IntuitionBase;
  34.  
  35.  
  36.  
  37. /***************/
  38. /* THE GADGET: */
  39. /***************/
  40.  
  41. /* The coordinates for the box: */
  42. SHORT gadget_border_points[]=
  43. {
  44.    0,  0, /* Start at position (0,0) */
  45.   70,  0, /* Draw a line to the right to position (70,0) */
  46.   70, 10, /* Draw a line down to position (70,10) */
  47.    0, 10, /* Draw a line to the right to position (0,10) */
  48.    0,  0  /* Finish of by drawing a line up to position (0,0) */ 
  49. };
  50.  
  51. /* The Border structure: */
  52. struct Border gadget_border=
  53. {
  54.   0, 0,        /* LeftEdge, TopEdge. */
  55.   1,           /* FrontPen, colour register 1. */
  56.   0,           /* BackPen, for the moment unused. */
  57.   JAM1,        /* DrawMode, draw the lines with colour 1. */
  58.   5,           /* Count, 5 pair of coordinates in the array. */
  59.   gadget_border_points, /* XY, pointer to the array with the coord. */
  60.   NULL,        /* NextBorder, no other Border structures are connected. */
  61. };
  62.  
  63. /* The IntuiText structure: */
  64. struct IntuiText gadget_text=
  65. {
  66.   1,         /* FrontPen, colour register 1. */
  67.   0,         /* BackPen, colour register 0. */
  68.   JAM1,      /* DrawMode, draw the characters with colour 1, do not */
  69.              /* change the background. */ 
  70.   4, 2,      /* LeftEdge, TopEdge. */
  71.   NULL,      /* ITextFont, use default font. */
  72.   "PRESS ME",/* IText, the text that will be printed. */
  73.   NULL,      /* NextText, no other IntuiText structures are connected. */
  74. };
  75.  
  76. struct Gadget requester_gadget=
  77. {
  78.   NULL,          /* NextGadget, no more gadgets in the list. */
  79.   40,            /* LeftEdge, 40 pixels out. */
  80.   20,            /* TopEdge, 20 lines down. */
  81.   71,            /* Width, 71 pixels wide. */
  82.   11,            /* Height, 11 pixels lines heigh. */
  83.   GADGHCOMP,     /* Flags, when this gadget is highlighted, the gadget */
  84.                  /* will be rendered in the complement colours. */
  85.                  /* (Colour 0 (00) will be changed to colour 3 (11) */
  86.                  /* (Colour 1 (01)           - " -           2 (10) */
  87.                  /* (Colour 2 (10)           - " -           1 (01) */
  88.                  /* (Colour 3 (11)           - " -           0 (00) */  
  89.   GADGIMMEDIATE| /* Activation, our program will recieve a message when */
  90.   RELVERIFY|     /* the user has selected this gadget, and when the user */
  91.                  /* has released it. */
  92.   ENDGADGET,     /* When the user has selected this gadget, the */
  93.                  /* requester is satisfied, and is deactivated. */
  94.                  /* IMPORTANT! At least one gadget per requester */
  95.                  /* must have the flag ENDGADGET set. If not, the */
  96.                  /* requester would never be deactivated! */
  97.  
  98.   BOOLGADGET|    /* GadgetType, a Boolean gadget which is connected to */
  99.   REQGADGET,     /* a requester. IMPORTANT! Every gadget which is */
  100.                  /* connectd to a requester must have the REQGADGET flsg */
  101.                  /* set in the GadgetType field. */
  102.   (APTR) &gadget_border, /* GadgetRender, a pointer to our Border struc. */
  103.   NULL,          /* SelectRender, NULL since we do not supply the gadget */
  104.                  /* with an alternative image. (We complement the */
  105.                  /* colours instead) */
  106.   &gadget_text,  /* GadgetText, a pointer to our IntuiText structure. */
  107.                  /* (See chapter 3 GRAPHICS for more information) */
  108.   NULL,          /* MutualExclude, no mutual exclude. */
  109.   NULL,          /* SpecialInfo, NULL since this is a Boolean gadget. */
  110.                  /* (It is not a Proportional/String or Integer gdget) */
  111.   0,             /* GadgetID, no id. */
  112.   NULL           /* UserData, no user data connected to the gadget. */
  113. };
  114.  
  115. /***********************************************************************/
  116. /* Important notice:                                                   */
  117. /* Remember that every gadget which is connected to a requester must   */
  118. /* have the flag REQGADGET set in the GadgetType field. Remember also  */
  119. /* that at least one gadget per requester must have the ENDGADGET flag */
  120. /* set in the Activation field.                                        */
  121. /***********************************************************************/
  122.  
  123.  
  124.  
  125. /************************************/
  126. /* THE BORDER AROUND THE REQUESTER: */
  127. /************************************/
  128.  
  129. /* The coordinates for the box around the requester: */
  130. SHORT requester_border_points[]=
  131. {
  132.     0,  0, /* Start at position (0,0) */
  133.   319,  0, /* Draw a line to the right to position (319,0) */
  134.   319, 99, /* Draw a line down to position (319,99) */
  135.     0, 99, /* Draw a line to the right to position (319,99) */
  136.     0,  0  /* Finish of by drawing a line up to position (0,0) */ 
  137. };
  138.  
  139. /* The Border structure for the requester: */
  140. struct Border requester_border=
  141. {
  142.   0, 0,        /* LeftEdge, TopEdge. */
  143.   1,           /* FrontPen, colour register 1. */
  144.   0,           /* BackPen, for the moment unused. */
  145.   JAM1,        /* DrawMode, draw the lines with colour 1. */
  146.   5,           /* Count, 5 pair of coordinates in the array. */
  147.   requester_border_points, /* XY, pointer to the array with the coord. */
  148.   NULL,        /* NextBorder, no other Border structures are connected. */
  149. };
  150.  
  151.  
  152.  
  153. /**********************************/
  154. /* THE TEXT INSIDE THE REQUESTER: */
  155. /**********************************/
  156.  
  157. /* The IntuiText structure used to print some text inside the requester: */
  158. struct IntuiText requester_text=
  159. {
  160.   1,         /* FrontPen, colour register 1. */
  161.   0,         /* BackPen, unused since JAM1. */
  162.   JAM1,      /* DrawMode, draw the characters with colour 1, do not */
  163.              /* change the background. */ 
  164.   4, 2,      /* LeftEdge, TopEdge. */
  165.   NULL,      /* ITextFont, use default font. */
  166.   "This is the requester!", /* IText, the text that will be printed. */
  167.   NULL,      /* NextText, no other IntuiText structures are connected. */
  168. };
  169.  
  170.  
  171.  
  172. /* Note:                                                                */
  173. /* This is the structure for the Double-menu requester, but as you have */
  174. /* maybe noticed, it is exactly the same as a normal requester struc.   */
  175. /* The diffrence is that we call the function SetDMRequest() instead    */
  176. /* of calling the function Request().                                   */
  177.  
  178. struct Requester my_requester=
  179. {
  180.   NULL,              /* OlderRequester, used by Intuition. */
  181.   40, 20,            /* LeftEdge, TopEdge, 40 pixels out, 20 lines down. */
  182.   320, 100,          /* Width, Height, 320 pixels wide, 100 lines high. */
  183.   0, 0,              /* RelLeft, RelTop, Since POINTREL flag is not set, */
  184.                      /* Intuition ignores these values. */
  185.   &requester_gadget, /* ReqGadget, pointer to the first gadget. */
  186.   &requester_border, /* ReqBorder, pointer to a Border structure. */
  187.   &requester_text,   /* ReqText, pointer to a IntuiText structure. */
  188.   NULL,              /* Flags, no flags set. */
  189.   3,                 /* BackFill, draw everything on an orange backgr. */
  190.   NULL,              /* ReqLayer, used by Intuition. Set to NULL. */
  191.   NULL,              /* ReqPad1, used by Intuition. Set to NULL. */
  192.   NULL,              /* ImageBMap, no predrawn Bitmap. Set to NULL. */
  193.                      /*            (The PREDRAWN flag was not set) */
  194.   NULL,              /* RWindow, used by Intuition. Set to NULL. */
  195.   NULL               /* ReqPad2, used by Intuition. Set to NULL. */
  196. };
  197.  
  198.  
  199.  
  200. /* Declare a pointer to a Window structure: */ 
  201. struct Window *my_window;
  202.  
  203. /* Declare and initialize your NewWindow structure: */
  204. struct NewWindow my_new_window=
  205. {
  206.   0,             /* LeftEdge    x position of the window. */
  207.   0,             /* TopEdge     y positio of the window. */
  208.   640,           /* Width       640 pixels wide. */
  209.   200,           /* Height      200 lines high. */
  210.   0,             /* DetailPen   Text should be drawn with colour reg. 0 */
  211.   1,             /* BlockPen    Blocks should be drawn with colour reg. 1 */
  212.   CLOSEWINDOW|   /* IDCMPFlags  The window will give us a message if the */
  213.                  /*             user has selected the Close window gad, */
  214.   GADGETDOWN|    /*             or a gadget has been pressed on, or */
  215.   GADGETUP|      /*             a gadge has been released. */
  216.   REQSET|        /*             We will also recieve a message when the */
  217.   REQCLEAR,      /*             user has activated and deactivated a req. */
  218.   SMART_REFRESH| /* Flags       Intuition should refresh the window. */
  219.   WINDOWCLOSE|   /*             Close Gadget. */
  220.   WINDOWDRAG|    /*             Drag gadget. */
  221.   WINDOWDEPTH|   /*             Depth arrange Gadgets. */
  222.   WINDOWSIZING|  /*             Sizing Gadget. */
  223.   ACTIVATE,      /*             The window should be Active when opened. */
  224.   NULL,          /* FirstGadget No gadget connected to this window. */
  225.   NULL,          /* CheckMark   Use Intuition's default CheckMark. */
  226.   "The Fantastic Window!",      /* Title       Title of the window. */
  227.   NULL,          /* Screen      Connected to the Workbench Screen. */
  228.   NULL,          /* BitMap      No Custom BitMap. */
  229.   140,           /* MinWidth    We will not allow the window to become */
  230.   50,            /* MinHeight   smaller than 140 x 50, and not bigger */
  231.   300,           /* MaxWidth    than 300 x 200. */
  232.   200,           /* MaxHeight */
  233.   WBENCHSCREEN   /* Type        Connected to the Workbench Screen. */
  234. };
  235.  
  236. /* Note:                                                         */
  237. /* Since we want to know when the user selects and deselects the */
  238. /* DMRequester, we set the IDCMP flags REQSET and REQCLEAR.      */
  239.  
  240.  
  241.  
  242. main()
  243. {
  244.   /* Boolean variable used for the while loop: */
  245.   BOOL close_me;
  246.  
  247.   /* Declare a variable in which we will store the IDCMP flag: */
  248.   ULONG class;
  249.   
  250.   /* Declare a pointer to an IntuiMessage structure: */
  251.   struct IntuiMessage *my_message;
  252.  
  253.   /* We use this variable to check if Intuition could enable the user */
  254.   /* to bring up the requester whenever he/she wants: */
  255.   BOOL result;
  256.  
  257.  
  258.  
  259.   /* Before we can use Intuition we need to open the Intuition Library: */
  260.   IntuitionBase = (struct IntuitionBase *)
  261.     OpenLibrary( "intuition.library", 0 );
  262.   
  263.   if( IntuitionBase == NULL )
  264.     exit(); /* Could NOT open the Intuition Library! */
  265.  
  266.  
  267.  
  268.   /* We will now try to open the window: */
  269.   my_window = (struct Window *) OpenWindow( &my_new_window );
  270.   
  271.   /* Have we opened the window succesfully? */
  272.   if(my_window == NULL)
  273.   {
  274.     /* Could NOT open the Window! */
  275.     
  276.     /* Close the Intuition Library since we have opened it: */
  277.     CloseLibrary( IntuitionBase );
  278.  
  279.     exit();  
  280.   }
  281.  
  282.  
  283.  
  284.   /* We have opened the window, and everything seems to be OK. */
  285.  
  286.  
  287.  
  288.   /* We will now try to set the Double-menu requester: */
  289.   result=SetDMRequest( my_window, &my_requester );
  290.  
  291.   if( !result )  /* !result is the same thing as result==FALSE */
  292.   {
  293.     /* Intuition could not set the Double-menu requester! */
  294.   
  295.     printf("Could not set the Double-menu requester!\n");
  296.   }
  297.   else
  298.   {
  299.     /* OK */
  300.     printf("Try to double-click on the right mouse button!\n\n");
  301.   }
  302.  
  303.  
  304.   close_me = FALSE;
  305.  
  306.   /* Stay in the while loop until the user has selected the Close window */
  307.   /* gadget: */
  308.   while( !close_me )
  309.   {
  310.     /* Wait until we have recieved a message: */
  311.     Wait( 1 << my_window->UserPort->mp_SigBit );
  312.  
  313.     /* As long as we collect messages sucessfully: */
  314.     while(my_message=(struct IntuiMessage *) GetMsg(my_window->UserPort))
  315.     {
  316.       /* After we have collected the message we can read it, and save any */
  317.       /* important values which we maybe want to check later: */
  318.       class = my_message->Class;
  319.  
  320.       /* After we have read it we reply as fast as possible: */
  321.       /* REMEMBER! Do never try to read a message after you have replied! */
  322.       /* Some other process has maybe changed it. */
  323.       ReplyMsg( my_message );
  324.  
  325.       /* Check which IDCMP flag was sent: */
  326.       switch( class )
  327.       {
  328.         case CLOSEWINDOW:  /* The user selected the Close window gadget! */
  329.                close_me=TRUE;
  330.                break;
  331.              
  332.         case GADGETDOWN:   /* The user has pressed on a gadget. */
  333.                /* Since there exist only one "nomal" gadget, we do not */
  334.                /* need to check which gadget was selected. */
  335.                
  336.                printf("Gadget down\n");
  337.                break;
  338.              
  339.         case GADGETUP:     /* The user has released a gadget. */
  340.                /* Since there exist only one "nomal" gadget, we do not */
  341.                /* need to check which gadget was released. */
  342.                
  343.                /* Once we recieve this message, the requester will be */
  344.                /* satisfied, and therefore deactivated. We will */
  345.                /* therefore also recieve a REQCLEAR message. */
  346.                
  347.                printf("Gadget up\n");
  348.                break;
  349.                
  350.         case REQSET:       /* Requester activated. */
  351.                printf("Requester activated!\n");
  352.                printf("You can not close the window now.\n");
  353.                break;
  354.                
  355.         case REQCLEAR:     /* Requester deactivated. */
  356.                printf("Requester deactivated!\n");
  357.                printf("You can close the window now.\n\n");
  358.                break;
  359.       }
  360.     }
  361.   }
  362.  
  363.  
  364.  
  365.   /* We should always close the windows we have opened before we leave: */
  366.   CloseWindow( my_window );
  367.  
  368.  
  369.  
  370.   /* Close the Intuition Library since we have opened it: */
  371.   CloseLibrary( IntuitionBase );
  372.   
  373.   /* THE END */
  374. }