DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T a

⟦e897d98b9⟧ TextFile

    Length: 1181 (0x49d)
    Types: TextFile
    Names: »ansivdu.def«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./DVIware/crt-viewers/others/dvitovdu/src/ansivdu.def« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/crt-viewers/others/dvitovdu/src/ansivdu.def« 

TextFile

DEFINITION MODULE ansivdu;

(* Author:         Andrew Trevorrow
   Implementation: Modula-2 under VAX/UNIX 4.2 BSD
   Date Started:   June, 1986

   Description:
   InitANSI initializes the generic VDU parameters and routines described
   in VDUInterface with specific ANSI values.
*)

EXPORT QUALIFIED
   InitANSI, MoveAbs,
   ANSIStartText, ANSIMoveToTextLine, ANSIClearTextLine, ANSIClearScreen,
   ANSIStartGraphics, ANSILoadFont, ANSIShowChar, ANSIShowRectangle,
   ANSIResetVDU;

PROCEDURE InitANSI;
(* the following routines can be used by other VDUs *)
PROCEDURE MoveAbs            (row, col : CARDINAL);
PROCEDURE ANSIStartText;
PROCEDURE ANSIMoveToTextLine (line : CARDINAL);
PROCEDURE ANSIClearTextLine  (line : CARDINAL);
PROCEDURE ANSIClearScreen;
PROCEDURE ANSIStartGraphics;
PROCEDURE ANSILoadFont       (fontname : ARRAY OF CHAR;
                              fontsize : CARDINAL;
                              mag, hscale, vscale : REAL);
PROCEDURE ANSIShowChar       (screenh, screenv : CARDINAL; ch : CHAR);
PROCEDURE ANSIShowRectangle  (screenh, screenv, width, height : CARDINAL;
                              ch : CHAR);
PROCEDURE ANSIResetVDU;

END ansivdu.