KTextAddons

texttospeechcontainerwidget.h
1/*
2 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6#pragma once
7
8#include "textedittexttospeech_export.h"
9#include <QWidget>
10namespace TextEditTextToSpeech
11{
12class TextToSpeechContainerWidgetPrivate;
13/**
14 * @brief The TextToSpeechContainerWidget class
15 * @author Laurent Montel <montel@kde.org>
16 */
17class TEXTEDITTEXTTOSPEECH_EXPORT TextToSpeechContainerWidget : public QWidget
18{
19 Q_OBJECT
20public:
21 explicit TextToSpeechContainerWidget(QWidget *parent = nullptr);
23
24 void say(const QString &text);
25
26private:
27 std::unique_ptr<TextToSpeechContainerWidgetPrivate> const d;
28};
29}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:51:28 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.