Handle language change events in widgets.
[maemo-rb.git] / rbutil / rbutilqt / base / talkgenerator.h
blob3e2f9394fb6bc22a858df89f7ebe8b7f0618c199
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Wenger
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
22 #ifndef TALKGENERATOR_H
23 #define TALKGENERATOR_H
25 #include <QtCore>
26 #include "progressloggerinterface.h"
28 #include "encoderbase.h"
29 #include "ttsbase.h"
31 //! \brief Talk generator, generates .wav and .talk files out of a list.
32 class TalkGenerator :public QObject
34 Q_OBJECT
35 public:
36 enum Status
38 eOK,
39 eWARNING,
40 eERROR
43 struct TalkEntry
45 QString toSpeak;
46 QString wavfilename;
47 QString talkfilename;
48 QString target;
49 bool voiced;
50 bool encoded;
53 TalkGenerator(QObject* parent);
55 Status process(QList<TalkEntry>* list,int wavtrimth = -1);
56 QString correctString(QString s);
58 public slots:
59 void abort();
60 void setLang(QString name);
62 signals:
63 void done(bool);
64 void logItem(QString, int); //! set logger item
65 void logProgress(int, int); //! set progress bar.
67 private:
68 Status voiceList(QList<TalkEntry>* list,int wavetrimth);
69 Status encodeList(QList<TalkEntry>* list);
71 TTSBase* m_tts;
72 EncoderBase* m_enc;
74 QString m_lang;
76 struct CorrectionItems
78 QString search;
79 QString replace;
80 QString modifier;
82 QList<struct CorrectionItems> m_corrections;
84 bool m_abort;
90 #endif