File indexing completed on 2024-06-09 05:03:33

0001 /*
0002     SPDX-FileCopyrightText: 2006 Thomas Baumgart <ipwizard@users.sourceforge.net>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef KINTROPAGE_H
0007 #define KINTROPAGE_H
0008 
0009 // ----------------------------------------------------------------------------
0010 // QT Includes
0011 
0012 #include <QWidget>
0013 
0014 // ----------------------------------------------------------------------------
0015 // Project Includes
0016 
0017 #include "wizardpage.h"
0018 
0019 class KMyMoneyWizardPage;
0020 
0021 namespace NewUserWizard
0022 {
0023 class Wizard;
0024 
0025 class IntroPagePrivate;
0026 class IntroPage : public QWidget, public WizardPage<Wizard>
0027 {
0028     Q_OBJECT
0029     Q_DISABLE_COPY(IntroPage)
0030 
0031 public:
0032     explicit IntroPage(Wizard* parent);
0033     ~IntroPage() override;
0034 
0035     KMyMoneyWizardPage* nextPage() const override;
0036 
0037 private:
0038     Q_DECLARE_PRIVATE_D(WizardPage<Wizard>::d_ptr, IntroPage)
0039     friend class Wizard;
0040 };
0041 } // namespace
0042 
0043 #endif