KTextAddons

texttospeechwidget.cpp
1/*
2 SPDX-FileCopyrightText: 2014-2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "texttospeechwidget.h"
8#include "texttospeechactions.h"
9#include "texttospeechconfigdialog.h"
10#include "texttospeechinterface.h"
11#include "texttospeechsliderwidget.h"
12#include <KLocalizedString>
13#include <KMessageBox>
14#include <QHBoxLayout>
15#include <QLabel>
16#include <QPointer>
17#include <QTimer>
18#include <QToolButton>
19
20using namespace std::chrono_literals;
21#include <chrono>
22
23using namespace TextEditTextToSpeech;
24
25class Q_DECL_HIDDEN TextEditTextToSpeech::TextToSpeechWidgetPrivate
26{
27public:
28 TextToSpeechWidgetPrivate() = default;
29
30 QPointer<TextEditTextToSpeech::TextToSpeechConfigDialog> mConfigDialog;
31 QToolButton *mStopButton = nullptr;
32 QToolButton *mPlayPauseButton = nullptr;
33 QToolButton *mConfigureButton = nullptr;
34 TextToSpeechInterface *mTextToSpeechInterface = nullptr;
35 TextToSpeechActions *mTextToSpeechActions = nullptr;
36 TextToSpeechSliderWidget *mVolume = nullptr;
37 bool mNeedToHide = false;
38};
39
40TextToSpeechWidget::TextToSpeechWidget(QWidget *parent)
41 : QWidget(parent)
42 , d(new TextEditTextToSpeech::TextToSpeechWidgetPrivate)
43{
44 auto hbox = new QHBoxLayout(this);
45 hbox->setObjectName(QStringLiteral("hbox"));
46 hbox->setContentsMargins(QMargins{});
47
48 d->mTextToSpeechActions = new TextToSpeechActions(this);
49 connect(d->mTextToSpeechActions, &TextToSpeechActions::stateChanged, this, &TextToSpeechWidget::stateChanged);
50
51 auto close = new QToolButton(this);
52 close->setObjectName(QStringLiteral("close-button"));
53 close->setIcon(QIcon::fromTheme(QStringLiteral("dialog-close")));
54 close->setToolTip(i18nc("@info:tooltip", "Close"));
55 connect(close, &QToolButton::clicked, this, &TextToSpeechWidget::slotCloseTextToSpeechWidget);
56 hbox->addWidget(close);
57 hbox->addStretch(0);
58
59 auto volume = new QLabel(i18nc("@label:textbox", "Volume:"), this);
60 volume->setTextFormat(Qt::PlainText);
61 hbox->addWidget(volume);
62 d->mVolume = new TextToSpeechSliderWidget(QStringLiteral("%1 %"), this);
63 d->mVolume->setMinimumWidth(100);
64 d->mVolume->setObjectName(QStringLiteral("volumeslider"));
65 d->mVolume->setRange(0, 100);
66 connect(d->mVolume, &TextToSpeechSliderWidget::valueChanged, this, &TextToSpeechWidget::slotVolumeChanged);
67 hbox->addWidget(d->mVolume);
68
69 d->mStopButton = new QToolButton(this);
70 d->mStopButton->setObjectName(QStringLiteral("stopbutton"));
71 d->mStopButton->setDefaultAction(d->mTextToSpeechActions->stopAction());
72 hbox->addWidget(d->mStopButton);
73
74 d->mPlayPauseButton = new QToolButton(this);
75 d->mPlayPauseButton->setObjectName(QStringLiteral("playpausebutton"));
76 d->mPlayPauseButton->setDefaultAction(d->mTextToSpeechActions->playPauseAction());
77 hbox->addWidget(d->mPlayPauseButton);
78
79 d->mConfigureButton = new QToolButton(this);
80 d->mConfigureButton->setIcon(QIcon::fromTheme(QStringLiteral("configure")));
81 d->mConfigureButton->setToolTip(i18nc("@info:tooltip", "Configureā€¦"));
82 d->mConfigureButton->setObjectName(QStringLiteral("configurebutton"));
83 connect(d->mConfigureButton, &QToolButton::clicked, this, &TextToSpeechWidget::slotConfigure);
84 hbox->addWidget(d->mConfigureButton);
85
86 d->mTextToSpeechInterface = new TextToSpeechInterface(this, this);
87 applyVolume();
89 hideWidget();
90}
91
92TextToSpeechWidget::~TextToSpeechWidget() = default;
93
94void TextToSpeechWidget::slotCloseTextToSpeechWidget()
95{
96 d->mTextToSpeechActions->slotStop();
97 hideWidget();
98}
99
100void TextToSpeechWidget::slotConfigure()
101{
102 if (!d->mConfigDialog.data()) {
103 d->mNeedToHide = false;
104 d->mConfigDialog = new TextToSpeechConfigDialog(this);
105 if (d->mConfigDialog->exec()) {
106 d->mTextToSpeechInterface->reloadSettings();
107 applyVolume();
108 }
109 delete d->mConfigDialog;
110 if (d->mNeedToHide) {
111 hideWidget();
112 d->mNeedToHide = false;
113 }
114 }
115}
116
117void TextToSpeechWidget::slotVolumeChanged(int value)
118{
119 d->mTextToSpeechInterface->setVolume(value / 100.0);
120}
121
122bool TextToSpeechWidget::isReady() const
123{
124 return d->mTextToSpeechInterface->isReady();
125}
126
127void TextToSpeechWidget::say(const QString &text)
128{
129 if (!text.isEmpty()) {
130 if (d->mTextToSpeechInterface->isReady()) {
131 d->mTextToSpeechInterface->say(text);
132 } else {
133 KMessageBox::error(this, i18n("Engine has a problem."), i18nc("@title:window", "Text To Speech"));
134 }
135 }
136}
137
138TextToSpeechWidget::State TextToSpeechWidget::state() const
139{
140 return d->mTextToSpeechActions->state();
141}
142
143void TextToSpeechWidget::slotStateChanged(TextEditTextToSpeech::TextToSpeech::State state)
144{
145 switch (state) {
146 case TextEditTextToSpeech::TextToSpeech::Ready:
147 if (state == TextEditTextToSpeech::TextToSpeech::Ready) {
148 d->mTextToSpeechActions->setState(TextToSpeechWidget::Stop);
149 if (d->mConfigDialog) {
150 d->mNeedToHide = true;
151 } else {
152 QTimer::singleShot(2s, this, &TextToSpeechWidget::hideWidget);
153 }
154 }
155 break;
156 default:
157 // TODO
158 break;
159 }
160}
161
162void TextToSpeechWidget::showWidget()
163{
164 show();
165 Q_EMIT changeVisibility(true);
166}
167
168void TextToSpeechWidget::hideWidget()
169{
170 hide();
171 Q_EMIT changeVisibility(false);
172}
173
174void TextToSpeechWidget::setState(TextToSpeechWidget::State state)
175{
176 d->mTextToSpeechActions->setState(state);
177}
178
179void TextToSpeechWidget::setTextToSpeechInterface(TextToSpeechInterface *interface)
180{
181 delete d->mTextToSpeechInterface;
182 d->mTextToSpeechInterface = interface;
183 // Update volume value
184 if (d->mTextToSpeechInterface) {
185 d->mTextToSpeechInterface->reloadSettings();
186 applyVolume();
187 }
188}
189
190void TextToSpeechWidget::applyVolume()
191{
192 // Api return volume between 0.0 -> 1.0
193 // We want display between 0 -> 100
194 d->mVolume->setValue(d->mTextToSpeechInterface->volume() * 100);
195}
196
197#include "moc_texttospeechwidget.cpp"
QString i18nc(const char *context, const char *text, const TYPE &arg...)
QString i18n(const char *text, const TYPE &arg...)
void error(QWidget *parent, const QString &text, const QString &title, const KGuiItem &buttonOk, Options options=Notify)
QAction * close(const QObject *recvr, const char *slot, QObject *parent)
void clicked(bool checked)
void setIcon(const QIcon &icon)
void setToolTip(const QString &tip)
QIcon fromTheme(const QString &name)
Q_EMITQ_EMIT
void setObjectName(QAnyStringView name)
bool isEmpty() const const
PlainText
QFuture< ArgsType< Signal > > connect(Sender *sender, Signal signal)
void hide()
void show()
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 11:55:34 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.