home *** CD-ROM | disk | FTP | other *** search
- -- ╔═════════════════════════════════════════════════════════════╗
- -- ║█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█║
- -- ║█ █║
- -- ║█ Meridian Software Systems █║
- -- ║█ █║
- -- ║█ Copyright (C) 1990 █║
- -- ║█ █║
- -- ║█ ALL RIGHTS RESERVED █║
- -- ║█ █║
- -- ║█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█║
- -- ╚═════════════════════════════════════════════════════════════╝
-
- ------------------------------------------------------------------------------
- --
- -- Unit Name: Screens - package specification
- --
- -- Purpose of unit : Package Screens performs selection of the active
- -- graphics page, swapping of graphics pages, and copying
- -- of one graphics page to another graphics page. Package
- -- Screens also performs the save and load operations of
- -- graphics screens to and from disk files.
- --
- ------------------------------------------------------------------------------
-
- with COMMON_GRAPHIC_TYPES;
-
- package SCREEN is
-
- procedure SELECT_SCREEN (New_page : COMMON_GRAPHIC_TYPES.DISPLAY_PAGE);
- procedure COPY_SCREEN;
- procedure SWAP_SCREEN;
- procedure SAVE_SCREEN (FILENAME : string);
- procedure LOAD_SCREEN (FILENAME : string);
-
- end SCREEN;
-