comparison dstep/appkit/NSSpeechSynthesizer_bindings.d @ 16:19885b43130e

Huge update, the bridge actually works now
author Jacob Carlborg <doob@me.com>
date Sun, 03 Jan 2010 22:06:11 +0100
parents
children
comparison
equal deleted inserted replaced
15:7ff919f595d5 16:19885b43130e
1 /**
2 * Copyright: Copyright (c) 2009 Jacob Carlborg.
3 * Authors: Jacob Carlborg
4 * Version: Initial created: Sep 24, 2009
5 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
6 */
7 module dstep.appkit.NSSpeechSynthesizer_bindings;
8
9 import dstep.objc.objc;
10
11 extern (C)
12 {
13 extern
14 {
15 package const id NSVoiceName;
16 package const id NSVoiceIdentifier;
17 package const id NSVoiceAge;
18 package const id NSVoiceGender;
19 package const id NSVoiceDemoText;
20 package const id NSVoiceLocaleIdentifier;
21 package const id NSVoiceSupportedCharacters;
22 package const id NSVoiceIndividuallySpokenCharacters;
23 package const id NSVoiceGenderNeuter;
24 package const id NSVoiceGenderMale;
25 package const id NSVoiceGenderFemale;
26 package const id NSSpeechStatusProperty;
27 package const id NSSpeechErrorsProperty;
28 package const id NSSpeechInputModeProperty;
29 package const id NSSpeechCharacterModeProperty;
30 package const id NSSpeechNumberModeProperty;
31 package const id NSSpeechRateProperty;
32 package const id NSSpeechPitchBaseProperty;
33 package const id NSSpeechPitchModProperty;
34 package const id NSSpeechVolumeProperty;
35 package const id NSSpeechSynthesizerInfoProperty;
36 package const id NSSpeechRecentSyncProperty;
37 package const id NSSpeechPhonemeSymbolsProperty;
38 package const id NSSpeechCurrentVoiceProperty;
39 package const id NSSpeechCommandDelimiterProperty;
40 package const id NSSpeechResetProperty;
41 package const id NSSpeechOutputToFileURLProperty;
42 package const id NSSpeechModeText;
43 package const id NSSpeechModePhoneme;
44 package const id NSSpeechModeNormal;
45 package const id NSSpeechModeLiteral;
46 package const id NSSpeechStatusOutputBusy;
47 package const id NSSpeechStatusOutputPaused;
48 package const id NSSpeechStatusNumberOfCharactersLeft;
49 package const id NSSpeechStatusPhonemeCode;
50 package const id NSSpeechErrorCount;
51 package const id NSSpeechErrorOldestCode;
52 package const id NSSpeechErrorOldestCharacterOffset;
53 package const id NSSpeechErrorNewestCode;
54 package const id NSSpeechErrorNewestCharacterOffset;
55 package const id NSSpeechSynthesizerInfoIdentifier;
56 package const id NSSpeechSynthesizerInfoVersion;
57 package const id NSSpeechPhonemeInfoOpcode;
58 package const id NSSpeechPhonemeInfoSymbol;
59 package const id NSSpeechPhonemeInfoExample;
60 package const id NSSpeechPhonemeInfoHiliteStart;
61 package const id NSSpeechPhonemeInfoHiliteEnd;
62 package const id NSSpeechCommandPrefix;
63 package const id NSSpeechCommandSuffix;
64 package const id NSSpeechDictionaryLocaleIdentifier;
65 package const id NSSpeechDictionaryModificationDate;
66 package const id NSSpeechDictionaryPronunciations;
67 package const id NSSpeechDictionaryAbbreviations;
68 package const id NSSpeechDictionaryEntrySpelling;
69 package const id NSSpeechDictionaryEntryPhonemes;
70 }
71 }