mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 10:41:20 +00:00
18 lines
401 B
C
18 lines
401 B
C
|
#import "GSSpeechServer.h"
|
||
|
#import <AppKit/NSSpeechSynthesizer.h>
|
||
|
|
||
|
|
||
|
@interface GSSpeechSynthesizer : NSSpeechSynthesizer {
|
||
|
NSString *currentVoice;
|
||
|
id delegate;
|
||
|
}
|
||
|
- (id)initWithVoice: (NSString*)aVoice;
|
||
|
- (id)init;
|
||
|
- (NSString*)voice;
|
||
|
- (id)delegate;
|
||
|
- (void)setDelegate: (id)aDelegate;
|
||
|
- (void)setVoice: (NSString*)aVoice;
|
||
|
- (BOOL)startSpeakingString: (NSString*)aString;
|
||
|
- (void)stopSpeaking;
|
||
|
@end
|