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

  1. .name
  2. BGUI
  3. .type
  4. Shared Library
  5. .aminet-dir
  6. dev/gui
  7. .short
  8. Creation of font/size sensitive GUI's
  9. .description
  10.  
  11. `BGUI' is a BOOPSI based shared library contaning a number of BOOPSI
  12. classes.  It allows for easy creation and managing of font sensitive
  13. and size adjustable GUI's on the Amiga.  Hmm, where have I read something
  14. like this before..., I hear you say.
  15.  
  16. Features
  17. ********
  18.  
  19.    * Requires at least OS 2.04 (Yes, that is a feature :)
  20.    * Extends on the existing system gadgetclass and rootclass.
  21.    * Creates completely font sensitive GUI's.
  22.    * Supports sizable windows.
  23.    * AppWindow support.
  24.    * Titled group-frames and seperators.
  25.    * Supports OS 3.0 when available.
  26.    * Style Guide compliant.
  27.    * Keyboard control of most gadget classes.
  28.    * Several types of notification to create "self driven" GUI's.
  29.    * Easy intergration of third-party classes.
  30.    * Easy to make your class work directly with BGUI.
  31.    * Object oriented.
  32.    * Resonable speed, even with a 68000 processor.
  33.    * Relatively small library.
  34.    * Classes for easy filerequester and commodity creation.
  35.    * Seperate ARexx class including source code.
  36. .version
  37. 1.2
  38. .date
  39. 1995.09.23
  40. .author
  41. Jan van den Baard
  42. .requirements
  43. Requires OS2.04+
  44. Also requires the following disk-based libraries
  45.  
  46.    * gadtools.library          (V37)   (menus)
  47.    * asl.library               (V37)   (filereq class)
  48.    * commodities.library       (V37)   (commodities class)
  49. .distribution
  50. Giftware
  51. .address
  52. Bakkerstraat  176
  53. 3082 HE Rotterdam
  54. Holland
  55. .email
  56. jaba@grafix.wlink.nl
  57. .construction
  58. DICE V3.0
  59. .docs
  60. BGUI11.readme
  61. BGUI.guide
  62. BGUI.doc
  63. .described-by
  64. Dan Fish (daf@starfish.amigalib.com)
  65. .submittal
  66. Downloaded via ftp from wuarchive.wustl.edu.
  67. .execute
  68. set choice `RequestChoice "BGUI" "Please select an option" "View Doc" "View Guide" "Install Program" "Cancel"`
  69.  
  70. if $choice EQ "0"
  71.   quit 5
  72. endif
  73.  
  74. if $choice EQ "1"
  75.   set filechoice `RequestFile TITLE "Select File" PATTERN "#?.doc"`
  76.   set dirchoice `pathname $filechoice`
  77.   set filechoice `basename $filechoice`
  78.   failat 21
  79.   cd $dirchoice
  80.   MetaTool $filechoice TEXT
  81. endif
  82.  
  83. if $choice EQ "2"
  84.   set filechoice `RequestFile TITLE "Select File" PATTERN "(#?.guide)"`
  85.   set dirchoice `pathname $filechoice`
  86.   set filechoice `basename $filechoice`
  87.   failat 21
  88.   cd $dirchoice
  89.   MetaTool $filechoice GUIDE
  90. endif
  91.  
  92. if $choice EQ "3"
  93.   set choice2 `RequestChoice "Install BGUI" "Select an Installation Option" "For OS2.0" "For OS2.1+" "Cancel"`
  94.   if $choice2 EQ "0"
  95.     quit 0
  96.   endif
  97.  
  98.   cd Install
  99.   if $choice2 EQ "1"
  100.     Installer InstallBGUI APPNAME BGUI MINUSER AVERAGE
  101.   endif
  102.  
  103.   if $choice2 EQ "2"
  104.     set choice3 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Nederlands" "Norsk" "Cancel"`
  105.  
  106.     cd "Workbench_2.1+/"
  107.  
  108.     if $choice3 EQ "0"
  109.       quit 0
  110.     endif
  111.  
  112.     if $choice3 EQ "1"
  113.       Installer InstallBGUI21 APPNAME BGUI MINUSER AVERAGE LANGUAGE deutsch
  114.     endif
  115.  
  116.     if $choice3 EQ "2"
  117.       Installer InstallBGUI21 APPNAME BGUI MINUSER AVERAGE LANGUAGE english
  118.     endif
  119.  
  120.     if $choice3 EQ "3"
  121.       Installer InstallBGUI21 APPNAME BGUI MINUSER AVERAGE LANGUAGE nederlands
  122.     endif
  123.  
  124.     if $choice3 EQ "4"
  125.       Installer InstallBGUI21 APPNAME BGUI MINUSER AVERAGE LANGUAGE norsk
  126.     endif
  127.   endif
  128. endif
  129.