]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/KeyMap.h
fd9005de84854963453484f67425a2ee0b5f1228
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.
16 #define SCI_SHIFT SCMOD_SHIFT
17 #define SCI_CTRL SCMOD_CTRL
18 #define SCI_ALT SCMOD_ALT
19 #define SCI_CSHIFT (SCI_CTRL | SCI_SHIFT)
20 #define SCI_ASHIFT (SCI_ALT | SCI_SHIFT)
37 static const KeyToCommand MapDefault
[];
43 void AssignCmdKey(int key
, int modifiers
, unsigned int msg
);
44 unsigned int Find(int key
, int modifiers
); // 0 returned on failure