File indexing completed on 2025-04-20 12:50:01
0001 /* 0002 SPDX-FileCopyrightText: 2015-2023 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 #include "textedittexttospeech_private_export.h" 0009 #include <QComboBox> 0010 #include <QLocale> 0011 namespace TextEditTextToSpeech 0012 { 0013 class TEXTEDITTEXTTOSPEECH_TESTS_EXPORT TextToSpeechLanguageComboBox : public QComboBox 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit TextToSpeechLanguageComboBox(QWidget *parent = nullptr); 0018 ~TextToSpeechLanguageComboBox() override; 0019 void selectLocaleName(const QString &localeName); 0020 void updateAvailableLocales(const QVector<QLocale> &locales, const QLocale ¤t); 0021 }; 0022 }