blob: dd2b4fe9bde21557e2589da8a104bca581668af9 [file] [log] [blame]
Jack Jansen3bbb6172002-07-29 21:36:35 +00001//
2// MyDocument.h
3// PythonLauncher
4//
5// Created by Jack Jansen on Fri Jul 19 2002.
6// Copyright (c) 2002 __MyCompanyName__. All rights reserved.
7//
8
9
10#import <Cocoa/Cocoa.h>
11
12#import "FileSettings.h"
13
14@interface MyDocument : NSDocument <FileSettingsSource>
15{
16 IBOutlet NSTextField *interpreter;
Jack Jansen3d3b7462003-02-17 15:40:00 +000017 IBOutlet NSButton *honourhashbang;
Jack Jansen3bbb6172002-07-29 21:36:35 +000018 IBOutlet NSButton *debug;
19 IBOutlet NSButton *verbose;
20 IBOutlet NSButton *inspect;
21 IBOutlet NSButton *optimize;
22 IBOutlet NSButton *nosite;
23 IBOutlet NSButton *tabs;
24 IBOutlet NSTextField *others;
25 IBOutlet NSButton *with_terminal;
26 IBOutlet NSTextField *commandline;
27
28 NSString *script;
29 NSString *filetype;
30 FileSettings *settings;
31}
32
33- (IBAction)do_run:(id)sender;
34- (IBAction)do_cancel:(id)sender;
35- (IBAction)do_reset:(id)sender;
36- (IBAction)do_apply:(id)sender;
37
38- (void)controlTextDidChange:(NSNotification *)aNotification;
39
40@end