]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/stc/scintilla/src/KeyMap.h
1 // Scintilla source code edit control
3 ** Defines a mapping between keystrokes and commands.
5 // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
12 #define SCI_SHIFT SCMOD_SHIFT
13 #define SCI_CTRL SCMOD_CTRL
14 #define SCI_ALT SCMOD_ALT
15 #define SCI_CSHIFT (SCI_CTRL | SCI_SHIFT)
16 #define SCI_ASHIFT (SCI_ALT | SCI_SHIFT)
33 static const KeyToCommand MapDefault
[];
39 void AssignCmdKey(int key
, int modifiers
, unsigned int msg
);
40 unsigned int Find(int key
, int modifiers
); // 0 returned on failure