home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Printer / add16.dms / in.adf / req.doc < prev    next >
Encoding:
Text File  |  1993-02-22  |  62.2 KB  |  1,675 lines

  1.  
  2.         The  req.library is a run time re-entrant library that is designed
  3. to  make  it  easier  for  programmers  to  use  powerful, easy to use
  4. requesters  for  communicating  with  users.   The  requester  library
  5. includes  such functions as a color requester, file requester, message
  6. display  requester  and many functions to make the creation of gadgets
  7. for your own custom requesters easier.
  8.  
  9.         Req.library  was  written  by  Colin  Fox (of Pyramyd Designs) and
  10. Bruce  Dawson  (of  CygnusSoft  Software).   Req.library  is  a freely
  11. distributable  library that may be used in commercial products without
  12. paying  any  royalties.  We encourage you to use the requester library
  13. in all of your programs, to make them easier to write, and to use.
  14.  
  15.         Req.library  is  not public domain.  The requester library and all
  16. documentation and example programs are all copyright 1989.
  17.  
  18.         The  requester  library must be distributed with the documentation
  19. file  (req.doc),  and  the  three  include files (req.h, reqbase.h and
  20. reqbase.i).
  21.  
  22.  
  23.  
  24.         Req.library  is  dedicated  to  the programmers who make the Amiga
  25. shine the way it was meant to.
  26.  
  27.  
  28. OverView:
  29.  
  30.         All  of  the  req.library functions that bring up requesters allow
  31. you two ways of specifying what screen you would like the requester to
  32. appear  on.  The first way is the more efficient way, because you only
  33. have  to set it up once and then it takes care of things automatially.
  34. There  is  a  field in all process structures called the pr_WindowPtr.
  35. This  pointer  is  used by DOS to decide where to put it's requesters.
  36. If  pr_WindowPtr  contains  a  zero,  requesters  go  on the workbench
  37. screen.  If it contains the address of a window, then requesters go on
  38. that  window's  screen.   If  it  contains a negative one, then no DOS
  39. requesters come up.  The req.library requesters all use this variable,
  40. if  they  are  called from a process .  However, if the pointer is -1,
  41. the req.library functions do still appear, on the workbench screen.
  42.  
  43.         The  second  way  was  put in mainly so that the requesters can be
  44. called from tasks.  Since a task does not have a process structure, it
  45. also  lacks a pr_WindowPtr.  Therefore, all of the requester functions
  46. which  can  be  used from a task (currently everything except the file
  47. requester) can be passed a window pointer, either as a parameter or as
  48. an  element in a structure.  Important:  This pointer takes precedence
  49. over  the  pr_WindowPtr  so  if  you  wish  the  requesters to use the
  50. pr_WindowPtr  you  must  zero  the window fields that the routines are
  51. expecting.   In  the case of fields in a structure this can be easy as
  52. long   as  you  make  sure  your  structure  defaults  to  being  zero
  53. everywhere.
  54.  
  55.         Setting  the  pr_WindowPtr is quite a simple matter.  All you have
  56. to do is do a FindTask((char *)0); which returns a pointer to your own
  57. task  and your own process (a task structure is the first element of a
  58. process  structure).   Then  you  simply  preserve  the  old  value of
  59. pr_WindowPtr (VERY IMPORTANT!!!) and put a window pointer into it.
  60.  
  61. eg:
  62.                                 /* Find my task. */
  63.         myprocess = (struct Process *)FindTask((char *)0);
  64.         oldwindowptr = myprocess->pr_WindowPtr;
  65.         myprocess->pr_WindowPtr = window;
  66.  
  67. or:
  68.  
  69.         MOVE.L  4,A6
  70.         MOVE.L  #0,A1
  71.         SYS             FindTask        ;Find my task.
  72.         MOVE.L  D0,_myprocess
  73.         MOVE.L  D0,A0
  74.         MOVE.L  pr_WindowPtr(A0),_oldwindowptr
  75.         MOVE.L  _window,pr_WindowPtr(A0)
  76.  
  77.         Before your program exits it is VERY important that it restore the
  78. previous  value of pr_WindowPtr.  If you don't, then your program will
  79. work  in some situations, but will BLOW UP in others.  For example, if
  80. you  execute  (without  using the 'run' command) a program, which then
  81. sets  the  pr_WindowPtr  to  point at one of its windows and the exits
  82. without  restoring  it,  then  the  next time a DOS requester tries to
  83. appear...  BOOM!  The machine will probably crash as DOS tries to open
  84. a requester on a now closed screen.  Therefore, before leaving:
  85.  
  86.         myprocess->pr_WindowPtr = oldwindowptr;
  87.  
  88. or:
  89.  
  90.         MOVE.L  _myprocess,A0
  91.         MOVE.L  _oldwindowptr,pr_WindowPtr(A0)
  92.  
  93.  
  94.  
  95.         One  final  note.   The  pr_WindowPtr  field exists in the process
  96. structure.   This  means  that  a  task  does  not  have  this  field.
  97. Therefore,  if you want to call one of the requester library functions
  98. from  a  task,  you  will not be able to specify what screen you would
  99. like  the  requester  to  appear on by setting the pr_WindowPtr field.
  100. All  of  the  functions  that open requesters and can be called from a
  101. task  (the file requester/font requester is the only one that can't be
  102. called  froma task) have some other way of specifying which screen you
  103. would like them to open on.  They will have either have a field in the
  104. structure  which you must pass them or a parameter which can contain a
  105. window  pointer  to one of the windows on your custom screen.  If this
  106. pointer is non-zero then it overrides the pr_WindowPtr field.
  107.  
  108.  
  109.  
  110.  
  111.         By  opening the requester library, you not only gain access to all
  112. of  the functions documented below, but to some other goodies as well.
  113. Req.library   needs  and  therefore  opens  several  other  libraries,
  114. including  dos.library,  intuition.library,  graphics.library  and the
  115. console  device.   All  of  these  pointers  are  stored in the ReqLib
  116. structure  which  you  get a pointer to when you open the req.library.
  117. Therefore,  you  can  save  yourself  a little bit of code by grabbing
  118. these  fields  after opening the requester library.  The only thing to
  119. beware of is don't use these values after you have close the requester
  120. library,  because  at  that point there is no guarantee that they will
  121. still be valid.
  122.  
  123.         In  addition  to  these  libraries,  the Images pointer in the req
  124. library structure points to a set of ten small images (four arrows and
  125. ssix  letters)  which have are guaranteed to be in chip memory.  These
  126. can be used if your program requires this type of images.
  127.  
  128.  
  129.  
  130.  
  131.         One  thing to keep in mind when using the gadget creation routines
  132. is  that there isn't any way for us to check that you have passed us a
  133. pointer  to  the  correct size of buffer, so you _must_ make sure that
  134. you are allocating the right amount of memory.
  135.  
  136.  
  137. --------------------------------------------------------------
  138. Here's a quick list of the functions available:
  139. --------------------------------------------------------------
  140.  
  141. Center..................Center a new window over the mouse.
  142.  
  143. SetSize.................Prop gadget handling routines (32 bit)
  144. SetLocation
  145. ReadLocation
  146.  
  147. Format..................sprintf() format routine
  148.  
  149. SimpleRequest...........Starter gluecode to TextRequest- Single gadget
  150. TwoGadRequest...........Starter gluecode to TextRequest- Two gadgets
  151.  
  152. FileRequester...........FileRequester routines
  153. PurgeFiles
  154.  
  155. ColorRequester..........a colorrequester
  156.  
  157. MakeGadget..............Gadget creation routines
  158. MakeString
  159. MakeProp
  160. MakeButton
  161.  
  162. MakeScrollBar...........3   part   gadget;   2   arrows  and  a  prop.
  163.                                                 Horizontal or Vertical
  164.  
  165. LinkGadget..............Gadget  creation  routines that self-hook into
  166.                                                 the newwindow
  167. LinkStringGadget........gadget list.
  168. LinkPropGadget
  169.  
  170. DrawBox.................Draw a box (x1y1)(x2y2) in one command
  171.  
  172. GetFontHeightAndWidth...return height and width of current font
  173.  
  174. RealTimeScroll..........scroll routine used in file requester
  175.  
  176. TextRequest.............Powerful requester function
  177.  
  178. GetString...............Get a line of text from the user
  179. GetLong.................Get a signed long from the user
  180.  
  181. RawKeyToAscii...........Convert raw key to ascii
  182.  
  183. NewGetString            A second point to GetString.  Different way of
  184.                         passing parameters.
  185.  
  186. ----------------------------------------------------------------
  187.  
  188.  
  189. NAME
  190.                 Center
  191.  
  192.  
  193. SYNOPSIS
  194.                 Center( &nw, x, y)
  195.                          A0 D0 D1
  196.  
  197. struct NewWindow *nw;
  198. USHORT x,y;
  199.  
  200. DESCRIPTION
  201.  
  202.         Center()  is  used  to  adjust  a  NewWindow structure so that the
  203. window that it opens will appear immediately under the mouse.  The x,y
  204. values  are used to specify which part of the window you would like to
  205. appear  underneath  the mouse.  If x or y is zero, that tells Center()
  206. to  position  the  window  so  that  the  window center (in the x or y
  207. direction  respectively)  is  underneath  the  mouse.   If  x  or y is
  208. positive, that tells Center() to position the window so that the mouse
  209. is  that  many  pixels  from  the  left  or  top  edge  of  the window
  210. respectively.   If x or y is negative, that tells Center() to position
  211. the  window  structure so that the mouse appears that many pixels from
  212. the right or bottom edge of the window respectively (ie; x = -10 tells
  213. Center  to  position  the  mouse  ten  pixels to the left of the right
  214. edge).
  215.  
  216.         If it is impossible to position the window exactly where requested
  217. (if  the  mouse  pointer  is too close to the edge of the screen) then
  218. this  routine  will  position  the  window as close as possible to the
  219. correct location.
  220.  
  221.         To  allow  this routine to work accurately it is necessary to have
  222. already initialized the new window structure to specify on what screen
  223. the  window  is  going  to  be  open.  ie; you should set the Type and
  224. Screen fields before calling Center().
  225.  
  226.         This routine disturbs no registers.
  227.  
  228. RETURNS
  229.                 nothing
  230. SEE
  231.  
  232. BUGS
  233.                 None known
  234.  
  235.  
  236. ;--------------------------------------------------------------------
  237.  
  238. NAME
  239.                         SetSize
  240. SYNOPSIS
  241.  
  242.                         SizeVal=SetSize(MaxValue,ViewSize)
  243.                           D0.W              D0.L  D1.L
  244.  
  245. short   SizeVal;
  246. long    MaxValue,ViewSize;
  247.  
  248. DESCRIPTION
  249.  
  250.         This  routine is designed to correctly handle sizing a prop gadget
  251. to  a range.  The range is given in in MaxValue/ViewSize.  MaxValue is
  252. the  maximum value that this prop is supposed to be able to represent.
  253. Viewsize  is  how  large  the  display area is.  For instance, if your
  254. maximum  value  was 200 (files, for example), and your viewsize was 15
  255. (lines of text), then you would call this as so:
  256.  
  257.                 SizeVal=SetSize(200,15);
  258.  
  259.         Then you would put SizeVal into the appropriate PropInfo structure
  260. element (in the case of the file requester, that would be VertBody).
  261.  
  262. RETURNS
  263.                 The  16 bit value to be put into the PropInfo structure of the
  264. prop gadget.
  265.  
  266. SEE
  267.                 SetLocation, ReadLocation
  268. BUGS
  269.                 Bugs? what bugs?
  270.  
  271.  
  272. ;--------------------------------------------------------------------
  273.  
  274. NAME
  275.                         SetLocation
  276. SYNOPSIS
  277.  
  278. NewLoc = SetLocation(MaxValue,ViewSize,Value);
  279.   D0                                    D0      D1      D2
  280.  
  281. short NewLoc;
  282. long MaxValue,ViewSize,Value;
  283.  
  284. DESCRIPTION
  285.  
  286.                         When you have a prop gadget that you wish to directly set,
  287. then  this  is  the  routine to use.  It allows you to pass any 32 bit
  288. value and properly set the gadget.
  289.  
  290. RETURNS
  291.  
  292.         The  return  is  the value to put into either HorizPot or VertPot,
  293. depending on what orientation you have the gadget.
  294.  
  295.  
  296. BUGS
  297.  
  298.         n/a
  299.  
  300. EXAMPLE
  301.  
  302. SEE
  303.         SetSize(),ReadLocation()
  304.  
  305. ;--------------------------------------------------------------------
  306.  
  307. NAME
  308.                         ReadLocation
  309. SYNOPSIS
  310.  
  311. LocVal=ReadLocation(MaxValue,ViewSize,PotValue)
  312.   D0                  D0.L    D1.L     D2.W
  313.  
  314. long LocVal,MaxVal,ViewSize;
  315. short PotValue;
  316.  
  317.  
  318. DESCRIPTION
  319.  
  320.                 If  you  prop  gadget has been moved, this is the routine that
  321. you would use to determine where it's been moved to.
  322.  
  323. RETURNS
  324.                 Returns  the decoded value of the prop, as an unsigned 32 bit.
  325. This  is  the  element  number  (line  number  usually) that should be
  326. displayed on the first line of your display window.
  327.  
  328. SEE
  329.  
  330.         SetSize(), SetLocation()
  331.  
  332. BUGS
  333.         n/a
  334.  
  335. EXAMPLE
  336.  
  337. ;--------------------------------------------------------------------
  338.  
  339. NAME
  340.                         Format
  341. SYNOPSIS
  342.  
  343.                 Format(Buffer,string,values)
  344.                                 A2      A0     A1
  345.  
  346. char *Buffer,string[];
  347. char **values;
  348.  
  349. DESCRIPTION
  350.  
  351.                 This does the same thing as sprintf(), except that it isn't in
  352. the  stdio  library, and doesn't use up very much room.  This function
  353. uses  the  ROM  function  RawDoFmt to do the print() style formatting.
  354. This  routine does not allow the use of all of the '%' directives (for
  355. example,  floating  point  numbers can not be printed with this).  For
  356. full   documentation   on  what  directives  are  supported,  see  the
  357. documentation  on RawDoFmt.  This is the routine that TextRequest (and
  358. therefore   SimpleRequest   and  TwoGadRequest)  use  for  their  text
  359. formatting, so these restrictions apply to them also.
  360.  
  361.                 The RawDoFmt routine also assumes that 'int's are sixteen bits
  362. long.   Therefore,  if  you  are  using a compiler with an int size of
  363. thirty-two  bits and you want to print an int or a short, you must use
  364. '%ld', rather than '%d'.
  365.  
  366. RETURNS
  367.                 The number of characters in the formatted string.
  368. BUGS
  369.         none known
  370.  
  371. EXAMPLE
  372.  
  373.         Format(Buffer,"There are %d changes to the file %s.",numchanges,
  374. filename);
  375.  
  376.         Format(Buffer,"%x is a hex number, %c is a character.", num, chr);
  377.  
  378. SEE
  379.         TextRequest, SimpleRequest, TwoGadRequest.
  380.         Further  information  on printf() style formatting is available in
  381. the AutoDocs on RawDoFmt and in C manuals discussing printf().
  382.  
  383. ;--------------------------------------------------------------------
  384.  
  385.  
  386.  
  387. NAME
  388.                         ColorRequester
  389. SYNOPSIS
  390.  
  391. NewColor=ColorRequester(DesiredColor);
  392.    D0                       D0
  393. long    DesiredColor;
  394.  
  395. DESCRIPTION
  396.  
  397.         This  is a full-fledged color requester.  It is intelligent enough
  398. to open with the right number of colours in the palette automatically.
  399. It  shows  you both the colour you are working with, and the numerical
  400. RGB  value  of  that  colour.   It  has  Spread,  Undo,  Ok and Cancel
  401. functions.  Planned is the addition of HSV.
  402.  
  403.         The  cursor  keys move the color-cursor around the palette, RETURN
  404. selects the current color and ESC cancels out.
  405.  
  406.         You  pass  this  routine  the  color that you would like initially
  407. highlighted  (typically  the  current drawing colour).
  408.  
  409.         The ExtendedColorRequester function has slightly more options, but
  410. is slightly more work to call.
  411.  
  412. RETURNS
  413.  
  414.         Color  number  that  the user selected, -1 if the user cancels the
  415. colour  requester.   The  changed  colours  will  be  in  the viewport
  416. structure for your screen.
  417.  
  418. SEE
  419.         ExtendedColorRequester
  420.  
  421. BUGS
  422.  
  423.         none known.
  424.  
  425. EXAMPLE
  426.  
  427.         newcolor = ColorRequester(oldcolor);
  428.  
  429. ;--------------------------------------------------------------------
  430.  
  431. NAME
  432.                         ExtendedColorRequester
  433. SYNOPSIS
  434.  
  435. NewColor=ExtendedColorRequester(&(struct ExtendedColorRequester)
  436.    D0                                      A0
  437. struct ExtendedColorRequester   colorreqstruct;
  438.  
  439. DESCRIPTION
  440.         This  call  brings  up  exactly  the  same  color requester as the
  441. ColorRequester  call.  The only difference is that this routine allows
  442. you  to  specify  more  parameters.   The difference is actually quite
  443. small  right  now, because there is only one additional parameter that
  444. can  be  passed  through  this  entry  point.   This is the ecr_window
  445. parameter,  used  to  specify  what window (and hence what screen) the
  446. color 'requester' appears on.  This parameter is rarely needed because
  447. the  window  the requester opens up on can be specified by setting the
  448. pr_WindowPtr  field  in  your process structure to the address of your
  449. window  structure  (see  the  beginning of the docs for an overview on
  450. this procedure).  The only time this entry point is needed, currently,
  451. is  if you try to bring up the color requester on a custom screen from
  452. a  task,  since  a task does not have a pr_WindowPtr and can therefore
  453. not specify the window and screen.
  454.  
  455. RETURNS
  456.  
  457.         Color  number  that  the user selected, -1 if the user cancels the
  458. colour  requester.   The  changed  colours  will  be  in  the viewport
  459. structure for your screen.
  460.  
  461. SEE
  462.         ColorRequester
  463.  
  464. BUGS
  465.  
  466.         none known.
  467.  
  468. EXAMPLE
  469.  
  470.                 /* This should generally be declared as a global variable */
  471.                 /* so that all of it's elements get initialized to zero.  */
  472.                 /* If you declare it as a local variable, be sure to zero */
  473.                 /* all of the fields, even the unused ones. */
  474.         struct ExtendedColorRequester   colorstruct;
  475.  
  476.         colorstruct.defcolor = 0;
  477.         colorstruct.window = mywindow;
  478.         newcolor = ExtendedColorRequester(&colorstruct);
  479.  
  480. ;--------------------------------------------------------------------
  481.  
  482. NAME
  483.                         MakeGadget
  484. SYNOPSIS
  485. MakeGadget(Buffer,String, X, Y)
  486.               A0    A1   D0 D1
  487. struct Buffer   *GadgetBlock;
  488. char                    *String;
  489. long                    D0,D1;
  490. DESCRIPTION
  491.  
  492.                 This  routine  prepares a buffer to be a standard BOOLEAN text
  493. gadget.   This is a simple way of producing gadgets for code that must
  494. be  reentrant,  and it is more efficient than defining gadgets in data
  495. statements.    The  routine  initializes  the  gadgets  to  a  set  of
  496. 'standard' values that should cover most cases and then links the four
  497. parts of the GadgetBlock together.
  498.  
  499.         Buffer  is  a pointer to a unitialized GadgetBlock, which contains
  500. the  necessary  Gadget, Border, border pairs and IntuitText structures
  501. needed to render a boolean gadget with a border and some text.
  502.  
  503.         String  is  a  pointer  to  the text that should appear inside the
  504. gadget.   The  gadget  is  automatically  sized  to  match the strings
  505. length.
  506.  
  507.         X  and  Y are the gadgets initial position, they are simply copied
  508. into LeftEdge and TopEdge in the gadget structure.
  509.  
  510. RETURNS
  511. SEE
  512. BUGS
  513. EXAMPLE
  514.  
  515.  
  516. ;--------------------------------------------------------------------
  517.  
  518. NAME
  519.                         MakeString
  520.  
  521. SYNOPSIS
  522. MakeString(Buffer,StringBuff,UndoBuff,MaxWidthBits,MaxNumChars, X, Y)
  523.              A0      A1          A2        D0          D1      D2  D3
  524.  
  525. struct Buffer   *StringBlock;
  526. char                    *StringBuff;
  527. char                    *UndoBuff;
  528. long                    MaxWidthBits, MaxNumChars, X, Y;
  529.  
  530. DESCRIPTION
  531.  
  532.         As  with  all  of  the  MakeGadget  functions, this one prepares a
  533. buffer  to  be used as a string gadget, that may be used re-entrantly.
  534. The  buffer need not be cleared first.  This means that you may create
  535. a temporary gadget on the stack.
  536.  
  537.         The  StringBuff  is  where the body of text inside the gadget will
  538. reside.
  539.  
  540.         When   the   gadget  is  activated,  the  text  in  StringBuff  is
  541. automatically copied (by intuition) into UndoBuff.  This allows you to
  542. type  Amiga-Q  and get the old string back.  This field may be null if
  543. you wish to have no undo.
  544.  
  545.         MaxWidthBits is the width of the frame around the gadget.
  546.  
  547.         MaxNumChars  is  the maximum number of characters that you will be
  548. able  to  type  into the gadget, including the terminating zero on the
  549. string.  MAKE SURE that this number is no greater than your StringBuff
  550. size, or else you're going to be typing over memory that isn't yours.
  551.  
  552.         X,Y  are the position of the upper left hand corner of the gadget.
  553. The border is actually 2 pixels above and to the left of this corner.
  554.  
  555. RETURNS
  556.         Nothing
  557. SEE
  558.  
  559.         MakeGadget,MakeProp,MakeScrollbar,LinkGadget,LinkProp,LinkString
  560.  
  561.  
  562. ;--------------------------------------------------------------------
  563.  
  564. NAME
  565.                         MakeProp
  566. SYNOPSIS
  567.  
  568. MakeProp(Buffer,Width,Height,Flags)
  569.          A0       D0   D1    D2
  570.  
  571. struct  Buffer  *PropBlock;
  572. long                    Width, Height, Flags;
  573.  
  574. DESCRIPTION
  575.  
  576.         This  routine  prepares an un-initialized buffer for use as a prop
  577. gadget.
  578.  
  579.         Buffer,  on  return,  will  contain  the  gadget,  along  with the
  580. necessary PropInfo and Image structures, all linked together.
  581.  
  582.         Width is the with of the container, in pixels.
  583.         Height is the height of the container in pixels.
  584.  
  585.         The  Flags  parameter  is  where you decide if you want FREEHORIZ,
  586. FREEVERT, or both.  It is simply copied into the gadget flags field.
  587.  
  588.  
  589. RETURNS
  590.  
  591.         Nothing
  592.  
  593.  
  594. ;--------------------------------------------------------------------
  595.  
  596. NAME
  597.                         DrawBox
  598. SYNOPSIS
  599.  
  600. DrawBox(rp,MinX,MinY,MaxX,MaxY)
  601.         A1  D0   D1   D2   D3
  602.  
  603. struct  RastPort                *rp;
  604. long    MinX,MinY,MaxX,MaxY;
  605.  
  606.  
  607. DESCRIPTION
  608.  
  609.                 This  routine  allows you to draw a simple box in one command.
  610. It  draws  the  box  in APen color, in the current draw mode, with the
  611. current line pattern.
  612.  
  613.                 (MinX,MinY)  are  the  upper  left  corner  of  the  box,  and
  614. (MaxX,MaxY) are the lower right.
  615.  
  616.                 The pen is left at the upper left corner (MinX,MinY).
  617.  
  618. ;--------------------------------------------------------------------
  619.  
  620. NAME
  621.                         MakeButton
  622. SYNOPSIS
  623.  
  624. MakeButton(Buffer,Image,Image2,Width,Height,Depth)
  625.              A0     A1    A2     D0    D1    D2
  626.  
  627.  
  628. struct  TwoImageGadget  *Buffer;
  629. char    *Image;         /* Pointer to the actual bitplane data */
  630. char    *Image2;        /* Pointer to the second image. */
  631. long    Width,Height,Depth;
  632.  
  633.  
  634.  
  635.  
  636. DESCRIPTION
  637.  
  638.         The  purpose  of  this  routine  is one similar to MakeGadget, but
  639. instead of using text for the button, it uses a graphic.  You supply a
  640. bitmap, and MakeButton will use it in it's rendering.
  641.  
  642.         You  may  have  either  one  or two images, the routine handles it
  643. routinely.   If you supply one image, then this sets GADGHCOMP, and if
  644. you  have two images, it sets GADGHIMAGE.  RELVERIFY is always set, so
  645. as  long  as  you  the  user  is  pressing  that gadget, the alternate
  646. highlight is shown.
  647.  
  648.         Buffer has room for two images.
  649.  
  650.         Image  is  a pointer to the actual image data, in CHIP memory, for
  651. this gadget.
  652.         Image2 is a pointer to the alternate image data.
  653.  
  654.         Width and Height make up the size of your image.
  655.  
  656.         Depth is how many bitplanes of data you've supplied.
  657.  
  658. BUGS
  659.         It's  not  really  a bug, but if your images aren't the same size,
  660. then one won't erase the other when it is drawn, so you may be showing
  661. an image with traces of the other one left there.
  662.  
  663. ;--------------------------------------------------------------------
  664.  
  665. NAME
  666.                         MakeScrollBar
  667. SYNOPSIS
  668.  
  669. MakeScrollBar(Buffer,Flags,Size,X,Y)
  670.                 A0    D0    D1 D2 D3
  671.  
  672. struct ScrollBlock *Buffer;
  673. long    Flags,Size,X,Y;
  674.  
  675.  
  676. DESCRIPTION
  677.  
  678.         This is a special routine that creates a scrollbar (which consists
  679. of  a prop gadget and two arrows) and you handle it like it's a single
  680. gadget.   You  may  have  either a horizontal scrollbar, or a vertical
  681. scrollbar.   These scrollbars are very much like the ones in workbench
  682. window  borders.   These  use slightly different images on the arrows,
  683. however.
  684.  
  685.         The  way  you  determine  how  this set up and oriented is by flag
  686. combinations.   If  you wished to put a scrollbar in the bottom border
  687. of a window, then you would pass (in flags):
  688.  
  689.                 Flags = (HORIZSLIDER | GRELBOTTOM | GRELWIDTH)
  690.  
  691.         If you wished it in the right border:
  692.  
  693.                 Flags = (VERTSLIDER | GRELRIGHT | GRELHEIGHT)
  694.  
  695.         The  idea is to allow you to manipulate the scrollbar as though it
  696. were  a  single  gadget, not three.  If you pass confusing flags (like
  697. GRELBOTTOM|GRELHEIGHT) then it is undefined what will happen.
  698.  
  699.         If all you want is a simple scrollbar that doesn't size, then just
  700. set VERTSLIDER or HORIZSLIDER.
  701.  
  702. SEE
  703.  
  704.  
  705. ;--------------------------------------------------------------------
  706.  
  707. NAME
  708.                         PurgeFiles
  709. SYNOPSIS
  710.         PurgeFiles(&FileRequesterStructure)
  711.                         A0
  712. DESCRIPTION
  713.         Clear  up  all  memory  and  file  locks  allocated  by  the  file
  714. requester.   This  routine must be called before your program exits if
  715. you  use  the  file requester with either FRQEXTSELECTM bit set or the
  716. FRQCACHINGM bit set.  The first bit is if you want the user to be able
  717. to select multiple files.  The file requester has to allocate a linked
  718. list  of  file  names which this function will purge.  The FRQCACHINGM
  719. bit  is set if you want the file requester to remember the contents of
  720. a directory between calls.
  721.  
  722.         This  routine can be called any time you want the buffers and file
  723. locks purge.
  724.  
  725. RETURNS
  726.         This routine does not return anything.
  727.  
  728. SEE
  729.         FileRequest
  730. BUGS
  731.         None known.
  732. EXAMPLE
  733.  
  734. main()
  735.         {
  736.         FileRequest(&FileRequesterStructure);
  737.  
  738.         .
  739.         .
  740.         .
  741.  
  742.         PurgeFiles(&FileRequesterStructure);
  743.         }
  744.  
  745.  
  746.  
  747. ;--------------------------------------------------------------------
  748.  
  749. NAME
  750.                         GetFontHeightAndWidth
  751. SYNOPSIS
  752.  
  753. DESCRIPTION
  754.  
  755.                 This allows you quick access to the font attributes set by the
  756. user  in preferences.  The font width is returned in D0 and the height
  757. is returned in D1.
  758.  
  759. RETURNS
  760. SEE
  761. BUGS
  762. EXAMPLE
  763.  
  764.  
  765.  
  766. ;--------------------------------------------------------------------
  767.  
  768. NAME
  769.                         LinkGadget
  770. SYNOPSIS
  771.  
  772. LinkGadget(Buffer,String,nw, X, Y)
  773.              A0     A1   A3 D0 D1
  774.  
  775. struct  GadgetBlock *Buffer;
  776. char    *String;
  777. struct  NewWindow *nw;
  778. long    X,Y;
  779.  
  780. DESCRIPTION
  781.  
  782.         This  is  actually  a superset of the previous command MakeGadget.
  783. What  this  does  is automatically link the gadget into your NewWindow
  784. structure's gadget list.
  785.  
  786.                 No registers are disturbed.
  787.  
  788. SEE
  789.         MakeGadget
  790. BUGS
  791.         n/a
  792.  
  793.  
  794.  
  795. ;--------------------------------------------------------------------
  796.  
  797. NAME
  798.                         LinkStringGadget
  799. SYNOPSIS
  800. LinkStringGadget(Buffer,StringBuf,UndoBuf,nw, WidthBits,NumChars, X, Y)
  801.                    A0     A1        A2    A3     D0       D1     D2 D3
  802.  
  803. struct  StringBlock *Buffer;
  804. char    *StringBuf;
  805. char    *UndoBuf;
  806. struct  NewWindow *nw;
  807. long    WidthBits,NumChars,X,Y;
  808.  
  809. DESCRIPTION
  810.  
  811.         This  is  number 2 in the LinkGadget routines.  This one obviously
  812. links  the  string  gadget  to the window's gadget list.  In fact, the
  813. only  difference  between  this  and  the  MakeString  routine  is the
  814. addition of the NewWindow pointer.
  815.  
  816. SEE
  817.         MakeStringGadget
  818.  
  819.  
  820. ;--------------------------------------------------------------------
  821.  
  822. NAME
  823.                         LinkPropGadget
  824. SYNOPSIS
  825.  
  826. LinkPropGadget(Buffer,nw, Width, Height, Flags, LeftEdge, TopEdge)
  827.                  A0   A3    D0     D1     D2       D3       D4
  828.  
  829. struct  PropBlock       *Buffer;
  830. struct  NewWindow       *nw
  831. long    Width,Height,Flags,LeftEdge,TopEdge;
  832.  
  833. DESCRIPTION
  834.  
  835.         Here  we  have a superset for MakeProp.  It works exactly the same
  836. as  MakeProp,  except  that  it attaches the gadget to the head of the
  837. list in the window.
  838.  
  839. SEE
  840.         MakeProp
  841.  
  842.  
  843. ;--------------------------------------------------------------------
  844.  
  845. FileRequester
  846.  
  847. NAME
  848.         FileRequester  - bring up a file/font requester.
  849.  
  850. SYNOPSIS
  851.         success = FileRequester(&FileRequesterStructure)
  852.           D0                                                      A0
  853.  
  854. FUNCTION
  855.         Bring  up  a  fully  intuitionized file/font requester (actually a
  856. window) and let the user select a file/font.
  857.  
  858. INPUTS
  859.         &FileRequesterStructure  -  pointer  to  an  initialized  (can  be
  860. initialized mostly to zeroes) file requester structure.
  861.  
  862. RESULT
  863.         Returns  TRUE  or FALSE to say whether the user selected a file or
  864. not.   The  file name(s) or font selected are then found by looking at
  865. the file requester structure whose address was passed.
  866.  
  867.         For  ideas  on  customizing the file requester for your particular
  868. system  (thus  overriding the defaults used by programmers who use the
  869. file requester) see the customizefile.asm file.
  870.  
  871. BUGS
  872.         Problem  with  an  Intuition bug that messes up the current active
  873. window  if  a  window  closes  when one of its string gadgets is still
  874. active.   This bug show up if you run the file requester straight from
  875. a CLI window and then exit it with Amiga-L.
  876.         I have heard that it resets some window flags when run on a custom
  877. screen,  but I believe this is a feature of Intuition, not of the file
  878. requester.
  879.  
  880. SEE ALSO
  881.         PurgeFiles
  882.  
  883.  
  884.         The  file  requester  in  the  requester  library  allows to put a
  885. powerful  and  easy  to  use  file requester into your programs with a
  886. minimum of work and at a very small expense in program size.  The file
  887. requester  was  designed  to be as easy as possible to call, while not
  888. sacrificing power.
  889.  
  890.         To  get  the  file  requester to come up all you need to do (after
  891. opening  the  requester  library of course) is to allocate space for a
  892. FileRequester  structure  and  then  call  the file requester with the
  893. address  of  this structure, with all fields initialized to zero, like
  894. this:
  895.  
  896. struct FileRequester MyFileReqStruct;
  897.  
  898. success = FileRequester(&MyFileReqStruct);
  899.  
  900.         The function will return either one or zero for success or failure
  901. respectively.
  902.  
  903.         You can specify what screen the file requester should appear on in
  904. one  of  two  ways.  If you want it to appear on a custom screen, then
  905. the  best  way  is  to  set  the  pr_WindowPtr  field  in your process
  906. structure  to  point at one of the windows on your screen (this should
  907. be  done anyway, so that DOS requesters appear on your custom screen).
  908. This  field  is looked at by all functions in the requester library so
  909. this  way  is the simplest method.  The other way, which overrides the
  910. pr_WindowPtr  field  is to initialize the frq_Window field to point at
  911. one of your windows.  If this field is non-zero, it is used instead of
  912. the pr_WindowPtr field of your process structure.  Important note:  It
  913. is  VERY  important  that you reset the pr_WindowPtr field back to its
  914. original  value  before  your  program  exits.  If you don't, the next
  915. program run may try to open a requester window on a now closed screen.
  916.  
  917.         The  file  requester  was  carefully  designed so that it could be
  918. called  without  having  to  initialize  very  many  fields.   This is
  919. demonstrated  by  seeing  that  it  is  possible  to  call  it without
  920. initializing any fields.  There are a few fields that are necessary to
  921. actually  get  any  use  out  of  it,  but  very  view.  Those few are
  922. documented in the following paragraph.
  923.  
  924.         Although  you can bring the file requester up without initializing
  925. any  fields there are a couple of fields that you will definitely want
  926. to  initialize.   The  file  requester isn't much use unless you get a
  927. file  name back out of it, and for this you need to initialize the Dir
  928. and  File  fields.   These two fields should point to character arrays
  929. that  are,  respectively,  DSIZE+1  and FCHARS+1 bytes long.  When the
  930. file  requester  is first run the file requester looks in these arrays
  931. for  the  default  directory  and file names and if the user selects a
  932. file  name  the  directory  and  file  name are copied back into these
  933. arrays.  You will probably want to initialize the Title field with the
  934. message  that you want to have appear at the top of the file requester
  935. window.
  936.  
  937.         If  you initialize the PathName field (it should point an array of
  938. at least DSIZE+FCHARS+2 characters) then when the user selects a file,
  939. the complete path name will be put into this array.
  940.  
  941.         The Window field is used to specify what window the file requester
  942. is associated with.  This is used to get the file requester to show up
  943. on  a  custom  screen.   Generally  this  field should be unnecessary.
  944. There  is a variable provided in a process structure which is used for
  945. this purpose.  Any program that opens a custom screen and uses any DOS
  946. functions  should set the pr_Window pointer in their process structure
  947. to  a  pointer  to their window so that DOS requesters will show up on
  948. their  custom  screen.   If  you do this, then the file requester will
  949. also  show  up  on  your custom screen.  If you are not using a custom
  950. screen  then you don't need to set the pr_Window pointer or the Window
  951. field  in  the  file  requester  structure.   Note:  If you do set the
  952. pr_Window  structure in the process structure, be sure to return it to
  953. its old value before your program exits.
  954.  
  955.         If  the  extended  select  bit  is set in the Flags field then the
  956. MaxExtendedSelect  fields  specifies  the maximum number of files that
  957. the user can select.  This is ignored if the extended bit isn't set in
  958. the Flags field.
  959.  
  960.         numlines and numcolumns specify the maximum size that the file box
  961. will  be in characters.  If the system is low on memory, or the screen
  962. is  too  small,  these will be shrunk as necessary.  devcolumns is the
  963. number of columns of characters wide that the device box will be.
  964.  
  965.         The  Flags field can currently contain seven different flags.  The
  966. first  flag,  FRQSHOWINFOM,  specifies  whether  or not '*.info' files
  967. (files  containing information for icons) should be filtered out.  The
  968. default is for them to be filtered.
  969.  
  970.         The  FRQEXTSELECTM  flags  specifies  whether  extended  select is
  971. wanted.   If  you  set this flag then you should probably also set the
  972. MaxExtendedSelect  field.   If  you  don't  then the maximum number of
  973. files  the  user  will be able to select will be 65536, which is a bit
  974. high  for  most  purposes.  Note:  If you use this bit then you _must_
  975. call  PurgeFiles()  with  the  address of your FileRequester structure
  976. after  the  last time you call the file requester, in order to free up
  977. any  memory  used  in  the  extended select structures.  When the user
  978. selects  multiple files, a linked list of the file names selected (not
  979. including the directory name) will appear in the ExtendedSelect field.
  980. The  list  is a linked list of ESStructures.  The directory name which
  981. should  be  prepended  to  all of these names will appear in the array
  982. pointed to by the Dir field.
  983.  
  984.         The  FRQCACHINGM  flag  specifies  whether  or not directories are
  985. cached  from  one  call  to  the next.  This is a very handy features,
  986. especially  for those who lack hard drives.  However, if this features
  987. is  used, you _must_ call the PurgeFiles() routine with the address of
  988. your  FileRequester  structure  after  the last time you call the file
  989. requester, in order to free up any memory used in caching.
  990.  
  991.         As  well  as being a file requester, this routine can be used as a
  992. font requester too.  Just set the FRQGETFONTSM flags to turn it into a
  993. font  requester.   You  should  also  put the name 'fonts:' in the Dir
  994. array.   The file/font requester will return a one or zero for success
  995. or  failure as usual, the font name will be returned in the File array
  996. and  the  font  size  and  style will be returned in the FontYSize and
  997. FontStyle  fields.   Note  that  the font requester allows the user to
  998. change  the  directory  where  the  fonts are read from.  Although you
  999. should  put  'fonts:' there, you should allow for the possibility that
  1000. the  user  might  change  the  directory.  They might, perhaps, have a
  1001. separate  disk  full  of  fonts.   The simplest way to deal with fonts
  1002. coming  from  different  directories,  is  to  set  the PathName field
  1003. instead of the Dir field.  You can then use the string in the PathName
  1004. field  (which  will  contain  the directory and font name) as the font
  1005. name.   If  you  don't  do this, then you have to concatenate the font
  1006. name  and  the  directory  name  yourself.   If  you  use the PathName
  1007. variable  then  it  is quite reasonable to leave the File field blank,
  1008. since  all  the information you need can be obtained from the PathName
  1009. string.
  1010.  
  1011.         The  FRQINFOGADGETM flag specifies whether or not a hide/show info
  1012. gadget should appear on the file requester.  This lets the user toggle
  1013. the  state  of  the  FRQSHOWINFOM flag to decide whether or not to let
  1014. '*.info'  files  show  up.  This is not recommended for most programs,
  1015. since  most  users  have  no  reason  to  look at '*.info' files.  The
  1016. default is to _not_ have this gadget show up.
  1017.  
  1018.         The FRQHIDEWILDSM flag specifies whether or not to have 'show' and
  1019. 'hide'  string  gadgets.   These gadgets let the user use wildcards to
  1020. specify  which  files  should  show  up.  All files are first compared
  1021. against  the 'show' gadget.  If they fail the comparison, they are not
  1022. displayed.  Then they are compared against the 'hide' gadget.  If they
  1023. match  here then they are not displayed.  If the gadgets are empty, no
  1024. comparisons  are done.  Important note:  Even if these gadgets are not
  1025. displayed,  the comparisons are still done on the data which is in the
  1026. Hide  and  Show  fields of the file requester structure.  The standard
  1027. AmigaDOS wildcards (including '#', '?', '|' and '*') are supported.
  1028.  
  1029.         Normally  the  file  requester  appears  centered  under the mouse
  1030. pointer.   If  you would like to specify its opening position you must
  1031. set   the   ABSOLUTEXYM   flag  and  then  put  the  x,y  position  in
  1032. WindowLeftEdge and WindowTopEdge.
  1033.  
  1034.         If you feel that the file requester's cached directories (selected
  1035. by  FRQCACHINGM)  should  be  purged  whenever  the directory has been
  1036. changed,  then  set  FRQCACHEPURGEM  field and the file requester will
  1037. check the dates whenever it is opened.
  1038.  
  1039.         If you feel that the file requester should never cache directories
  1040. unless  it  manages  to  read  in the entire directory before the user
  1041. sends  it  away,  then  set  the FRQNOHALFCACHEM flag.  This flag will
  1042. cause  the file requester to automatically flush any incompletely read
  1043. directories when it exits.
  1044.  
  1045.         If  you  would  like your directories to appear in 'natural' order
  1046. instead of alphabetically sorted, set the FRQNOSORTM flag.
  1047.  
  1048.         If you would like the file requester to appear without a drag bar
  1049. or depth arrangement gadgets, set the FRQNODRAGM flag.
  1050.  
  1051.         If  you  are using the file requester to select a filename to save
  1052. to,  you  should set the FRQSAVINGM flag.  Similarly, if you are using
  1053. the  file  requester to select a filename to load from, you should set
  1054. the  FRQLOADINGM flag.  These flags are not currently used by the file
  1055. requester,  but  they  may  be  used in the future.  They also make it
  1056. easier  for  people who want to personalize the file requester to make
  1057. it behave differently for loading vs.  saving.
  1058.  
  1059.         If  you  want  the user to select a drawer name rather than a file
  1060. name,  set  the  FRQDIRONLYM  flag.   The file requester will then not
  1061. display  some gadgets and will display only drawers, not files, in the
  1062. file window.  The path name selected will be returned in the Dir field
  1063. and  in  the  PathName  field if supplied.  When in this mode, hitting
  1064. return on the drawer gadget causes the file requester to exit with the
  1065. directory currently in the gadget.  Hitting SHIFT or ALT return causes
  1066. the  file  requester  to  read the specified directory and display all
  1067. directories in there.
  1068.  
  1069.  
  1070.         The  various  color  fields  let  you  specify  the colors of many
  1071. aspects of the file requester.  If they are left as zero then the file
  1072. requester uses various non-zero certain default values for them.
  1073.  
  1074.         The  WindowLeftEdge  and  WindowTopEdge  fields are covered in the
  1075. section on the ABSOLUTEXYM flag.
  1076.  
  1077.         The  FontYSize  and FontStyle fields are covered in the section on
  1078. the FRQGETFONTSM flag.
  1079.  
  1080.         The  ExtendedSelect  field  is  covered  in  the  section  on  the
  1081. FRQEXTSELECTM flag.
  1082.  
  1083.         The  Hide  and  Show  fields  are  covered  in  the section on the
  1084. FRQHIDEWILDSM flag.
  1085.  
  1086. Set this bit if you are selecting a file to save to.
  1087. Set this bit if you are selecting a file(s) to load from.
  1088. These two bits (save and load) aren't currently used for
  1089. anything, but they may be in the future, so you should
  1090. remember to set them.  Also, these bits make it easier if
  1091. somebody wants to customize the file requester for their
  1092. machine.  They can make it behave differently for loading
  1093. vs saving.
  1094.  
  1095.         The  four  BufferPos  and  DispPos  variables  are  copies  of the
  1096. equivalent  variables  from  the four string gadgets.  This is so that
  1097. when  the  file  requester goes away and then is brought up again, the
  1098. cursor in the string gadgets will appear in the same places as before.
  1099. These fields should not need to be touched by the programmer.
  1100.  
  1101.         The  rest  of the fields are private.  Don't go touching them.  We
  1102. guarantee  to  move them around and change their meaning, just to make
  1103. sure  that  nobody tries to use them.  They are largely concerned with
  1104. keeping  track  of  memory  used in directory caching.  This memory is
  1105. freed  with  the  PurgeFiles() routine.  That's all you should need to
  1106. know.
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112. ;--------------------------------------------------------------------
  1113.  
  1114. RealTimeScroll
  1115.  
  1116. NAME
  1117.         RealTimeScroll  -  do the calculations necessary for a responsive,
  1118. pixel resolution, real time scroll routine.
  1119.  
  1120. SYNOPSIS
  1121.         RealTimeScroll(&ScrollStruct);
  1122.                                                  A0
  1123.  
  1124. FUNCTION
  1125.         Make  the  implementation  of  real time scrolling area easier and
  1126. make the real time scrolling area more responsive to the user by doing
  1127. pixel resolution scrolling and by checking the current position of the
  1128. scroll  bar  in mid scroll.  This routine calculates how far to scroll
  1129. each  time  and calculates which lines of text, graphics etc.  need to
  1130. be redrawn to fill in the empty area.
  1131.  
  1132. INPUTS
  1133.         &ScrollStruct - pointer to an initialized scroll structure.
  1134.  
  1135. RESULT
  1136.         This routine returns no result code.
  1137.  
  1138. BUGS
  1139.         None known
  1140.  
  1141. SEE ALSO
  1142.         n/a
  1143.  
  1144.  
  1145.         It is relatively easy to implement a real time scrolling area, but
  1146. the most obvious implementations suffer from a lack of responsiveness.
  1147. Typically  the  routines  look  at  where the scroll bar is, calculate
  1148. where  to  scroll  to,  scroll  there  in  several  jumps  to make the
  1149. scrolling  look smooth, and the examine the scroll bar again to see if
  1150. it  has  moved.  This means that there are periods, perhaps annoyingly
  1151. long,  where  the  program may be scrolling in one direction while the
  1152. scroll  bar is being dragged in another.  The answer is to examine the
  1153. scroll  bar  to  find out the desired location, scroll partway towards
  1154. the  destination and then recheck the scroll bar's location.  This can
  1155. greatly  increase  the  responsiveness,  since the program is checking
  1156. after  every  ScrollRaster()  call,  instead of after a dozen or more.
  1157. However,  the  calculations,  especially  of  which  lines  need to be
  1158. refreshed  and  where, get somewhat more complicated.  This routine is
  1159. designed  to  simplify this situation by taking care of as many of the
  1160. messy details as possible.
  1161.  
  1162.         First   you   must   initialize   the   scroll   structure.    The
  1163. TopEntryNumber, NumEntries and NumLines fields describe where the data
  1164. is  currently.   NumEntries  is  the number of lines of data in total,
  1165. NumLines  is  the number of lines that are visible, and TopEntryNumber
  1166. is the line number of the first line visible (it therefore ranges from
  1167. zero to NumEntries - 1).
  1168.  
  1169.         LineSpacing  is  the  number of pixels high that each line of data
  1170. is.   For  text  this  will  typically be eight or nine (for eighty or
  1171. sixty  column  topaz).   This  can  be  set  to  one  if  your data is
  1172. continuous (as in the case of some graphics).
  1173.  
  1174.         PropGadget  is a pointer to the prop gadget which is being used to
  1175. control this scroll area.
  1176.  
  1177.         RedrawAll  is  a  pointer  to  a  function that you must supply to
  1178. redraw the entire visible window.  This routine is called whenever the
  1179. user  gets  so far ahead of the scroll routine that scrolling to where
  1180. the  users  wants  to  be  would  take  to  long.  Before calling this
  1181. routine,  the  ScrollStruct that was passed to this routine is updated
  1182. with  the  desired TopEntryNumber so that your routine will know which
  1183. data to redraw.
  1184.  
  1185.         ReadMore is an optional routine that will usually not be used.  It
  1186. is  used  if more data is being added while the scrolling is going on.
  1187. This  is  used,  for  instance,  by  the  FileRequest in the requester
  1188. library, to continue attempting to read the directoy while the user is
  1189. scrolling.   Leave  this set to zero if you don't need it.  It is only
  1190. called  when no scrolling is being done, but the user has not released
  1191. the scroll bar.
  1192.  
  1193.         ScrollAndDraw  is the most important routine.  This routine, which
  1194. you  must  supply,  is called whenever the data must be scrolled.  The
  1195. actual  scrolling  and  redrawing of the data is done by this routine,
  1196. but because the scroll amount, the lines to be drawn and the number of
  1197. lines  to  be  drawn are passed to this routine, the routine is fairly
  1198. simple.  Four parameters are passed to this routine:
  1199.  
  1200. ScrollAndDraw(firstlinenum, firstliney, scrollamount, numlines);
  1201.  
  1202.         All  four parameters are passed as longs, both on the stack and in
  1203. D0-D3,  so  that  the  routine  can  easily  be written in either C or
  1204. assembler.
  1205.  
  1206.         When the ScrollAndDraw, ReadMore or RedrawAll routines are called,
  1207. A4,  A5  and  A6  all  contain  the  same  values  they contained when
  1208. RealTimeScroll  was  called.   This allows programs written in C using
  1209. the  small  data  model  to be able to access their data properly from
  1210. these  routines without any special work.  All other registers (except
  1211. those that are used to pass parameters in) could contain anything.
  1212.  
  1213.  
  1214.  
  1215.  
  1216. ;--------------------------------------------------------------------
  1217.  
  1218.  
  1219.  
  1220. TextRequest
  1221.  
  1222. NAME
  1223.         TextRequest  - bring up a text requester with one to three gadgets
  1224. and get a response.
  1225.  
  1226. SYNOPSIS
  1227.         result = TextRequest(&TRStructure);
  1228.           D0                                      A0
  1229.  
  1230. FUNCTION
  1231.         Bring  up  a requester (actually a window) containing a message to
  1232. the  user  and  give  him  a  choice  of  from  one to three different
  1233. responses.   The  window  automatically  sizes  to  fit  the  text and
  1234. printf() style formatting can be used by TextRequest() to generate the
  1235. message to the user.
  1236.  
  1237. INPUTS
  1238.         &TRStructure - pointer to an initialized text requester structure.
  1239.  
  1240. RESULT
  1241.         Returns  either  zero,  one  or two, depending on which gadget the
  1242. user  clicks  on.   All  of  the  gadgets  are  optional,  so that the
  1243. requester  can  be  used  to  bring up requesters that give the user a
  1244. message,  without demanding an answer, by having only a single gadget.
  1245. The  gadget  in  the  lower  right  hand  corner (the negative gadget)
  1246. returns a zero, the gadget in the lower left hand corner (the positive
  1247. gadget)  returns a one and the gadget in the middle returns a two.  If
  1248. none  of these three gadgets are requested, a close gadget is attached
  1249. to the window and it returns a zero.
  1250.  
  1251. BUGS
  1252.         If  any  line  of  the  text  to  be printed is too long, then the
  1253. requester  will  attempt  to open up an impossibly large window, which
  1254. will fail and the requester will return a zero.
  1255.         The  buffer used for formatting the text is 5000 bytes long, so no
  1256. messages can be longer than this.
  1257.  
  1258. SEE ALSO
  1259.         SimpleRequest
  1260.         TwoGadRequest
  1261.  
  1262.  
  1263.         The  purpose  of  this  routine  is  to  make  it as easy to print
  1264. formatted  messages  in  intuitionized window with gadgets as it is to
  1265. print  them  on the CLI screen.  For maximum ease of use, at a loss of
  1266. flexibility,  please see the functions SimpleRequest and TwoGadRequest
  1267. which  are  simply  glue  code functions to make calling TextRequest a
  1268. trivial matter.
  1269.  
  1270.         If  you want the text requester to appear on a custom screen, then
  1271. you must set the pr_WindowPtr field in your process structure to point
  1272. at  one  of the windows on your screen (this should be done anyway, so
  1273. that  DOS  requesters  appear  on  your custom screen).  This field is
  1274. looked at by all functions in the requester library so this way is the
  1275. simplest method.  Important note:  It is VERY important that you reset
  1276. the  pr_WindowPtr field back to its original value before your program
  1277. exits.  If you don't, the next program run may try to open a requester
  1278. window on a now closed screen.
  1279.  
  1280.         The  structure  whose  address  is  passed to this routine must be
  1281. initialized first.
  1282.  
  1283.         The  Text field is initialized with the body of the text you would
  1284. like  displayed.  This text can contain both printf() style formatting
  1285. and  end  of  line characters ('\n' in C, ascii 10 in assembler).  The
  1286. printf()  style formatting, is expanded out into the final text string
  1287. using  the  parameter  list which is pointed to by the Controls field.
  1288. Line  feeds  are  used, as usual, to specify a new line, thus allowing
  1289. very  long  and  complex  messages  to  be  displayed.   The  are some
  1290. limitations  on  the  types  of  printf() formatting that can be used.
  1291. Since the RawDoFmt() function of the ROM is used to do the formatting,
  1292. only   functions   supported   by   it  can  be  used.   For  complete
  1293. documentation,  see  the documentation of the RawDoFmt() command.  The
  1294. main  things  to be aware of is that floating point numbers can not be
  1295. printed,  and,  if  you  are using a compiler that uses thirty-two bit
  1296. ints  then  we  will  have to specify '%ld' to print an int, since the
  1297. RawDoFmt command assumes an int size of sixteen bits.
  1298.  
  1299.         The Controls field points to a list of parameters, one for each of
  1300. the  '%'  parameters in the Text field.  Normally these will be pushed
  1301. on  to the stack and the stack pointer copied into the Controls field.
  1302. The first parameter used (the first one to occur in the string) should
  1303. be  at  the beginning of the list, that is, at the lowest address, the
  1304. one pointed at by the Controls parameter.
  1305.  
  1306.         The Window field can be used to specify what screen you would like
  1307. the requester to appear on.  This field is usually not necessary since
  1308. the same information can be conveyed in the pr_WindowPtr field of your
  1309. process  structure.   However  this  field  was  left  in  so that the
  1310. TextRequest  function  could  be  called  from  a  task (which lacks a
  1311. process  structure and therefore a pr_WindowPtr field).  If this field
  1312. is  non-zero or if the calling program is a task then this field takes
  1313. precedence over the pr_WindowPtr field.
  1314.  
  1315.         MiddleText,  PositiveText  and NegativeText are the pieces of text
  1316. used  for  the  three gadgets.  These three gadgets, when present, are
  1317. placed   in  the  middle,  the  left  and  the  right  of  the  window
  1318. respectively.   All  three  gadgets are placed along the bottom of the
  1319. window.   All of the gadgets are optional.  If a gadget is not wanted,
  1320. the  text  pointer  should be set to zero.  The values returned if the
  1321. user  clicks  on these gadgets are two, one or zero, respectively.  If
  1322. none  of  the gadgets are present (if all of the text fields are zero)
  1323. then  a  standard  CLOSEWINDOW gadget is attached to the window.  This
  1324. gadget returns a zero.
  1325.  
  1326.         The  requester  attempt  to  appear so that the negative gadget is
  1327. underneath  the  mouse pointer.  If the negative gadget is not present
  1328. it will attempt to appear so that a different gadget is underneath the
  1329. mouse  pointer.   This is to make it as convenient as possible for the
  1330. user  to  respond  to,  and  especially  to respond negatively to, the
  1331. requester.
  1332.  
  1333.         In  addition  to  responding  to  the  requester  with  the mouse,
  1334. keyboard  shortcuts are available.  The user can type ESC, 'N', 'Q' or
  1335. 'B'  as  a  shortcut to clicking on the negative gadget.  The user can
  1336. type  'Y'  or 'V' as a shortcut to clicking on the positive gadget and
  1337. can type 'M' as a shortcut to clicking on the middle gadget.
  1338.  
  1339.         The  Title  field  of  the structure should either point to a null
  1340. terminated  string  to  be  used in the windows title bar or should be
  1341. null.
  1342.  
  1343.         The  KeyMask  field  is  used  to  regulate  the  use  of keyboard
  1344. shortcuts.  The qualifier field of all keyboard messages is ANDed with
  1345. this  field,  and  the  keypress  is  ignored  if  the result is zero.
  1346. Therefore,  to enable all keypresses to be used as keyboard shortcuts,
  1347. initialize  this  field to $FFFF.  To turn off the keyboard shortcuts,
  1348. initialize  this  field to 0.  To force the user to hold down the left
  1349. or right amiga key, initialize this field to AMIGAKEYS.
  1350.  
  1351.         The  textcolor,  detailcolor  and  blockcolor  fields  can be left
  1352. unitialized (ie; set to zero) if you wish, in which case the requester
  1353. will  use  the  default values of one, zero and one respectively.  The
  1354. textcolor  field  is used for the color of the actual text message and
  1355. the detail and block color fields are simple copied into the fields of
  1356. the same name in the new window structure.
  1357.  
  1358. ;--------------------------------------------------------------------
  1359.  
  1360.  
  1361. SimpleRequest
  1362.  
  1363. NAME
  1364.         SimpleRequest - bring up a text requester and wait for the user to
  1365. acknowledge it.
  1366.  
  1367. SYNPOSIS
  1368.         SimpleRequest(string, parameterlist, , ,)
  1369.                                         A0        A1
  1370.  
  1371. FUNCTION
  1372.         Bring  up  a requester (actually a window) containing a message to
  1373. the  user  and  wait  for  the  user  to  acknowledge  it.  The window
  1374. automatically  sizes to fit the text and printf() style formatting can
  1375. be used by TextRequest() to generate the message to the user.
  1376.  
  1377. INPUTS
  1378.         string  -  a  null  terminated  string,  containing printf() style
  1379. formatting commands if desired.
  1380.         parameterlist - the parameters corresponding to the printf() style
  1381. formatting  commands  in  the string.  In C these are listed after the
  1382. control  string,  exactly as with printf().  In assembler, the address
  1383. of the list of parameters is put in A1.
  1384.  
  1385. RESULT
  1386.         No result code is returned.
  1387.  
  1388. BUGS
  1389.         See TextRequest
  1390.  
  1391. SEE ALSO
  1392.         TextRequest
  1393.         TwoGadRequest
  1394.  
  1395.  
  1396.         This  function was designed to make it as easy to give messages to
  1397. the  user  and await acknowledgment in an intuition style requester as
  1398. it  is  using  printf() and getc().  Simply replace almost any call to
  1399. printf()  with a call to SimpleRequest and a requester will appear and
  1400. not  disappear until the user acknowledges it (either with a keystroke
  1401. or with the mouse).
  1402.  
  1403.         Example:
  1404.                 SimpleRequest("There  have  %d  changes  made  to this file.",
  1405.                                                 numchanges);
  1406.  
  1407.         Please  see  the  TextRequest  documentation for further important
  1408. details.   This  routine  is simply a few lines of assembler glue code
  1409. for  the TextRequest routine.  The TextRequest routine is a little bit
  1410. more   complicated   to   use,  but  it  allows  correspondingly  more
  1411. flexibility.   It  is  fairly  simple to modify the glue code to allow
  1412. still more high level entry points to the TextRequest routine.
  1413.  
  1414.  
  1415.         This  is  a  complete  program that makes use of the SimpleRequest
  1416. function  from  assembler,  and  demonstrates a few of the features of
  1417. Format (which is used by SimpleRequest).
  1418.  
  1419. ;--------------------------------------------------------------------
  1420. ;-----CUT HERE---------------CUT HERE--------------------------------
  1421. ;--------------------------------------------------------------------
  1422.  
  1423.         INCLUDE "libraries/reqbase.i"
  1424.  
  1425.         public  SimpleRequest
  1426.         public  _ReqBase,_main
  1427.  
  1428. ;--------------------------------------------------------
  1429. ; This file should be linked with reqglue.o, for the SimpleRequest
  1430. ;function.
  1431. ;--------------------------------------------------------
  1432.  
  1433. SYS     MACRO
  1434.         XREF    _LVO\1
  1435.         JSR     _LVO\1(A6)
  1436.         ENDM
  1437.  
  1438. ;--------------------------------------------------------
  1439.  
  1440.  
  1441. _main
  1442.         OpenReq
  1443. mystart
  1444.  
  1445.         MOVE.L  A6,A5
  1446.         MOVE.L  A6,_ReqBase
  1447.  
  1448.  
  1449.         PEA             string
  1450.         MOVE.L  #$C0FFEE,-(SP)
  1451.         MOVE.W  #$1CE,-(SP)
  1452.         MOVE.W  #'B',-(SP)
  1453.         MOVE.L  #-12345,-(SP)
  1454.         MOVE.L  SP,A1
  1455.         LEA             Text,A0
  1456.         JSR             SimpleRequest
  1457.  
  1458.         LEA             16(SP),SP
  1459.  
  1460.         MOVE.L  A5,A1
  1461.         MOVE.L  4,A6
  1462.         SYS             CloseLibrary
  1463.  
  1464.         MOVEQ   #0,D0
  1465.         RTS
  1466. string
  1467.         DC.B    "This is a string.",0
  1468. Text
  1469.         DC.B    "A long (signed) decimal is: %ld,",10
  1470.         DC.B    "a character is: %c,",10
  1471.         DC.B    "a 16 bit hex val might be: %x, ",10
  1472.         DC.B    "a register-style format 32 bit hex: $%08lx,",10
  1473.         DC.B    "and a string might read: `%s'.",0
  1474.  
  1475.         dseg
  1476.  
  1477. _ReqBase        DC.L    0       ;The SimpleRequest function in the glue code
  1478.                                                 ;needs this variable.
  1479.  
  1480.         END
  1481.  
  1482. ;--------------------------------------------------------------------
  1483. ;-----CUT HERE---------------CUT HERE--------------------------------
  1484. ;--------------------------------------------------------------------
  1485.  
  1486.  
  1487.  
  1488.  
  1489. ;--------------------------------------------------------------------
  1490.  
  1491.  
  1492.  
  1493. TwoGadRequest
  1494.  
  1495. NAME
  1496.         TwoGadRequest - bring up a text requester and wait for the user to
  1497. acknowledge it.
  1498.  
  1499. SYNPOSIS
  1500.         result = TwoGadRequest(string, parameterlist, , ,)
  1501.                                                          A0        A1
  1502.  
  1503. FUNCTION
  1504.         Bring  up  a requester (actually a window) containing a message to
  1505. the user and wait for the user to click on either the OK or the CANCEL
  1506. gadget.   The  window automatically sizes to fit the text and printf()
  1507. style  formatting can be used by TextRequest() to generate the message
  1508. to the user.
  1509.  
  1510. INPUTS
  1511.         string  -  a  null  terminated  string,  containing printf() style
  1512. formatting commands if desired.
  1513.         parameterlist - the parameters corresponding to the printf() style
  1514. formatting  commands  in  the string.  In C these are listed after the
  1515. control  string,  exactly as with printf().  In assembler, the address
  1516. of the list of parameters is put in A1.
  1517.  
  1518. RESULT
  1519.         Either  one  or  zero  is  returned, depending on whether the user
  1520. selected, respectively, the OK or the CANCEL gadget.
  1521.  
  1522. BUGS
  1523.         See TextRequest
  1524.  
  1525. SEE ALSO
  1526.         TextRequest
  1527.         SimpleRequest
  1528.  
  1529.  
  1530.         This  function was designed to make it as easy to give messages to
  1531. the  user  and get a response in an intuition style requester as it is
  1532. using printf() and getc().  Simply replace almost any call to printf()
  1533. with  a  call  to  SimpleRequest  and  a requester will appear and not
  1534. disappear  until  the  user responds to it (either with a keystroke or
  1535. with the mouse).
  1536.  
  1537.         Example:
  1538.                 if (TwoGadRequest("There have %d changes made to this file.\n"
  1539.                                                   "O.K. to continue?",
  1540.                                                   numchanges))
  1541.                         exit(10);
  1542.  
  1543.         Please  see  the  TextRequest  documentation for further important
  1544. details.   This  routine  is simply a few lines of assembler glue code
  1545. for  the TextRequest routine.  The TextRequest routine is a little bit
  1546. more   complicated   to   use,  but  it  allows  correspondingly  more
  1547. flexibility.   It  is  fairly  simple to modify the glue code to allow
  1548. still more high level entry points to the TextRequest routine.
  1549.  
  1550.  
  1551.  
  1552. -------------------------------------------------------------------
  1553. NAME
  1554.         GetString
  1555.  
  1556. BOOL = GetString(buffer, title, window, visiblechars, maxchars)
  1557. D0                 A0      A1     A2        D0          D1
  1558.  
  1559. DESCRIPTION
  1560.         This  routine allows you to bring up a nice intuition style string
  1561. requester  in  its  own window and get a single line of input from the
  1562. user in just a one line function call.
  1563.  
  1564.         buffer  points  to  the  a buffer containing the string which will
  1565. appear  when  the string gadget first appears and it is also where the
  1566. result will be put, if this routine returns TRUE.
  1567.         Title  is  a pointer to a null terminated string that will be used
  1568. for the window title.
  1569.         Window  can  be  used  to  specify  what screen you would like the
  1570. requester  to  appear on.  You simply put a window pointer in it (or a
  1571. zero if you want the requester to appear on the workbench screen).  If
  1572. you have already set your pr_WindowPtr then you can simply pass a zero
  1573. for the window pointer and the pr_WindowPtr value will be used.
  1574.         visiblechars  specifies  how  many  characters  should actually be
  1575. visible at one time.
  1576.         maxchars   specifies   how  long  the  buffer  is,  including  the
  1577. terminating zero.
  1578.  
  1579. RETURNS
  1580.         This  routine returns true or false, depending on whether the user
  1581. clicked  on  the  cancel  gadget  (FALSE)  or clicked on the OK gadget
  1582. (TRUE)  or clicked on the close window gadget (FALSE) or hit return in
  1583. the string gadget (TRUE).
  1584.  
  1585. BUGS
  1586.         None known.
  1587.  
  1588.  
  1589.  
  1590. -------------------------------------------------------------------
  1591. NAME
  1592.         NewGetString
  1593. BOOL = NewGetString(getstringstruct)
  1594. D0                        A0
  1595.  
  1596. DESCRIPTION
  1597.         This  is  just  a  different way of calling the GetString routine.
  1598. Instead  of  passing  five different parameters, you fill out entries in a
  1599. structure and pass it's address.  The structure is called GetStringStruct.
  1600. The  values  you put into the structure are the same as the ones passed to
  1601. the GetString function.
  1602.  
  1603. BUGS
  1604.         None known.
  1605.  
  1606. SEE ALSO
  1607.         GetString
  1608.  
  1609.  
  1610. -------------------------------------------------------------------
  1611. NAME
  1612.         GetLong
  1613.  
  1614. BOOL = GetLong(&GetLongStruct)
  1615. D0                   A0
  1616.  
  1617. DESCRIPTION
  1618.         This  routine allows you to bring up a nice intuition style string
  1619. requester  in  its  own  window and get a single signed thirty-two bit
  1620. number  from the user in just a one line function call (although a few
  1621. fields in the structure must be initialized first).
  1622.  
  1623.         The  GetLongStruct  contains  fields  for  letting you specify the
  1624. title  bar  message,  the  default  value  that  should  appear in the
  1625. requester  and  the maximum and minimum values that the routine should
  1626. allow  to  be  entered.   If  the  routine  returns  TRUE  (indicating
  1627. successful  entry  of  a  number)  then  the result is returned in the
  1628. result field of the structure.
  1629.         The window field can be used to specify what screen you would like
  1630. the requester to appear on.  You simply put a window pointer in it (or
  1631. a  zero  if you want the requester to appear on the workbench screen).
  1632. If  you  have  already set your pr_WindowPtr then you can simply leave
  1633. the window field zeor and the pr_WindowPtr value will be used.
  1634.  
  1635. RETURNS
  1636.         This  routine  returns  TRUE  or  FALSE  (1 or 0) in D0 to specify
  1637. whether  or  not  the  user  successfully  entered  a number.  If this
  1638. routine  returns TRUE then you can find the result in the result field
  1639. of the GetLongStruct whose address you passed to GetLong.
  1640.  
  1641.  
  1642.  
  1643. -------------------------------------------------------------------
  1644. RawKeyToAscii
  1645.  
  1646. SYNOPSIS
  1647.  
  1648.  key = RawKeyToAscii(Code,Qualifier,IAddress)
  1649.  D0                   D0     D1        A0
  1650.  
  1651.  UWORD  Code,Qualifier;
  1652.  APTR   IAddress;
  1653.  
  1654. FUNCTION
  1655.  
  1656.         Have you ever wanted to have both RAW and COOKED keys?  You can do
  1657. it by checking the keys for whatever raw keys you want, and then using
  1658. the  console.device's RawKeyConvert routine, except that it's a hassle
  1659. to start mucking about with the device.
  1660.  
  1661.         Well, here you go!  A nice, clean way of converting from a raw key
  1662. to  a  cooked  key,  in a single call!  All you have to do is pass the
  1663. code  and  qualifier  from  your  intuimessage, and the address of the
  1664. message  itself, and you will get back the ASCII value of the key that
  1665. was  hit.  This does, in fact, use the console.device's RawKeyConvert,
  1666. so that if you have a different keymap set, it will be used.
  1667.  
  1668. EXAMPLE
  1669.  
  1670.  
  1671. struct IntuiMessage *im;
  1672.  
  1673.         key = RawKeyToAscii(im->Code,im->Qualifier,im->IAddress);
  1674.  
  1675.