add command wrapper class

This commit is contained in:
optixx
2009-09-01 17:10:59 +02:00
parent c60d2f92fa
commit 58b422771a
19 changed files with 864 additions and 172 deletions

View File

@@ -2,18 +2,9 @@
@interface AppController : NSObject {
IBOutlet NSTextField *textField;
IBOutlet NSColorWell *colorWell;
IBOutlet NSButton *stopButton;
IBOutlet NSTableView *tableView;
NSSpeechSynthesizer *speechSynth;
}
- (IBAction)sayIt:(id)sender;
- (IBAction)stopIt:(id)sender;
- (IBAction)changeTextColor:(id)sender;
- (void)speechSynthesizer:(NSSpeechSynthesizer *)send
didFinishSpeaking:(BOOL)finishedSpeaking;
- (int)numberOfRowsInTableView:(NSTableView *) aTableView;
-(id)tableView:(NSTableView*) aTableView
objectValueForTableColumn:(NSTableColumn *) aTableColumn row:(int)row;
- (IBAction)romInfo:(id)sender;
- (IBAction)romUpload:(id)sender;
@end