Removed out-of-date comment in _install_handlers and
[python.git] / Mac / PythonLauncher / PreferencesWindowController.h
blob63469968c1e3e7bc5eb422c50a9d8ebbc12b0461
1 /* PreferencesWindowController */
3 #import <Cocoa/Cocoa.h>
5 #import "FileSettings.h"
7 @interface PreferencesWindowController : NSWindowController <FileSettingsSource>
9 IBOutlet NSPopUpButton *filetype;
10 IBOutlet NSComboBox *interpreter;
11 IBOutlet NSButton *honourhashbang;
12 IBOutlet NSButton *debug;
13 IBOutlet NSButton *verbose;
14 IBOutlet NSButton *inspect;
15 IBOutlet NSButton *optimize;
16 IBOutlet NSButton *nosite;
17 IBOutlet NSButton *tabs;
18 IBOutlet NSTextField *others;
19 IBOutlet NSButton *with_terminal;
20 IBOutlet NSTextField *commandline;
22 FileSettings *settings;
25 + getPreferencesWindow;
27 - (IBAction)do_reset:(id)sender;
28 - (IBAction)do_apply:(id)sender;
29 - (IBAction)do_filetype:(id)sender;
31 - (void)controlTextDidChange:(NSNotification *)aNotification;
33 - (unsigned int)comboBox:(NSComboBox *)aComboBox indexOfItemWithStringValue:(NSString *)aString;
34 - (id)comboBox:(NSComboBox *)aComboBox objectValueForItemAtIndex:(int)index;
35 - (int)numberOfItemsInComboBox:(NSComboBox *)aComboBox;
38 @end