CuteLogger
Fast and simple logging solution for Qt based applications
speechdialog.h
1/*
2 * Copyright (c) 2025 Meltytech, LLC
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef SPEECHDIALOG_H
19#define SPEECHDIALOG_H
20
21#include <MltConsumer.h>
22#include <QComboBox>
23#include <QDialog>
24#include <QDoubleSpinBox>
25#include <QLineEdit>
26#include <QObject>
27
28namespace Mlt {
29class Consumer;
30}
31
32class SpeechDialog : public QDialog
33{
34public:
35 explicit SpeechDialog(QWidget *parent);
36 QString outputFile() const { return m_outputFile ? m_outputFile->text().trimmed() : QString(); }
37 QString languageCode() const
38 {
39 return m_language ? m_language->currentData().toString() : QString();
40 }
41 QString voiceCode() const { return m_voice ? m_voice->currentData().toString() : QString(); }
42 double speed() const { return m_speed ? m_speed->value() : 1.0; }
43
44private:
45 QComboBox *m_language = nullptr;
46 QComboBox *m_voice = nullptr;
47 QDoubleSpinBox *m_speed = nullptr;
48 QLineEdit *m_outputFile = nullptr;
49 std::unique_ptr<Mlt::Consumer> m_consumer;
50 void populateVoices(const QString &langCode);
51};
52
53#endif // SPEECHDIALOG_H