home *** CD-ROM | disk | FTP | other *** search
Modula Implementation | 1986-11-21 | 766 b | 33 lines |
- (*
-
- Some utility procedures....
-
- Created: 8/22/87 by Richie Bielak
-
- Copyright (c) 1987 by Richie Bielak
-
- This program maybe freely distributed, but please leave
- my name in. Thanks.....Richie
-
- *)
- IMPLEMENTATION MODULE ChaosUtil;
-
- FROM SYSTEM IMPORT ADDRESS, BYTE;
- FROM Intuition IMPORT IntuiText;
- FROM Rasters IMPORT Jam2, Jam1, DrawModeSet;
-
- (* ++++++++++++++++++++++++++++++++++++++++ *)
- PROCEDURE InitTextItem (VAR it : IntuiText; text : ADDRESS;
- L, T : INTEGER);
- BEGIN
- WITH it DO
- FrontPen := BYTE (2); BackPen := BYTE (2); DrawMode := Jam1;
- LeftEdge := L; TopEdge := T; ITextFont := NIL;
- IText := text; NextText := NIL
- END;
- END InitTextItem;
-
-
- BEGIN
- END ChaosUtil.
-