Add preference to change fake Esc modifier key
[MacVim.git] / src / MacVim / MMApplication.h
blob3c1470d3e6f937e3f3b1e1c7cf0a162de1cdcf3e
1 /* vi:set ts=8 sts=4 sw=4 ft=objc:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * MacVim GUI port by Bjorn Winckler
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
11 #import <Cocoa/Cocoa.h>
14 @interface MMApplication : NSApplication {
15 CFAbsoluteTime fakeEscTimeDown;
16 CFAbsoluteTime fakeEscTimeout;
17 int fakeEscKeyCode;
18 unsigned fakeEscModifierMask;
19 BOOL blockFakeEscEvent;
20 BOOL blockKeyDown;
21 BOOL fakeEscOnKeyDown;
24 - (IBAction)fakeEscModifierKeyChanged:(id)sender;
26 @end