diff options
author | Philip Schell <github.com@blubbfish.net> | 2013-10-22 12:11:15 +0000 |
---|---|---|
committer | Philip Schell <github.com@blubbfish.net> | 2013-10-22 12:11:15 +0000 |
commit | a27aa5dcda7e65de6e1bb04cfd8ea678242648d0 (patch) | |
tree | 6d126293901ae226f0a74f105f026a8f6085bf0f /plugins/WinterSpeak/src/SpeechApi40aLexicon.h | |
parent | d2f13f41feb91bbc53a86207d0a1f75d2d22f8fb (diff) |
WinterSpeak now has SAPI40a support ticket:476 and other minor fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@6584 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WinterSpeak/src/SpeechApi40aLexicon.h')
-rw-r--r-- | plugins/WinterSpeak/src/SpeechApi40aLexicon.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/WinterSpeak/src/SpeechApi40aLexicon.h b/plugins/WinterSpeak/src/SpeechApi40aLexicon.h new file mode 100644 index 0000000000..73bee51cb9 --- /dev/null +++ b/plugins/WinterSpeak/src/SpeechApi40aLexicon.h @@ -0,0 +1,28 @@ +#pragma once
+
+#include <wtypes.h>
+
+struct ITTSCentralW;
+class SpeechApi40aLexicon
+{
+ public:
+ //--------------------------------------------------------------------------
+ // Description : Constuctor
+ // Parameters : window - handle to the parent window
+ // tts_central - pointer to the tts_central engine to use
+ //--------------------------------------------------------------------------
+ SpeechApi40aLexicon(HWND window, ITTSCentralW *tts_central);
+
+ ~SpeechApi40aLexicon();
+
+ //--------------------------------------------------------------------------
+ // Description : display the lexicon dialog
+ // Return : true - display ok
+ // false - display failed
+ //--------------------------------------------------------------------------
+ bool display();
+
+ private:
+ HWND m_window;
+ ITTSCentralW *m_tts_central;
+};
\ No newline at end of file |