File indexing completed on 2024-12-08 06:26:54
0001 /*************************************************************************** 0002 * Copyright (C) 2002 by Gunnar Schmi Dt <kmouth@schmi-dt.de * 0003 * (C) 2015 by Jeremy Whiting <jpwhiting@kde.org> * 0004 * * 0005 * This program is free software; you can redistribute it and/or modify * 0006 * it under the terms of the GNU General Public License as published by * 0007 * the Free Software Foundation; either version 2 of the License, or * 0008 * (at your option) any later version. * 0009 * * 0010 * This program is distributed in the hope that it will be useful, * 0011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 0012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 0013 * GNU General Public License for more details. * 0014 * * 0015 * You should have received a copy of the GNU General Public License * 0016 * along with this program; if not, write to the * 0017 * Free Software Foundation, Inc., * 0018 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * 0019 ***************************************************************************/ 0020 0021 #ifndef OPTIONSDIALOG_H 0022 #define OPTIONSDIALOG_H 0023 0024 #include <KPageDialog> 0025 0026 #include "ui_preferencesui.h" 0027 0028 class QTabWidget; 0029 class TextToSpeechSystem; 0030 class TextToSpeechConfigurationWidget; 0031 class WordCompletionWidget; 0032 0033 /**This class represents a configuration widget for user preferences. 0034 *@author Gunnar Schmi Dt 0035 */ 0036 0037 class PreferencesWidget : public QWidget, public Ui::PreferencesUI 0038 { 0039 Q_OBJECT 0040 public: 0041 explicit PreferencesWidget(QWidget *parent, const QString &name); 0042 ~PreferencesWidget() override; 0043 0044 void readOptions(); 0045 void saveOptions(); 0046 0047 void ok(); 0048 void cancel(); 0049 0050 bool isSpeakImmediately(); 0051 0052 private: 0053 bool speak; 0054 int save; 0055 }; 0056 0057 /**This class represents a configuration dialog for the options of KMouth. 0058 *@author Gunnar Schmi Dt 0059 */ 0060 0061 class OptionsDialog : public KPageDialog 0062 { 0063 Q_OBJECT 0064 public: 0065 explicit OptionsDialog(QWidget *parent); 0066 ~OptionsDialog() override; 0067 0068 TextToSpeechSystem *getTTSSystem() const; 0069 0070 void readOptions(); 0071 void saveOptions(); 0072 0073 bool isSpeakImmediately(); 0074 0075 Q_SIGNALS: 0076 void configurationChanged(); 0077 0078 private Q_SLOTS: 0079 void slotCancel(); 0080 void slotOk(); 0081 void slotApply(); 0082 0083 private: 0084 QTabWidget *tabCtl; 0085 TextToSpeechConfigurationWidget *commandWidget; 0086 PreferencesWidget *behaviourWidget; 0087 WordCompletionWidget *completionWidget; 0088 }; 0089 0090 #endif