home *** CD-ROM | disk | FTP | other *** search
- {-- menu01.pas }
- {$F+}
- USES
- fastgrph, teglfont, tgraph, teglunit, teglmain, teglmenu;
-
-
- function ExitOption(ifs : ImageStkPtr; Ms: MsClickPtr): Word;
- BEGIN
- Halt;
- END;
-
- VAR OmFile : OptionMPtr;
-
- BEGIN
- easytegl;
- easyout;
-
- OmFile := CreateOptionMenu(@f8x12bol);
- DefineOptions(OmFile,' ~O~pen ',true,NilUnitProc);
- DefineOptions(OmFile,'-',false,nilunitproc);
- DefineOptions(OmFile,' E~x~it ',true,ExitOption);
- SetTeglFont(@f8x12bol);
- CreateBarMenu(0,0,getmaxx);
- OutBarOption(' ~F~ile ',OmFile);
-
- TeglSupervisor;
- END.
-