home *** CD-ROM | disk | FTP | other *** search
Fred Fish's Product-Info | 1995-10-25 | 3.2 KB | 129 lines |
- .name
- BGUI
- .type
- Shared Library
- .aminet-dir
- dev/gui
- .short
- Creation of font/size sensitive GUI's
- .description
-
- `BGUI' is a BOOPSI based shared library contaning a number of BOOPSI
- classes. It allows for easy creation and managing of font sensitive
- and size adjustable GUI's on the Amiga. Hmm, where have I read something
- like this before..., I hear you say.
-
- Features
- ********
-
- * Requires at least OS 2.04 (Yes, that is a feature :)
- * Extends on the existing system gadgetclass and rootclass.
- * Creates completely font sensitive GUI's.
- * Supports sizable windows.
- * AppWindow support.
- * Titled group-frames and seperators.
- * Supports OS 3.0 when available.
- * Style Guide compliant.
- * Keyboard control of most gadget classes.
- * Several types of notification to create "self driven" GUI's.
- * Easy intergration of third-party classes.
- * Easy to make your class work directly with BGUI.
- * Object oriented.
- * Resonable speed, even with a 68000 processor.
- * Relatively small library.
- * Classes for easy filerequester and commodity creation.
- * Seperate ARexx class including source code.
- .version
- 1.2
- .date
- 1995.09.23
- .author
- Jan van den Baard
- .requirements
- Requires OS2.04+
- Also requires the following disk-based libraries
-
- * gadtools.library (V37) (menus)
- * asl.library (V37) (filereq class)
- * commodities.library (V37) (commodities class)
- .distribution
- Giftware
- .address
- Bakkerstraat 176
- 3082 HE Rotterdam
- Holland
- .email
- jaba@grafix.wlink.nl
- .construction
- DICE V3.0
- .docs
- BGUI11.readme
- BGUI.guide
- BGUI.doc
- .described-by
- Dan Fish (daf@starfish.amigalib.com)
- .submittal
- Downloaded via ftp from wuarchive.wustl.edu.
- .execute
- set choice `RequestChoice "BGUI" "Please select an option" "View Doc" "View Guide" "Install Program" "Cancel"`
-
- if $choice EQ "0"
- quit 5
- endif
-
- if $choice EQ "1"
- set filechoice `RequestFile TITLE "Select File" PATTERN "#?.doc"`
- set dirchoice `pathname $filechoice`
- set filechoice `basename $filechoice`
- failat 21
- cd $dirchoice
- MetaTool $filechoice TEXT
- endif
-
- if $choice EQ "2"
- set filechoice `RequestFile TITLE "Select File" PATTERN "(#?.guide)"`
- set dirchoice `pathname $filechoice`
- set filechoice `basename $filechoice`
- failat 21
- cd $dirchoice
- MetaTool $filechoice GUIDE
- endif
-
- if $choice EQ "3"
- set choice2 `RequestChoice "Install BGUI" "Select an Installation Option" "For OS2.0" "For OS2.1+" "Cancel"`
- if $choice2 EQ "0"
- quit 0
- endif
-
- cd Install
- if $choice2 EQ "1"
- Installer InstallBGUI APPNAME BGUI MINUSER AVERAGE
- endif
-
- if $choice2 EQ "2"
- set choice3 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Nederlands" "Norsk" "Cancel"`
-
- cd "Workbench_2.1+/"
-
- if $choice3 EQ "0"
- quit 0
- endif
-
- if $choice3 EQ "1"
- Installer InstallBGUI21 APPNAME BGUI MINUSER AVERAGE LANGUAGE deutsch
- endif
-
- if $choice3 EQ "2"
- Installer InstallBGUI21 APPNAME BGUI MINUSER AVERAGE LANGUAGE english
- endif
-
- if $choice3 EQ "3"
- Installer InstallBGUI21 APPNAME BGUI MINUSER AVERAGE LANGUAGE nederlands
- endif
-
- if $choice3 EQ "4"
- Installer InstallBGUI21 APPNAME BGUI MINUSER AVERAGE LANGUAGE norsk
- endif
- endif
- endif
-