mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
1b28266622
git-svn-id: http://macvim.googlecode.com/svn/trunk@115 96c4425d-ca35-0410-94e5-3396d5c13a8f
40 lines
1.0 KiB
Objective-C
40 lines
1.0 KiB
Objective-C
/* vi:set ts=8 sts=4 sw=4 ft=objc:
|
|
*
|
|
* VIM - Vi IMproved by Bram Moolenaar
|
|
* MacVim GUI port by Bjorn Winckler
|
|
*
|
|
* Do ":help uganda" in Vim to read copying and usage conditions.
|
|
* Do ":help credits" in Vim to see a list of people who contributed.
|
|
* See README.txt for an overview of the Vim source code.
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "MacVim.h"
|
|
|
|
@class MMWindowController;
|
|
|
|
|
|
|
|
@interface MMVimController : NSObject <MMFrontendProtocol>
|
|
{
|
|
MMWindowController *windowController;
|
|
id backendProxy;
|
|
BOOL inProcessCommandQueue;
|
|
NSMutableArray *sendQueue;
|
|
NSMutableArray *mainMenuItems;
|
|
NSMutableArray *popupMenuItems;
|
|
BOOL shouldUpdateMainMenu;
|
|
NSToolbar *toolbar;
|
|
NSMutableDictionary *toolbarItemDict;
|
|
}
|
|
|
|
- (id)initWithBackend:(id)backend;
|
|
- (id)backendProxy;
|
|
- (MMWindowController *)windowController;
|
|
- (void)windowWillClose:(NSNotification *)notification;
|
|
- (void)sendMessage:(int)msgid data:(NSData *)data wait:(BOOL)wait;
|
|
|
|
@end
|
|
|
|
// vim: set ft=objc:
|