- Added fontSizeUp/fontSizeDown actions
[MacVim/jjgod.git] / MMAppController.h
blob5033d7e719676abcd81f732d42172c5e278d24e8
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;
18 @interface MMAppController : NSObject <MMAppProtocol> {
19 NSMutableArray *vimControllers;
20 NSString *openSelectionString;
21 ATSFontContainerRef fontContainerRef;
22 BOOL untitledWindowOpening;
25 - (void)removeVimController:(id)controller;
26 - (void)windowControllerWillOpen:(MMWindowController *)windowController;
27 - (IBAction)newWindow:(id)sender;
28 - (IBAction)selectNextWindow:(id)sender;
29 - (IBAction)selectPreviousWindow:(id)sender;
30 - (IBAction)fontSizeUp:(id)sender;
31 - (IBAction)fontSizeDown:(id)sender;
33 @end