home *** CD-ROM | disk | FTP | other *** search
- /* TextORama.h
- *
- * TextORama is a subclass of Object which acts as the
- * application delegate.
- *
- *
- * You may freely copy, distribute, and reuse the code in this example.
- * NeXT disclaims any warranty of any kind, expressed or implied, as to its
- * fitness for any particular use.
- *
- * Written by: Sharon Zakhour
- * Created: Oct/91
- */
-
- #import <appkit/appkit.h>
-
- @interface TextORama:Object
- {
- id dateField;
- id socSecField;
- id phoneField;
- id emacsScrollView;
- }
-
- char *dateFilter(id textObj, char *inputText, int *inputLength, int position);
- char *socSecFilter(id textObj, char *inputText, int *inputLength, int position);
- char *phoneFilter(id textObj, char *inputText, int *inputLength, int position);
-
- - loadEmacsScrollView;
-
- @end
-