git-svn-id: http://macvim.googlecode.com/svn/trunk@139 96c4425d-ca35-0410-94e5-3396d5...
[MacVim/jjgod.git] / MMTextView.h
blob67ffdb1f0e9dc4d897bfffe2e63abd3f152ddcd5
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 MMTextView : NSTextView {
15 BOOL shouldDrawInsertionPoint;
16 NSEvent *lastMouseDownEvent;
19 - (NSEvent *)lastMouseDownEvent;
20 - (void)setShouldDrawInsertionPoint:(BOOL)enable;
22 @end