git-svn-id: http://macvim.googlecode.com/svn/trunk@139 96c4425d-ca35-0410-94e5-3396d5...
[MacVim/jjgod.git] / MMVimController.h
blob7024e04ceeeebb6e63dd115813b58127e5ee72e3
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>
12 #import "MacVim.h"
15 @class MMWindowController;
19 @interface MMVimController : NSObject <MMFrontendProtocol>
21 MMWindowController *windowController;
22 id backendProxy;
23 BOOL inProcessCommandQueue;
24 NSMutableArray *sendQueue;
25 NSMutableArray *mainMenuItems;
26 NSMutableArray *popupMenuItems;
27 BOOL shouldUpdateMainMenu;
28 NSToolbar *toolbar;
29 NSMutableDictionary *toolbarItemDict;
32 - (id)initWithBackend:(id)backend;
33 - (id)backendProxy;
34 - (MMWindowController *)windowController;
35 - (void)windowWillClose:(NSNotification *)notification;
36 - (void)sendMessage:(int)msgid data:(NSData *)data wait:(BOOL)wait;
38 @end
40 // vim: set ft=objc: