summaryrefslogtreecommitdiffstats
path: root/kttsd/kcmkttsmgr/addtalker.h
diff options
context:
space:
mode:
Diffstat (limited to 'kttsd/kcmkttsmgr/addtalker.h')
-rw-r--r--kttsd/kcmkttsmgr/addtalker.h89
1 files changed, 89 insertions, 0 deletions
diff --git a/kttsd/kcmkttsmgr/addtalker.h b/kttsd/kcmkttsmgr/addtalker.h
new file mode 100644
index 0000000..29bbfb5
--- /dev/null
+++ b/kttsd/kcmkttsmgr/addtalker.h
@@ -0,0 +1,89 @@
+/***************************************************** 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
+
+// Qt includes.
+#include <qmap.h>
+
+#include "addtalkerwidget.h"
+
+typedef QMap<QString,QStringList> SynthToLangMap;
+typedef QMap<QString,QStringList> LangToSynthMap;
+
+class AddTalker : public AddTalkerWidget
+{
+ Q_OBJECT
+
+public:
+ /**
+ * Constructor.
+ * @param synthToLangMap QMap of supported language codes indexed by synthesizer.
+ * @param parent Inherited KDialog parameter.
+ * @param name Inherited KDialog parameter.
+ */
+ AddTalker(SynthToLangMap synthToLangMap, QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+
+ /**
+ * Destructor.
+ */
+ ~AddTalker();
+
+ /**
+ * Returns user's chosen language code.
+ */
+ QString getLanguageCode();
+
+ /**
+ * Returns user's chosen synthesizer.
+ */
+ QString getSynthesizer();
+
+
+private:
+ /**
+ * Set the synthesizer-to-languages map.
+ * @param synthToLang QMap of supported language codes indexed by synthesizer.
+ */
+ void setSynthToLangMap(SynthToLangMap synthToLangMap);
+
+ // Converts a language code plus optional country code to language description.
+ QString languageCodeToLanguage(const QString &languageCode);
+
+ // QMap of language descriptions to language codes.
+ QMap<QString,QString> m_languageToLanguageCodeMap;
+ // QMap of supported languages indexed by synthesizer.
+ SynthToLangMap m_synthToLangMap;
+ // QMap 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
+