/****************************************************************************
 File: readme.txt

 (C) Copyright 1992 by GO Corporation, All Rights Reserved.

 $Revision:   1.5  $
   $Author:   kcatlin  $
     $Date:   31 Jan 1992 08:47:00  $

 Writerap provides a ruled sheet for the user to write on. When the
 user lifts the pen out of proximity, writerap translates what the user 
 wrote, and places the translated text on the line below the ink. The
 user can change the translation algorithm from word-based, to text-
 or number-based.
****************************************************************************/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Objectives					  			   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 This sample application shows how to:
	-:	use the SPaper and Translation objects
	-:	make a translator for words, text, or numbers only
	-:	use the xlist returned by the translation objects and how
		to interpret its data
	-:	put a choice control in a menu.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Class Overview	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Writerap defines two classes: clsWriter and clsWriterApp.
 It makes use of the following classes:

	clsApp
	clsAppMgr
	clsChoice
	clsClass
	clsMenu
	clsSPaper
	clsSysDrwCtx
	clsXText
	clsXWord
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *									Files Used	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 The code for writerap is in \PENPOINT\SDK\SAMPLE\WRITERAP. The
 files are:

	METHODS.TBL:		the method table for the classes
	WRITERAP.C:		the source code for the classes
	WRITERAP.H:		the header file for the classes.
*/ 

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Compiling	  							   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 To compile writerap, just 
	cd \penpoint\sdk\sample\writerap
	wmake
 This compiles the application and creates INPUTAPP.EXE in 
 \PENPOINT\APP\WRITERAP.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Running	  								   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 After compiling writerap, you can run it by
	1) Adding \\boot\penpoint\app\Writer Application to 
	\PENPOINT\BOOT\APP.INI
    2) Booting PenPoint
	3) Creating a new writerap document, and turning to it.
 Alternatively, you can boot PenPoint and then install Writer Application
 via the Connections Notebook.
*/

