ftp.nice.ch/pub/next/science/mathematics/HippoDraw.2.0.s.tar.gz#/HippoDraw/Hippo.bproj/Draw.subproj/textUndo.subproj/TypingTextChange.h

This is TypingTextChange.h in view mode; [Download] [Up]

/*
 * This class represents a change to a text object caused by the user
 * typing characters or deleting characters with the delete key.
 */

@interface TypingTextChange : WholeTextChange
{
    int insertionPoint;		/* position of the cursor during change */
    int insertionMin;		/* low water mark of insertion point */
    int insertionMax;		/* high water mark of insertion point */
    TypingTextChange *subsumingChange;
    BOOL firstKeyDown;		/* YES if we haven't seen the first key yet */
    BOOL finished;	
}

/* Creation method */

- initView:aView;

/* Public Methods */

- saveBeforeChange;
- saveAfterChange;
- (BOOL)subsumeChange:change;
- finishChange;
- subsumedBy:change;
- (BOOL)canBeExtended;
- deleteCharacter;
- addCharacter:(int)ch;

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.