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 CONFIGWIZARD_H 0022 #define CONFIGWIZARD_H 0023 0024 #include <QWizard> 0025 0026 class TextToSpeechConfigurationWidget; 0027 class InitialPhraseBookWidget; 0028 class CompletionWizardWidget; 0029 0030 /**The class ConfigWizard is used when the user starts KMouth for the first 0031 * time. It asks the user to provide a first set of configuration data. 0032 *@author Gunnar Schmi Dt 0033 */ 0034 class ConfigWizard : public QWizard 0035 { 0036 Q_OBJECT 0037 public: 0038 explicit ConfigWizard(QWidget *parent); 0039 ~ConfigWizard() override; 0040 0041 bool configurationNeeded(); 0042 bool requestConfiguration(); 0043 0044 public Q_SLOTS: 0045 void saveConfig(); 0046 0047 protected: 0048 void help(); 0049 0050 private: 0051 void initCommandPage(); 0052 void initBookPage(); 0053 void initCompletion(); 0054 0055 TextToSpeechConfigurationWidget *commandWidget; 0056 InitialPhraseBookWidget *bookWidget; 0057 CompletionWizardWidget *completionWidget; 0058 }; 0059 0060 #endif