summaryrefslogtreecommitdiff
path: root/plugins/WinterSpeak/src/SpeechApi51Lexicon.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/WinterSpeak/src/SpeechApi51Lexicon.h')
-rw-r--r--plugins/WinterSpeak/src/SpeechApi51Lexicon.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/WinterSpeak/src/SpeechApi51Lexicon.h b/plugins/WinterSpeak/src/SpeechApi51Lexicon.h
new file mode 100644
index 0000000000..85dd2230fe
--- /dev/null
+++ b/plugins/WinterSpeak/src/SpeechApi51Lexicon.h
@@ -0,0 +1,35 @@
+#pragma once
+
+#include <wtypes.h>
+
+class SpeechApi51;
+
+class SpeechApi51Lexicon
+{
+ public:
+ //--------------------------------------------------------------------------
+ // Description : Constuctor
+ // Parameters : window - handle to the parent window
+ //--------------------------------------------------------------------------
+ SpeechApi51Lexicon(HWND window);
+
+ ~SpeechApi51Lexicon();
+
+ //--------------------------------------------------------------------------
+ // Description : display the lexicon dialog
+ // Return : true - display ok
+ // false - display failed
+ //--------------------------------------------------------------------------
+ bool display();
+
+ private:
+ static INT_PTR CALLBACK dialogEvent(HWND hwndDlg, UINT uMsg,
+ WPARAM wParam, LPARAM lParam);
+
+ void addLexicon();
+ void deleteLexicon();
+ void displayLexicon();
+
+ HWND m_parent_window;
+ HWND m_window;
+}; \ No newline at end of file