Fix placement of auxiliary IM window for Core Text
[MacVim.git] / src / MacVim / MMPlugInManager.h
blob03008556cc7131ed7e39cb2ff3a866056ebbfa37
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 "MMVimController.h"
15 @interface MMPlugInManager : NSObject {
17 NSMutableArray *plugInClasses;
20 - (NSArray *)plugInClasses;
22 // Find and load any plugins
23 - (void)loadAllPlugIns;
25 // release instances of loaded plugins
26 - (void)unloadAllPlugIns;
28 // Return singleton instance of MMPluginManager
29 + (MMPlugInManager *)sharedManager;
31 @end