Fix placement of auxiliary IM window for Core Text
[MacVim.git] / src / MacVim / MMPreferenceController.h
blobd9f65dcdc7439d689a2c253f5922056c5316558f
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 <DBPrefsWindowController.h>
14 @interface MMPreferenceController : DBPrefsWindowController {
16 IBOutlet NSView *generalPreferences;
17 IBOutlet NSView *integrationPreferences;
18 IBOutlet NSView *advancedPreferences;
20 // General pane
21 IBOutlet NSPopUpButton *layoutPopUpButton;
23 // Integration pane
24 NSDictionary *supportedOdbEditors;
25 IBOutlet NSPopUpButton *editors;
26 IBOutlet NSButton *installOdbButton;
27 IBOutlet NSButton *uninstallOdbButton;
28 IBOutlet NSTextField* obdBundleVersionLabel;
31 // General pane
32 - (IBAction)openInCurrentWindowSelectionChanged:(id)sender;
34 // Integration pane
35 - (IBAction)installOdb:(id)sender;
36 - (IBAction)uninstallOdb:(id)sender;
38 @end