home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / gui / textfield / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-25  |  1.5 KB  |  65 lines

  1. .name
  2. Textfield
  3. .type
  4. BOOPSI Object
  5. .short
  6. Text entry BOOPSI gadget
  7. .aminet-dir
  8. dev/gui
  9. .description
  10. The textfield class allows you create an area on your screen for text
  11. entry.  The class supports a number of features including unlimited
  12. or limited text entry, specifying the font to use, specifying the
  13. colors for different parts (text, background, and lines), two types
  14. of borders (with option to invert the borders for a total of 4 types
  15. of borders) or no border, text left/center/right alignment, vertical
  16. centering, and many other options.
  17.  
  18. There are many new features, and several bugs fixed.  Some of the new
  19. features include: word delete, line delete, Oberon support, faster
  20. scrolling, read-only mode, modified buffer flag, accept and reject
  21. characters, GA_IntuiText, programmable cut/copy/paste/erase.
  22. .version
  23. 3.1
  24. .date
  25. 1995.06.23
  26. .author
  27. Mark Thomas
  28. .distribution
  29. Copyrighted but Freely Redistributable
  30. .address
  31. 1515 Royal Crest Dr. #3259
  32. Austin, TX  78741
  33. .email
  34. mthomas@zilker.net
  35. .docs
  36. History
  37. License
  38. Readme
  39. Doc/textfield_gc.doc
  40. Doc/textfield_gc.guide
  41. .described-by
  42. Dan Fish (daf@starfish.amigalib.com)
  43. .submittal
  44. Downloaded via ftp from wuarchive.wustl.edu.
  45. .execute
  46. set choice `RequestChoice "Textfield" "Please select an option" "View Readme" "View Doc" "View Guide" "Cancel"`
  47.  
  48. if $choice EQ "0"
  49.   quit 5
  50. endif
  51.  
  52. if $choice EQ "1"
  53.   MetaTool ReadMe TEXT
  54. endif
  55.  
  56. if $choice EQ "2"
  57.   cd Doc
  58.   MetaTool textfield_gc.doc TEXT
  59. endif
  60.  
  61. if $choice EQ "3"
  62.   cd Doc
  63.   MetaTool textfield_gc.guide GUIDE
  64. endif
  65.