home *** CD-ROM | disk | FTP | other *** search
- Unit ExtGraph;
-
-
- interface
-
- uses Objects, VGAMem;
-
- const SignX:Byte=30; SignY:Byte=20;
-
- { Font Identifiers }
-
- ftSystem = 0;
- ftSansSerif = 1;
- ftMonoSpace = 2;
-
- { Graphics Vision graphic routines }
-
- Procedure RBar (var R:TRect);
- Procedure RRect (var R:TRect);
- Procedure OutTextP (P:TPoint; S:String);
- Function GetShortCut (S: String): Char;
- Procedure OutGVText (P:TPoint; S:String; Col1, Col2:Byte; Size: TPoint; Center:Boolean);
- Procedure SetGVStyle (AFont: Integer);
- Procedure PutGVImage (var R:TRect; Sign:Pointer; BkCol:Byte);
- Procedure DrawButton (var R: TRect; Down, Small: Boolean; BkCol, FrameCol, NormCol, ShadowCol: Byte);
- Procedure DrawIcon (x1, y1, n:Integer; Mode:Word);
- Procedure DrawColIcon (x1, y1, n: Integer; Color: Byte);
-
- Procedure DrawMbIcon (x1, y1, n:Integer; Mode:Word);
-
- implementation
-