KTextAddons

speechtotextselectdevicewidget.h
1/*
2 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6#pragma once
7
8#include "speechtotext_private_export.h"
9#include <QWidget>
10class QComboBox;
11namespace TextSpeechToText
12{
13class TEXTSPEECHTOTEXT_TESTS_EXPORT SpeechToTextSelectDeviceWidget : public QWidget
14{
15 Q_OBJECT
16public:
17 explicit SpeechToTextSelectDeviceWidget(QWidget *parent = nullptr);
18 ~SpeechToTextSelectDeviceWidget() override;
19
20 void loadSettings();
21 void saveSettings();
22
23 void initializeInput();
24
25private:
26 QComboBox *const mDeviceComboBox;
27};
28}
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.