home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1996-06-21 | 2.0 KB | 69 lines | [TEXT/MEDT] |
- DEFINITION MODULE HideTerminal;
-
- (*******************************************************************
-
- Module HideTerminal (Version 1.0)
-
- Copyright 1991 by Juerg Thoeny and Swiss
- Federal Institute of Technology Zürich ETHZ
-
- Version written for:
- MacMETH_V3.2 (1-Pass Modula-2 implementation)
-
- Purpose controls the visiblitity of the terminal window in
- TerminalOut
-
- Remarks Each client should call SetVisible in his term procedure
-
- Programming
-
- • Design
- J. Thoeny 10/23/1992
-
- • Implementation
- J. Thoeny 10/23/1992
-
-
- Swiss Federal Institute of Technology Zurich ETHZ
- CH-8092 Zurich
- Switzerland
-
- Last revision of definition: 10/23/1992 JT
-
- *******************************************************************)
-
- FROM SYSTEM IMPORT ADDRESS;
-
- VAR
- fakeWindowPtr : ADDRESS;
-
-
- (*-----------------------------------------------------------------
- PROCEDURE SetVisible
-
- Purpose Makes the terminal window in TerminalOut visible and has
- no effect if the window is alredy visible
- -----------------------------------------------------------------*)
-
- PROCEDURE SetVisible;
-
- (*-----------------------------------------------------------------
- PROCEDURE SetInvisible
-
- Purpose Makes the terminal window in TerminalOut invisible and has
- no effect if the window is alredy invisible
- -----------------------------------------------------------------*)
-
- PROCEDURE SetInvisible;
-
- (*-----------------------------------------------------------------
- PROCEDURE IsVisible
-
- Purpose Tells whether the terminal window in TerminalOut is visible
- or not
- -----------------------------------------------------------------*)
-
- PROCEDURE IsVisible (): BOOLEAN;
-
- END HideTerminal.