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