]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/stc/scintilla/src/KeyMap.h
814f3aa3b71ced0e94f55ddd991df7c5db6d1981
1 // Scintilla source code edit control
2 // KeyMap.h - defines a mapping between keystrokes and commands
3 // Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
4 // The License.txt file describes the conditions under which this software may be distributed.
10 #define SCI_SHIFT SHIFT_PRESSED
11 #define SCI_CTRL LEFT_CTRL_PRESSED
12 #define SCI_ALT LEFT_ALT_PRESSED
13 #define SCI_CSHIFT (SCI_CTRL | SCI_SHIFT)
26 static KeyToCommand MapDefault
[];
31 void AssignCmdKey(int key
, int modifiers
, UINT msg
);
32 UINT
Find(int key
, int modifiers
); // 0 returned on failure