home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_manual / intuition / requesters / example8.c < prev    next >
C/C++ Source or Header  |  1995-02-27  |  24KB  |  593 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:    Example8.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. Inside the window we have activated an Application requester */
  24. /* with three connecting gadgets. Two are Boolean gadgets ("OK and      */
  25. /* "CANCEL"), and one is an Integer gadget.                             */
  26.  
  27.  
  28.  
  29. #include <intuition/intuition.h>
  30.  
  31.  
  32.  
  33. struct IntuitionBase *IntuitionBase;
  34.  
  35.  
  36.  
  37. /************************************/
  38. /* THE INTEGER GADGET's STRUCTURES: */
  39. /************************************/
  40.  
  41. /* The coordinates for the box around the integer gadget: */
  42. SHORT integer_border_points[]=
  43. {
  44.    -7, -4, /* Start at position (-7, -4) */
  45.   200, -4, /* Draw a line to the right to position (200,-4) */
  46.   200, 11, /* Draw a line down to position (200,11) */
  47.    -7, 11, /* Draw a line to the left to position (-7,11) */
  48.    -7, -4  /* Finish of by drawing a line up to position (-7,-4) */ 
  49. };
  50.  
  51. /* The Border structure for the integer gadget: */
  52. struct Border integer_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.   integer_border_points,/* XY, pointer to the array with the coordinates. */
  60.   NULL,                 /* NextBorder, no other Border structures. */
  61. };
  62.  
  63.  
  64.  
  65. /* The IntuiText structure for the integer gadget: */
  66. struct IntuiText integer_text=
  67. {
  68.   1,         /* FrontPen, colour register 1. (white) */
  69.   0,         /* BackPen, not used since JAM1. */
  70.   JAM1,      /* DrawMode, draw the characters with colour 1, and do not */
  71.              /* bother about the background. */ 
  72.   -53, 0,    /* LeftEdge, TopEdge. */
  73.   NULL,      /* ITextFont, use default font. */
  74.   "Age: ",   /* IText, the text that will be printed. */
  75.   NULL,      /* NextText, no other IntuiText structures. */
  76. };
  77.  
  78.  
  79.  
  80. UBYTE my_buffer[25]; /* 25 characters including the NULL-sign. */
  81. UBYTE my_undo_buffer[25]; /* Must be at least as big as my_buffer. */
  82.  
  83.  
  84.  
  85. struct StringInfo integer_info=
  86. {
  87.   my_buffer,       /* Buffer, pointer to a null-terminated string. */
  88.   my_undo_buffer,  /* UndoBuffer, pointer to a null-terminated string. */
  89.                    /* (Remember my_buffer is equal to &my_buffer[0]) */
  90.   0,               /* BufferPos, initial position of the cursor. */
  91.   25,              /* MaxChars, 25 characters inc. null-sign ('\0'). */
  92.   0,               /* DispPos, first character in the string should be */
  93.                    /* first character in the display. */
  94.  
  95.   /* Intuition initializes and maintaines these variables: */
  96.  
  97.   0,               /* UndoPos */
  98.   0,               /* NumChars */
  99.   0,               /* DispCount */
  100.   0, 0,            /* CLeft, CTop */
  101.   NULL,            /* LayerPtr */
  102.   NULL,            /* LongInt */
  103.   NULL,            /* AltKeyMap */
  104. };
  105.  
  106.  
  107. struct Gadget integer_gadget=
  108. {
  109.   NULL,          /* NextGadget, no more gadgets in the list. */
  110.   68,            /* LeftEdge, 68 pixels out. */
  111.   26,            /* TopEdge, 26 lines down. */
  112.   198,           /* Width, 198 pixels wide. */
  113.   8,             /* Height, 8 pixels lines heigh. */
  114.   GADGHCOMP,     /* Flags, draw the select box in the complement */
  115.                  /* colours. Note: it actually only the cursor which */
  116.                  /* will be drawn in the complement colours (yellow). */
  117.                  /* If you set the flag GADGHNONE the cursor will not be */
  118.                  /* highlighted, and the user will therefore not be able */
  119.                  /* to see it. */
  120.   GADGIMMEDIATE| /* Activation, our program will recieve a message when */
  121.   RELVERIFY|     /* the user has selected this gadget, and when the user */
  122.                  /* has released it. */ 
  123.   LONGINT,       /* An Integer gadget. */
  124.   STRGADGET|     /* GadgetType, a String gadget which is connected to */
  125.   REQGADGET,     /* a requester. IMPORTANT! Every gadget which is */
  126.                  /* connectd to a requester must have the REQGADGET flsg */
  127.                  /* set in the GadgetType field. */
  128.   (APTR) &integer_border, /* GadgetRender, a pointer to our Border struc. */
  129.   NULL,          /* SelectRender, NULL since we do not supply the gadget */
  130.                  /* with an alternative image. */
  131.   &integer_text,  /* GadgetText, a pointer to our IntuiText structure. */
  132.   NULL,          /* MutualExclude, no mutual exclude. */
  133.   (APTR) &integer_info, /* SpecialInfo, a pointer to a StringInfo str. */
  134.   0,             /* GadgetID, no id. */
  135.   NULL           /* UserData, no user data connected to the gadget. */
  136. };
  137.  
  138.  
  139.  
  140. /*******************************/
  141. /* THE OK GADGET's STRUCTURES: */
  142. /*******************************/
  143.  
  144. /* The coordinates for the OK box: */
  145. SHORT ok_border_points[]=
  146. {
  147.    0,  0, /* Start at position (0,0) */
  148.   22,  0, /* Draw a line to the right to position (22,0) */
  149.   22, 10, /* Draw a line down to position (22,10) */
  150.    0, 10, /* Draw a line to the left to position (0,10) */
  151.    0,  0  /* Finish of by drawing a line up to position (0,0) */ 
  152. };
  153.  
  154. /* The Border structure: */
  155. struct Border ok_border=
  156. {
  157.   0, 0,        /* LeftEdge, TopEdge. */
  158.   1,           /* FrontPen, colour register 1. */
  159.   0,           /* BackPen, for the moment unused. */
  160.   JAM1,        /* DrawMode, draw the lines with colour 1. */
  161.   5,           /* Count, 5 pair of coordinates in the array. */
  162.   ok_border_points, /* XY, pointer to the array with the coord. */
  163.   NULL,        /* NextBorder, no other Border structures are connected. */
  164. };
  165.  
  166. /* The IntuiText structure: */
  167. struct IntuiText ok_text=
  168. {
  169.   1,      /* FrontPen, colour register 1. */
  170.   0,      /* BackPen, not used since JAM1. */
  171.   JAM1,   /* DrawMode, draw the characters with colour 1, do not */
  172.           /* change the background. */ 
  173.   4, 2,   /* LeftEdge, TopEdge. */
  174.   NULL,   /* ITextFont, use default font. */
  175.   "OK",   /* IText, the text that will be printed. */
  176.   NULL,   /* NextText, no other IntuiText structures are connected. */
  177. };
  178.  
  179. struct Gadget ok_gadget=
  180. {
  181.   &integer_gadget, /* NextGadget, linked to the Integer gadget. */
  182.   14,            /* LeftEdge, 14 pixels out. */
  183.   47,            /* TopEdge, 47 lines down. */
  184.   23,            /* Width, 23 pixels wide. */
  185.   11,            /* Height, 11 pixels lines heigh. */
  186.   GADGHCOMP,     /* Flags, when this gadget is highlighted, the gadget */
  187.                  /* will be rendered in the complement colours. */
  188.                  /* (Colour 0 (00) will be changed to colour 3 (11) */
  189.                  /* (Colour 1 (01)           - " -           2 (10) */
  190.                  /* (Colour 2 (10)           - " -           1 (01) */
  191.                  /* (Colour 3 (11)           - " -           0 (00) */  
  192.   GADGIMMEDIATE| /* Activation, our program will recieve a message when */
  193.   RELVERIFY|     /* the user has selected this gadget, and when the user */
  194.                  /* has released it. */
  195.   ENDGADGET,     /* When the user has selected this gadget, the */
  196.                  /* requester is satisfied, and is deactivated. */
  197.                  /* IMPORTANT! At least one gadget per requester */
  198.                  /* must have the flag ENDGADGET set. If not, the */
  199.                  /* requester would never be deactivated! */
  200.  
  201.   BOOLGADGET|    /* GadgetType, a Boolean gadget which is connected to */
  202.   REQGADGET,     /* a requester. IMPORTANT! Every gadget which is */
  203.                  /* connectd to a requester must have the REQGADGET flsg */
  204.                  /* set in the GadgetType field. */
  205.   (APTR) &ok_border, /* GadgetRender, a pointer to our Border struc. */
  206.   NULL,          /* SelectRender, NULL since we do not supply the gadget */
  207.                  /* with an alternative image. (We complement the */
  208.                  /* colours instead) */
  209.   &ok_text,      /* GadgetText, a pointer to our IntuiText structure. */
  210.                  /* (See chapter 3 GRAPHICS for more information) */
  211.   NULL,          /* MutualExclude, no mutual exclude. */
  212.   NULL,          /* SpecialInfo, NULL since this is a Boolean gadget. */
  213.                  /* (It is not a Proportional/String or Integer gdget) */
  214.   0,             /* GadgetID, no id. */
  215.   NULL           /* UserData, no user data connected to the gadget. */
  216. };
  217.  
  218.  
  219.  
  220.  
  221. /***********************************/
  222. /* THE CANCEL GADGET's STRUCTURES: */
  223. /***********************************/
  224.  
  225. /* The coordinates for the CANCEL box: */
  226. SHORT cancel_border_points[]=
  227. {
  228.    0,  0, /* Start at position (0,0) */
  229.   54,  0, /* Draw a line to the right to position (54,0) */
  230.   54, 10, /* Draw a line down to position (54,10) */
  231.    0, 10, /* Draw a line to the left to position (0,10) */
  232.    0,  0  /* Finish of by drawing a line up to position (0,0) */ 
  233. };
  234.  
  235. /* The Border structure: */
  236. struct Border cancel_border=
  237. {
  238.   0, 0,        /* LeftEdge, TopEdge. */
  239.   1,           /* FrontPen, colour register 1. */
  240.   0,           /* BackPen, for the moment unused. */
  241.   JAM1,        /* DrawMode, draw the lines with colour 1. */
  242.   5,           /* Count, 5 pair of coordinates in the array. */
  243.   cancel_border_points, /* XY, pointer to the array with the coord. */
  244.   NULL,        /* NextBorder, no other Border structures are connected. */
  245. };
  246.  
  247. /* The IntuiText structure: */
  248. struct IntuiText cancel_text=
  249. {
  250.   1,        /* FrontPen, colour register 1. */
  251.   0,        /* BackPen, not used since JAM1. */
  252.   JAM1,     /* DrawMode, draw the characters with colour 1, do not */
  253.             /* change the background. */ 
  254.   4, 2,     /* LeftEdge, TopEdge. */
  255.   NULL,     /* ITextFont, use default font. */
  256.   "CANCEL", /* IText, the text that will be printed. */
  257.   NULL,     /* NextText, no other IntuiText structures are connected. */
  258. };
  259.  
  260. struct Gadget cancel_gadget=
  261. {
  262.   &ok_gadget,    /* NextGadget, linked to the OK gadget. */
  263.   214,           /* LeftEdge, 214 pixels out. */
  264.   47,            /* TopEdge, 47 lines down. */
  265.   55,            /* Width, 55 pixels wide. */
  266.   11,            /* Height, 11 pixels lines heigh. */
  267.   GADGHCOMP,     /* Flags, when this gadget is highlighted, the gadget */
  268.                  /* will be rendered in the complement colours. */
  269.                  /* (Colour 0 (00) will be changed to colour 3 (11) */
  270.                  /* (Colour 1 (01)           - " -           2 (10) */
  271.                  /* (Colour 2 (10)           - " -           1 (01) */
  272.                  /* (Colour 3 (11)           - " -           0 (00) */  
  273.   GADGIMMEDIATE| /* Activation, our program will recieve a message when */
  274.   RELVERIFY|     /* the user has selected this gadget, and when the user */
  275.                  /* has released it. */
  276.   ENDGADGET,     /* When the user has selected this gadget, the */
  277.                  /* requester is satisfied, and is deactivated. */
  278.                  /* IMPORTANT! At least one gadget per requester */
  279.                  /* must have the flag ENDGADGET set. If not, the */
  280.                  /* requester would never be deactivated! */
  281.  
  282.   BOOLGADGET|    /* GadgetType, a Boolean gadget which is connected to */
  283.   REQGADGET,     /* a requester. IMPORTANT! Every gadget which is */
  284.                  /* connectd to a requester must have the REQGADGET flsg */
  285.                  /* set in the GadgetType field. */
  286.   (APTR) &cancel_border, /* GadgetRender, a pointer to our Border struc. */
  287.   NULL,          /* SelectRender, NULL since we do not supply the gadget */
  288.                  /* with an alternative image. (We complement the */
  289.                  /* colours instead) */
  290.   &cancel_text,  /* GadgetText, a pointer to our IntuiText structure. */
  291.                  /* (See chapter 3 GRAPHICS for more information) */
  292.   NULL,          /* MutualExclude, no mutual exclude. */
  293.   NULL,          /* SpecialInfo, NULL since this is a Boolean gadget. */
  294.                  /* (It is not a Proportional/String or Integer gdget) */
  295.   0,             /* GadgetID, no id. */
  296.   NULL           /* UserData, no user data connected to the gadget. */
  297. };
  298.  
  299.  
  300.  
  301. /************************************************************************/
  302. /* Note:                                                                */
  303. /* Remember that every gadget which is connected to a requester must    */
  304. /* have the flag REQGADGET set in the GadgetType field. Remember also   */
  305. /* that at least one gadget per requester must have the ENDGADGET flag  */
  306. /* set in the Activation field.                                         */
  307. /* In this example we have three gadgets connected to the requester.    */
  308. /* All of them has the REQGADGET flag set, and the OK and CANCEL gadget */
  309. /* has also the ENDGADGET flag set.                                     */
  310. /************************************************************************/
  311.  
  312.  
  313.  
  314. /************************************/
  315. /* THE BORDER AROUND THE REQUESTER: */
  316. /************************************/
  317.  
  318. /* The coordinates for the box around the requester: */
  319. SHORT requester_border_points[]=
  320. {
  321.     0,  0, /* Start at position (0,0) */
  322.   282,  0, /* Draw a line to the right. */
  323.   282, 64, /* Draw a line down. */
  324.     0, 64, /* Draw a line to the left. */
  325.     0,  0  /* Finish of by drawing a line up to position (0,0) */ 
  326. };
  327.  
  328. /* The Border structure for the requester: */
  329. struct Border requester_border=
  330. {
  331.   0, 0,        /* LeftEdge, TopEdge. */
  332.   1,           /* FrontPen, colour register 1. */
  333.   0,           /* BackPen, for the moment unused. */
  334.   JAM1,        /* DrawMode, draw the lines with colour 1. */
  335.   5,           /* Count, 5 pair of coordinates in the array. */
  336.   requester_border_points, /* XY, pointer to the array with the coord. */
  337.   NULL,        /* NextBorder, no other Border structures are connected. */
  338. };
  339.  
  340.  
  341.  
  342. /**********************************/
  343. /* THE TEXT INSIDE THE REQUESTER: */
  344. /**********************************/
  345.  
  346. /* The IntuiText structure used to print some text inside the requester: */
  347. struct IntuiText requester_text=
  348. {
  349.   1,         /* FrontPen, colour register 1. */
  350.   0,         /* BackPen, unused since JAM1. */
  351.   JAM1,      /* DrawMode, draw the characters with colour 1, do not */
  352.              /* change the background. */ 
  353.   14, 8,     /* LeftEdge, TopEdge. */
  354.   NULL,      /* ITextFont, use default font. */
  355.   "Please enter your age:", /* IText, the text that will be printed. */
  356.   NULL,      /* NextText, no other IntuiText structures are connected. */
  357. };
  358.  
  359.  
  360.  
  361. /****************************/
  362. /* THE REQUESTER STRUCTURE: */
  363. /****************************/
  364.  
  365. struct Requester my_requester=
  366. {
  367.   NULL,              /* OlderRequester, used by Intuition. */
  368.   40, 20,            /* LeftEdge, TopEdge, 40 pixels out, 20 lines down. */
  369.   283, 65,           /* Width, Height, 283 pixels wide, 65 lines high. */
  370.   0, 0,              /* RelLeft, RelTop, Since POINTREL flag is not set, */
  371.                      /* Intuition ignores these values. */
  372.   &cancel_gadget,    /* ReqGadget, pointer to the first gadget. */
  373.   &requester_border, /* ReqBorder, pointer to a Border structure. */
  374.   &requester_text,   /* ReqText, pointer to a IntuiText structure. */
  375.   NULL,              /* Flags, no flags set. */
  376.   2,                 /* BackFill, draw everything on a black background. */
  377.   NULL,              /* ReqLayer, used by Intuition. Set to NULL. */
  378.   NULL,              /* ReqPad1, used by Intuition. Set to NULL. */
  379.   NULL,              /* ImageBMap, no predrawn Bitmap. Set to NULL. */
  380.                      /*            (The PREDRAWN flag was not set) */
  381.   NULL,              /* RWindow, used by Intuition. Set to NULL. */
  382.   NULL               /* ReqPad2, used by Intuition. Set to NULL. */
  383. };
  384.  
  385.  
  386.  
  387. /* Declare a pointer to a Window structure: */ 
  388. struct Window *my_window;
  389.  
  390. /* Declare and initialize your NewWindow structure: */
  391. struct NewWindow my_new_window=
  392. {
  393.   0,             /* LeftEdge    x position of the window. */
  394.   0,             /* TopEdge     y positio of the window. */
  395.   640,           /* Width       640 pixels wide. */
  396.   200,           /* Height      200 lines high. */
  397.   0,             /* DetailPen   Text should be drawn with colour reg. 0 */
  398.   1,             /* BlockPen    Blocks should be drawn with colour reg. 1 */
  399.   CLOSEWINDOW|   /* IDCMPFlags  The window will give us a message if the */
  400.                  /*             user has selected the Close window gad, */
  401.   GADGETDOWN|    /*             or a gadget has been pressed on, or */
  402.   GADGETUP|      /*             a gadge has been released. */
  403.   REQSET|        /*             Send a message also if a requester has */
  404.   REQCLEAR,      /*             been activated or deactivated. */
  405.   SMART_REFRESH| /* Flags       Intuition should refresh the window. */
  406.   WINDOWCLOSE|   /*             Close Gadget. */
  407.   WINDOWDRAG|    /*             Drag gadget. */
  408.   WINDOWDEPTH|   /*             Depth arrange Gadgets. */
  409.   WINDOWSIZING|  /*             Sizing Gadget. */
  410.   ACTIVATE,      /*             The window should be Active when opened. */
  411.   NULL,          /* FirstGadget No gadget connected to this window. */
  412.   NULL,          /* CheckMark   Use Intuition's default CheckMark. */
  413.   "The Window",  /* Title       Title of the window. */
  414.   NULL,          /* Screen      Connected to the Workbench Screen. */
  415.   NULL,          /* BitMap      No Custom BitMap. */
  416.   140,           /* MinWidth    We will not allow the window to become */
  417.   50,            /* MinHeight   smaller than 140 x 50, and not bigger */
  418.   300,           /* MaxWidth    than 300 x 200. */
  419.   200,           /* MaxHeight */
  420.   WBENCHSCREEN   /* Type        Connected to the Workbench Screen. */
  421. };
  422.  
  423.  
  424.  
  425. main()
  426. {
  427.   /* Boolean variable used for the while loop: */
  428.   BOOL close_me;
  429.  
  430.   /* Declare a variable in which we will store the IDCMP flag: */
  431.   ULONG class;
  432.   
  433.   /* Declare a variable in which we will store the address of the */
  434.   /* gadget which sent the message: */
  435.   APTR address;
  436.   
  437.   /* Declare a pointer to an IntuiMessage structure: */
  438.   struct IntuiMessage *my_message;
  439.  
  440.   /* We use this variable to check if the requester has ben activated */
  441.   /* or not: */
  442.   BOOL result;
  443.  
  444.  
  445.  
  446.   /* Put an integer value in the string: */
  447.   /* This is very important! */
  448.   strcpy( my_buffer, "0" );
  449.  
  450.  
  451.  
  452.   /* Before we can use Intuition we need to open the Intuition Library: */
  453.   IntuitionBase = (struct IntuitionBase *)
  454.     OpenLibrary( "intuition.library", 0 );
  455.   
  456.   if( IntuitionBase == NULL )
  457.     exit(); /* Could NOT open the Intuition Library! */
  458.  
  459.  
  460.  
  461.   /* We will now try to open the window: */
  462.   my_window = (struct Window *) OpenWindow( &my_new_window );
  463.   
  464.   /* Have we opened the window succesfully? */
  465.   if(my_window == NULL)
  466.   {
  467.     /* Could NOT open the Window! */
  468.     
  469.     /* Close the Intuition Library since we have opened it: */
  470.     CloseLibrary( IntuitionBase );
  471.  
  472.     exit();  
  473.   }
  474.  
  475.  
  476.  
  477.   /* We have opened the window, and everything seems to be OK. */
  478.  
  479.  
  480.  
  481.   /* We will now try to activate the requester: */
  482.   result=Request( &my_requester, my_window );
  483.  
  484.   if( !result )  /* !result is the same thing as result==FALSE */
  485.   {
  486.     /* Intuition could not activate the requester! */
  487.     /* In this case we do not need to quit since it does not matter if */
  488.     /* the requester was activated or not. I just wanted to show how */
  489.     /* you can check if you have opened or not the requester. */
  490.   
  491.     printf("Could not activate the requester!\n");
  492.   }
  493.   else
  494.   {
  495.     /* Intuition could open the requester! */
  496.     printf("Try to close the window!\n");
  497.   }
  498.  
  499.  
  500.  
  501.   close_me = FALSE;
  502.  
  503.   /* Stay in the while loop until the user has selected the Close window */
  504.   /* gadget. However, in this example the user first need to deactivate */
  505.   /* the requester before he can select the Close window gadget: */
  506.   while( !close_me )
  507.   {
  508.     /* Wait until we have recieved a message: */
  509.     Wait( 1 << my_window->UserPort->mp_SigBit );
  510.  
  511.     /* As long as we collect messages sucessfully: */
  512.     while(my_message=(struct IntuiMessage *) GetMsg(my_window->UserPort))
  513.     {
  514.       /* After we have collected the message we can read it, and save any */
  515.       /* important values which we maybe want to check later: */
  516.       
  517.       /* Store the IDCMP flag: */
  518.       class = my_message->Class;
  519.  
  520.       /* Store the address: */
  521.       address = my_message->IAddress;
  522.  
  523.       /* After we have read it we reply as fast as possible: */
  524.       /* REMEMBER! Do never try to read a message after you have replied! */
  525.       /* Some other process has maybe changed it. */
  526.       ReplyMsg( my_message );
  527.  
  528.       /* Check which IDCMP flag was sent: */
  529.       switch( class )
  530.       {
  531.         case CLOSEWINDOW:  /* The user selected the Close window gadget! */
  532.                close_me=TRUE;
  533.                break;
  534.              
  535.         case GADGETDOWN:   /* The user has pressed on a gadget. */
  536.                
  537.                if( address == (APTR) &ok_gadget )
  538.                  printf("The user pressed on the OK gadget!\n");
  539.  
  540.                if( address == (APTR) &cancel_gadget )
  541.                  printf("The user pressed on the CANCEL gadget!\n");
  542.                  
  543.                if( address == (APTR) &integer_gadget )
  544.                  printf("The user selected the Integer gadget!\n");
  545.                
  546.                break;
  547.              
  548.         case GADGETUP:     /* The user has released a gadget. */
  549.  
  550.                if( address == (APTR) &ok_gadget )
  551.                  printf("The user released the OK gadget!\n");
  552.  
  553.                if( address == (APTR) &cancel_gadget )
  554.                  printf("The user released the CANCEL gadget!\n");
  555.                  
  556.                if( address == (APTR) &integer_gadget )
  557.                {
  558.                  printf("The user released the Integer gadget!\n");
  559.                  
  560.                  /* Print out the integer value: */
  561.                  printf("Nr: %d\n\n", integer_info.LongInt);
  562.                }
  563.                break;
  564.                
  565.         case REQSET:       /* Requester activated. */
  566.               printf("Requester activated!\n");
  567.               break;
  568.  
  569.         case REQCLEAR:     /* Requester deactivated. */
  570.               printf("Requester deactivated!\n");
  571.               printf("You can now close the window.\n");
  572.               break;
  573.       }
  574.     }
  575.   }
  576.  
  577.  
  578.  
  579.   /* Print out the integer value: */
  580.   printf("Nr: %d\n\n", integer_info.LongInt);
  581.  
  582.  
  583.  
  584.   /* We should always close the windows we have opened before we leave: */
  585.   CloseWindow( my_window );
  586.  
  587.  
  588.  
  589.   /* Close the Intuition Library since we have opened it: */
  590.   CloseLibrary( IntuitionBase );
  591.   
  592.   /* THE END */
  593. }