mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 06:28:54 +00:00
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:
parent
30307945fb
commit
f574ad8435
1 changed files with 9 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue