7#include "texttospeechwidget.h"
8#include "texttospeechactions.h"
9#include "texttospeechconfigdialog.h"
10#include "texttospeechinterface.h"
11#include "texttospeechsliderwidget.h"
12#include <KLocalizedString>
20using namespace std::chrono_literals;
23using namespace TextEditTextToSpeech;
25class Q_DECL_HIDDEN TextEditTextToSpeech::TextToSpeechWidgetPrivate
28 TextToSpeechWidgetPrivate() =
default;
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;
40TextToSpeechWidget::TextToSpeechWidget(
QWidget *parent)
42 , d(new TextEditTextToSpeech::TextToSpeechWidgetPrivate)
45 hbox->setObjectName(QStringLiteral(
"hbox"));
46 hbox->setContentsMargins(
QMargins{});
49 connect(d->mTextToSpeechActions, &TextToSpeechActions::stateChanged,
this, &TextToSpeechWidget::stateChanged);
56 hbox->addWidget(close);
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);
70 d->mStopButton->setObjectName(QStringLiteral(
"stopbutton"));
71 d->mStopButton->setDefaultAction(d->mTextToSpeechActions->stopAction());
72 hbox->addWidget(d->mStopButton);
75 d->mPlayPauseButton->setObjectName(QStringLiteral(
"playpausebutton"));
76 d->mPlayPauseButton->setDefaultAction(d->mTextToSpeechActions->playPauseAction());
77 hbox->addWidget(d->mPlayPauseButton);
81 d->mConfigureButton->setToolTip(
i18nc(
"@info:tooltip",
"Configureā¦"));
82 d->mConfigureButton->setObjectName(QStringLiteral(
"configurebutton"));
84 hbox->addWidget(d->mConfigureButton);
92TextToSpeechWidget::~TextToSpeechWidget() =
default;
94void TextToSpeechWidget::slotCloseTextToSpeechWidget()
96 d->mTextToSpeechActions->slotStop();
100void TextToSpeechWidget::slotConfigure()
102 if (!d->mConfigDialog.data()) {
103 d->mNeedToHide =
false;
104 d->mConfigDialog =
new TextToSpeechConfigDialog(
this);
105 if (d->mConfigDialog->exec()) {
106 d->mTextToSpeechInterface->reloadSettings();
109 delete d->mConfigDialog;
110 if (d->mNeedToHide) {
112 d->mNeedToHide =
false;
117void TextToSpeechWidget::slotVolumeChanged(
int value)
119 d->mTextToSpeechInterface->setVolume(value / 100.0);
122bool TextToSpeechWidget::isReady()
const
124 return d->mTextToSpeechInterface->isReady();
127void TextToSpeechWidget::say(
const QString &text)
130 if (d->mTextToSpeechInterface->isReady()) {
131 d->mTextToSpeechInterface->say(text);
138TextToSpeechWidget::State TextToSpeechWidget::state()
const
140 return d->mTextToSpeechActions->state();
143void TextToSpeechWidget::slotStateChanged(TextEditTextToSpeech::TextToSpeech::State 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;
162void TextToSpeechWidget::showWidget()
165 Q_EMIT changeVisibility(
true);
168void TextToSpeechWidget::hideWidget()
171 Q_EMIT changeVisibility(
false);
174void TextToSpeechWidget::setState(TextToSpeechWidget::State state)
176 d->mTextToSpeechActions->setState(state);
181 delete d->mTextToSpeechInterface;
182 d->mTextToSpeechInterface = interface;
184 if (d->mTextToSpeechInterface) {
185 d->mTextToSpeechInterface->reloadSettings();
190void TextToSpeechWidget::applyVolume()
194 d->mVolume->setValue(d->mTextToSpeechInterface->volume() * 100);
197#include "moc_texttospeechwidget.cpp"
The TextToSpeechActions class.
The TextToSpeechInterface class.
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 setIcon(const QIcon &icon)
QIcon fromTheme(const QString &name)
void setObjectName(QAnyStringView name)
bool isEmpty() const const
QFuture< ArgsType< Signal > > connect(Sender *sender, Signal signal)