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 w

⟦a59782f41⟧ TextFile

    Length: 1212 (0x4bc)
    Types: TextFile
    Names: »window.doc«

Derivation

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

TextFile

A DVI window will have the following operations:

Open: Filename X Window -> DVIW # errormessage
   Opens a dvi window viewing a particular file.
Close: DVIW -> Window
   Closes a dvi window.  The text on the window is unaffected.  Each
   time a showpage operation is done, the DVIW checks whether the file
   has changed; if it has, the old file is closed and the new file is
   opened.
Showpage: DVIW X pagenum X xscroll X yscroll -> realpage
   Attempts to show page pagenum of the file associated with DVIW.
   Realpage will be different from pagenum if pagenum is not positive
   or the document does not have that many pages.

For now, we will forbid having several of these open for one process
at once.  However, it should be possible to open and close several
DVIW's in sequence without accumulating garbage in the address space.
The DVIW's need the following state information:
   Window
   File descriptor
   Cpagep: Pointer to start of current page in the file
   Ppagep: Pointer to previous page in the file
   Pagenum: Current page number in the file

The routines used to display the file will be determined at load time.
The names of the routines is a historical phenomenon not documented
here.