home *** CD-ROM | disk | FTP | other *** search
- package WORD_PROCESSOR is -- a tool for creating, modifying, and formatting
- -- ASCII text files. This package contains an editor and a text formatter
- -- which are for use by the general user. It also contains a utility for
- -- defining the help screens which are available to the general user as
- -- well as a utility for defining new type fonts.
-
- procedure TEXT_EDITOR(SOURCE_FILE : in ASCII_TEXT_FILE_NAME:= NO_FILE ;
- DESTINATION_FILE: out ASCII_TEXT_FILE_NAME:= NO_FILE );
- -- This tool allows a SOURCE_FILE to be edited. Either file name may
- -- be empty, in which case the editor will prompt for the input file
- -- and give standard output file options.
-
- procedure TEXT_FORMATTER(SOURCE_FILE : in ASCII_TEXT_FILE_NAME := NO_FILE ;
- DESTINATION_FILE : out DEVICE_OR_FILE_TYPE
- := DEFAULT_PRINTER ;
- STARTING_ENVIRONMENT : in FORMATTER_ENVIRONMENT
- := DEFAULT_ENVIRONMENT ) ;
- -- This tool formats the SOURCE_FILE according to the default format
- -- and imbedded formatting commands. The output is sent to the destination
- -- device or file.
-
- procedure DEFINE_HELP_FILE(SOURCE_FILE : in ASCII_TEXT_FILE_NAME ;
- DESTINATION_FILE: out FILE_NAME );
- -- This tool processes a help file in ASCII format to a format allowing
- -- fast access to each of the various help screens. It is for use by
- -- the systems's manager to modify user help information to his
- -- particular audience.
-
- procedure ADD_TYPE_FONT( NEW_TYPE_FONT_FILE : in ASCII_TEXT_FILE_NAME ;
- FONT_FILE : in out FILE_NAME );
- -- This tool addes new type font definitions to the text formatter's
- -- font table. It is for use by the system's manager to define new
- -- fonts when new device capabilities are added at a site.
-
- package TITLE_PAGE is new TITLE_PAGE_PACKAGE
- (DEVELOPING_ORGANIZATION =>
- "Science Applications International Corporation" ,
- AUTHOR => "Robert S. Cymbalski & Sally A. Graeff",
- CONTACT => "Robert S. Cymbalski",
- ADDRESS => ("Energy Systems Group",
- "Clearwater Division",
- "Ada Software Project Team",
- "2280 Highway 19 North, Suite 120",
- "Clearwater, Florida 33575"),
- PHONE => (813,799,0663),
- DATE_SUBMITTED => (05,Dec,1984));
- package EDITOR_TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
- (LINES_OF_SOURCE_CODE => 10000,
- DEVELOPMENT_COMPILER => (UNVALIDATED_TELESOFT),
- PLANNED_COMPILERS_SUPPORTED => (DECVAX),
- AUXILLIARY_FILES_SIZE => 0 );
-
- package EDITOR_DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
- (COMPLETED_EVENTS => ((PDR,(15,NOV,1984)),
- (FIRST_BUILT,(28,NOV,1984))),
- SCHEDULED_EVENTS => (DELIVER,(15,APR,1985)));
- package FORMATTER_TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
- (LINES_OF_SOURCE_CODE => 10000,
- DEVELOPMENT_COMPILER => (UNVALIDATED_TELESOFT),
- PLANNED_COMPILERS_SUPPORTED => (DECVAX),
- AUXILLIARY_FILES_SIZE => 0 );
-
- package FORMATTER_DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
- (COMPLETED_EVENTS => NONE,
- SCHEDULED_EVENTS => ((PDR,(15,JAN,1985)),
- (FIRST_BUILT,(30,JAN,1985)),
- (DELIVER,(15,JUN,1985)));
- end WORD_PROCESSOR ;
-