first commit
This commit is contained in:
commit
925bd4a7a2
14 changed files with 7146 additions and 0 deletions
23
SpeakerAppDelegate.h
Normal file
23
SpeakerAppDelegate.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
//
|
||||
// SpeakerAppDelegate.h
|
||||
// Speaker
|
||||
//
|
||||
// Created by Jeena on 24.09.10.
|
||||
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
@interface SpeakerAppDelegate : NSObject <NSApplicationDelegate> {
|
||||
NSWindow *window;
|
||||
NSTextView *textView;
|
||||
NSSpeechSynthesizer *synth;
|
||||
NSRange oldRange;
|
||||
}
|
||||
|
||||
@property (assign) IBOutlet NSWindow *window;
|
||||
@property (retain, nonatomic) IBOutlet NSTextView *textView;
|
||||
|
||||
-(IBAction)speakAction:(id)sender;
|
||||
|
||||
@end
|
Loading…
Add table
Add a link
Reference in a new issue