home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff257.lzh / FileIO / ReadMeFirst! < prev    next >
Text File  |  1989-10-19  |  3KB  |  50 lines

  1.    This is the FileIO requester.library, a disk-based shared library that
  2. can be opened and used by many applications. It's primary purpose is to
  3. allow a user of your program to easily make filename selection for load
  4. and save routines using the Amiga Intuition interface. The FileIO requester
  5. has many features:
  6.  
  7.    - The ability to scroll through the list of filenames and drawers using
  8.      the mouse, slider (Prop), and Arrow (boolean) gadgets.
  9.  
  10.    - The option to select a filename by pointing and clicking the mouse,
  11.      or typing in a string gadget.
  12.  
  13.    - The option to change disk (root) and sub directories with the mouse or
  14.      string gadgets.
  15.  
  16.    - Returns information to your program about the size of the selected
  17.      file, the number of free bytes on that file's disk, intelligently
  18.      separates disk and drawer names from filenames, etc.
  19.  
  20.    - Is written in tight 68000 and is approx 10K in size total (i.e. even
  21.      after loading, unlike other requesters)
  22.  
  23.    This version of the FileIO library is an update to the one that appeared
  24. on Fish Disk #203. This is version 1.4. A new feature allows you to use the
  25. requester for non-disk operations. You can use it to display any list of
  26. strings to the user and have him make a selection using the mouse or string
  27. gadget. The FileIO lib takes care of scrolling through the list of strings
  28. (using the Prop and Arrow gadgets), all IDCMP handling, and all data
  29. structures associated with the requester. The new doc file describes this
  30. feature fully, and there are new examples in C, asm, and AmigaBasic.
  31.    Another new feature allows the user to see a scrolling display of all
  32. mounted DOS devices by clicking the right mouse button, and selecting one by
  33. clicking the left mouse button. This is similiar to the arp file requester.
  34. In fact, the FileIO requester now resembles a "souped-up" alternative to the
  35. latest version of arp.
  36.    With this many features, why are you waiting for the stripped-down file
  37. requester that is supposedly forthcoming with 1.4 OS?
  38.    This library can be used by any C, asm, or Basic application.
  39.    The actual requester.library file must be placed in the libs drawer of
  40. your bootdisk in order to run these examples. You can run the CopyLib program
  41. to copy this library to your bootdisk. If the FileIO requester appears, the
  42. library was copied OK. Select the cancel gadget to exit. Alternately, you
  43. may simply copy the file using the CLI.
  44.    Additionally, basic users must copy requester.bmap (and any other bmap
  45. files) to the current dir when using the basic examples. It might be a good
  46. idea to copy the bmap files to the lib drawer of the boot disk along with
  47. the library, then modify the lines in the example programs to include this
  48. path.
  49.         LIBRARY  "sys:libs/requester.bmap"
  50.