blob: 9aed91aa9bc0633c7601515c3689cb093cf0e149 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#ifndef guard_speak_config_dialog_config_engine_h
#define guard_speak_config_dialog_config_engine_h
//==============================================================================
// Miranda Speak Plugin, © 2002 Ryan Winter
//==============================================================================
#include "dialog/miranda_dialog.h"
#include "config/config_database.h"
#include <wtypes.h>
#include <memory>
class TextToSpeech;
class DialogConfigEngine : public MirandaDialog
{
public:
DialogConfigEngine(ConfigDatabase &db);
virtual ~DialogConfigEngine();
//--------------------------------------------------------------------------
// Description : process a dialog message
// Return : 0 - process ok
// 1 - error
//--------------------------------------------------------------------------
static int CALLBACK process(HWND window, UINT message, WPARAM wparam,
LPARAM lparam);
private:
void command(HWND window, int control);
//--------------------------------------------------------------------------
// Description : load/save setting to the miranda database
//--------------------------------------------------------------------------
void load(HWND window);
void save(HWND window);
//--------------------------------------------------------------------------
// Description : update the voices combo box
//--------------------------------------------------------------------------
void updateVoices(HWND window);
void getVoiceDesc(HWND window, VoiceDesc &desc);
std::string getEngine(HWND window);
bool createTts(HWND window);
static DialogConfigEngine *m_instance;
ConfigDatabase &m_db;
std::auto_ptr<TextToSpeech> m_test_tts;
};
//==============================================================================
//
// Summary : Configuration Engine Dialog box
//
// Description : Set up the configuration dialog box and process its input
//
//==============================================================================
#endif
|