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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/***************************************************** vim:set ts=4 sw=4 sts=4:
Dialog to allow user to add a new Talker by selecting a language and synthesizer
(button). Uses addtalkerwidget.ui.
-------------------
Copyright:
(C) 2004 by Gary Cramblitt <garycramblitt@comcast.net>
-------------------
Original author: Gary Cramblitt <garycramblitt@comcast.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
******************************************************************************/
#ifndef ADDTALKER_H
#define ADDTALKER_H
// TQt includes.
#include <tqmap.h>
#include "addtalkerwidget.h"
typedef TQMap<TQString,TQStringList> SynthToLangMap;
typedef TQMap<TQString,TQStringList> LangToSynthMap;
class AddTalker : public AddTalkerWidget
{
Q_OBJECT
public:
/**
* Constructor.
* @param synthToLangMap TQMap of supported language codes indexed by synthesizer.
* @param parent Inherited KDialog parameter.
* @param name Inherited KDialog parameter.
*/
AddTalker(SynthToLangMap synthToLangMap, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
/**
* Destructor.
*/
~AddTalker();
/**
* Returns user's chosen language code.
*/
TQString getLanguageCode();
/**
* Returns user's chosen synthesizer.
*/
TQString getSynthesizer();
private:
/**
* Set the synthesizer-to-languages map.
* @param synthToLang TQMap of supported language codes indexed by synthesizer.
*/
void setSynthToLangMap(SynthToLangMap synthToLangMap);
// Converts a language code plus optional country code to language description.
TQString languageCodeToLanguage(const TQString &languageCode);
// TQMap of language descriptions to language codes.
TQMap<TQString,TQString> m_languageToLanguageCodeMap;
// TQMap of supported languages indexed by synthesizer.
SynthToLangMap m_synthToLangMap;
// TQMap of synthesizers indexed by language code they support.
LangToSynthMap m_langToSynthMap;
private slots:
// Based on user's radio button selection, filters choices for language or synthesizer
// comboboxes based on what is selected in the other combobox.
void applyFilter();
};
#endif
|