Added enum of some special keys, defined by openstep

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@12883 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-02-28 14:23:23 +00:00
parent 30307945fb
commit f574ad8435

View file

@ -98,6 +98,15 @@ enum {
NSDeleteCharacter = 0x007f,
};
/* The following are required by the original openstep doc. */
enum {
NSBackspaceKey = 8,
NSCarriageReturnKey = 13,
NSDeleteKey = 0x7f,
NSBacktabKey = 25
};
#include <AppKit/NSStringDrawing.h>
@interface NSText : NSView <NSChangeSpelling, NSIgnoreMisspelledWords>