home *** CD-ROM | disk | FTP | other *** search
Fred Fish's Product-Info | 1995-10-21 | 3.7 KB | 151 lines |
- .name
- MUI
- .fullname
- MagicUserInterface
- .aminet-dir
- dev/gui
- .type
- Library
- .short
- Create and maintain user interfaces.
- .description
- MUI is an object oriented system to create and maintain graphical user
- interfaces. From a programmers point of view, using MUI saves a lot of
- time and makes life much easier. Thinking about complicated terms like
- window resizing or font sensitivity is simply not neccesary.\n
- On the other hand, users of MUI based applications have the ability to
- customize nearly every pixel of a programs interface according to their
- personal taste.\n
- This distribution is interesting for both, users and programmers. Please
- have a look at the supplied demo programs and at the documentation to
- see what MUI has to offer.\n
- MUI is an SASG (Standardized Amiga Shareware Group) product.
- .version
- 2.3
- .date
- 1994.12.24
- .author
- Stefan Stuntz
- .reference
- GoldFish-Vol2-1/Files/dev/gui/MUI/
- 2.2
- FreshFish-Vol7:Useful/dist/dev/gui/MUI/
- 2.2
- FreshFish-Jul94:BBS/dev/MUI-2.1.lha
- 2.1
- FreshFish-Jul94:New/dev/gui/MUI/
- 2.1
- FreshFish-Jul94:Useful/dist/dev/gui/MUI/
- 2.1
- GoldFish2-Apr94:d9xx/d968/MUI_dev/
- 2.0
- GoldFish2-Apr94:d9xx/d967/MUI_usr/
- 2.0
- GoldFish1-Apr94:BBS/d9xx/d968/MUI_dev.lha
- 2.0
- GoldFish1-Apr94:BBS/d9xx/d967/MUI_usr.lha
- 2.0
- FrozenFish-Apr94:BBS/Useful/dev/gui/MUI.lha
- 2.0
- FrozenFish-Apr94:BBS/Mar94/dev/gui/MUI.lha
- 2.0
- FrozenFish-Apr94:BBS/ALib/d9xx/d968/MUI_dev.lha
- 2.0
- FrozenFish-Apr94:BBS/ALib/d9xx/d967/MUI_usr.lha
- 2.0
- FreshFish-May94:Useful/dist/dev/gui/MUI/
- 2.0
- FreshFish-May94:BBS/Mar94/dev/gui/MUI.lha
- 2.0
- FreshFish-Mar94:Useful/dist/dev/gui/MUI/
- 2.0
- FreshFish-Mar94:New/dev/gui/MUI/
- 2.0
- AmigaLibDisk968:MUI_dev/
- 2.0
- AmigaLibDisk967:MUI_usr/
- 2.0
- FrozenFish-Apr94:BBS/Oct93/Develop/MUI.lha
- 1.3
- FreshFish-Mar94:Old/Oct93/Develop/MUI/
- 1.3
- FreshFish-Dec93:Old/Develop/MUI/
- 1.3
- FreshFish-Oct93:New/Develop/MUI/
- 1.3
- .restrictions
- The freely distributable version cannot save some fancy preferences options
- such as custom imagery or fonts. However, all MUI applications will work
- perfectly even without registration.
- .requirements
- Requires WB2.0 (V37). Localization works only with WB2.1 (V38) and above.
- Takes advantage of new WB3.x features. Harddisk with at least 2 MB free space
- recommended.
- .distribution
- Shareware
- .price
- $20(US), DM30.
- .address
- Stefan Stuntz
- Eduard-Spranger-Straße 7
- 80935 München
- Germany/Europe
- .email
- stuntz@informatik.tu-muenchen.de
- .exectype
- 68000
- .installsize
- 300K - 3M
- Lots of doc files, images and developer stuff is included.
- .source
- Several example source codes in C, Modula, Oberon and Assembler
- are included.
- .construction
- SAS/C 6.51, Assembler
- .tested
- Tested on lots of different hardware platforms with all available
- versions of the operating system from V37 to V40. Found to be free
- of Enforcer and Mungwall hits. Runs perfectly on all graphic cards
- with Workbench emulation.
- .docs
- Docs/Deutsch/MUI.guide
- Docs/Deutsch/MUI.dvi
- Docs/English/MUI.guide
- Docs/English/MUI.dvi
- .described-by
- Stefan Stuntz (stuntz@informatik.tu-muenchen.de)
- .submittal
- Submitted directly by the author.
- .execute
- set choice `RequestChoice "MUI" "Please select an option" "ReadMe" "View Guides" "View Files" "Install" "Cancel"`
- if $choice EQ "0"
- quit 5
- endif
-
- if $choice EQ "1"
- MetaTool ReadMe TEXT
- endif
-
- if $choice EQ "2"
- cd docs
- set filechoice `RequestFile TITLE "Select AmigaGuide File" PATTERN "#?.Guide"`
- set dirchoice `pathname $filechoice`
- set filechoice `basename $filechoice`
- failat 21
- cd $dirchoice
- MetaTool $filechoice GUIDE
- endif
-
- if $choice EQ "3"
- set filechoice `RequestFile TITLE "Select Text File"`
- set dirchoice `pathname $filechoice`
- set filechoice `basename $filechoice`
- failat 21
- cd $dirchoice
- MetaTool $filechoice TEXT
- endif
-
- if $choice EQ "4"
- Installer MUI-Install APPNAME "Magic User Interface" MINUSER AVERAGE DEFUSER AVERAGE NOPRETEND
- endif
-