Improved method to start Vim processes in a login shell
[MacVim.git] / src / MacVim / MMPreferenceController.h
blob255a522955d9471fc203a1d0f41f16cc10744cf0
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;
20 // Integration pane
21 NSDictionary *supportedOdbEditors;
22 IBOutlet NSPopUpButton *editors;
23 IBOutlet NSButton *installOdbButton;
24 IBOutlet NSButton *uninstallOdbButton;
25 IBOutlet NSTextField* obdBundleVersionLabel;
29 // Integration pane
30 - (IBAction)installOdb:(id)sender;
31 - (IBAction)uninstallOdb:(id)sender;
33 @end