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

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

 $Revision:   1.4  $
   $Author:   kcatlin  $
     $Date:   31 Jan 1992 08:22:38  $

 Adder is a simple pencentric calculator, limited to addition and 
 subtraction. The user can write "4+5" and Adder will print "4+5=9" 
 at the top of its window. In addition, Adder can handle slightly 
 more complicated expressions, such as "42 + -8 + 3 -2.5". 
****************************************************************************/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Objectives					  			   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 This sample application shows how to:
	-:	create an insertion pad for handwritten input
	-:	create a translator and a custom template for the insertion pad
	-:	translate the insertion pad ink when the user lifts the 
		pen out of proximity
	-:	disable some of the handwriting engine's assumptions to improve
		arithmetic recognition
	-:	create a custom layout window
	-:	construct a simple parser.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Class Overview	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Adder defines two classes: clsAdderApp and clsAdderEvaluator.
 It makes use of the following classes:

	clsApp
	clsAppMgr
	clsClass
	clsCustomLayout
	clsIP
	clsLabel
	clsObject
	clsXText
*/

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

	ADDERAPP.C:		the source code for the application class
	ADDEREVL.C:		the source code for the adder evaluator engine class
	ADDEREVL.H:		the header file for the evaluator class
	METHODS.TBL:	the method tables for the adder classes.
*/ 

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

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Running	  								   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 After compiling Adder, you can run it by
	1) Adding \\boot\penpoint\app\Adder to \PENPOINT\BOOT\APP.INI
    2) Booting PenPoint
	3) Tapping on the Accessories icon to open it, and then tapping on "Adder".
 Alternatively, you can boot PenPoint and then install Adder via the 
 Connections Notebook.
*/
