home *** CD-ROM | disk | FTP | other *** search
- /* ------------------------------------------------------------------ */
- /* Macro: CFGOPEN.AML */
- /* Written by: nuText Systems */
- /* */
- /* Description: This macro displays a configuration dialog box for */
- /* open options. */
- /* ------------------------------------------------------------------ */
-
- include bootpath "define.aml"
-
- var openopt
- var defextension
-
- // create dialog box
- dialog "Open Options" 48 13 "cp"
-
- // open options group box
- groupbox 'Default Open Options:' 3 2
- (menu ''
- item " ( ) &Full Screen"
- item " ( ) &Maximize"
- item " ( ) Mi&nimize"
- item " ( ) &Cascade"
- item " ( ) &Horizontal Split "
- item " ( ) &Vertical Split"
- item " ( ) Sam&e Window"
- end) '' _OpenOpt 'fznchve'
-
- // default extensions
- field "&Default File Extensions:" 3 11 43 _DefExt
-
- // ok/cancel buttons
- button "O&k" 38 3 8
- button "Cancel" 38 5 8
-
- // display dialogbox
- if (getdialog ref openopt ref defextension) == 'Ok' then
- setobj OpenOpt openopt 'prf'
- setobj DefExt defextension 'prf'
- end
-