blob: 47c7be38e496ceaa7c9b9fc985deca508298566f [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;
17 IBOutlet NSButton *debug;
18 IBOutlet NSButton *verbose;
19 IBOutlet NSButton *inspect;
20 IBOutlet NSButton *optimize;
21 IBOutlet NSButton *nosite;
22 IBOutlet NSButton *tabs;
23 IBOutlet NSTextField *others;
24 IBOutlet NSButton *with_terminal;
25 IBOutlet NSTextField *commandline;
26
27 NSString *script;
28 NSString *filetype;
29 FileSettings *settings;
30}
31
32- (IBAction)do_run:(id)sender;
33- (IBAction)do_cancel:(id)sender;
34- (IBAction)do_reset:(id)sender;
35- (IBAction)do_apply:(id)sender;
36
37- (void)controlTextDidChange:(NSNotification *)aNotification;
38
39@end