File indexing completed on 2025-04-13 04:57:05
0001 /* 0002 * This file is part of the KDE project 0003 * 0004 * SPDX-FileCopyrightText: 2010 Alejandro Fiestas Olivares <afiestas@kde.org> 0005 * SPDX-FileCopyrightText: 2010-2011 UFO Coders <info@ufocoders.com> 0006 * SPDX-FileCopyrightText: 2014 David Rosca <nowrep@gmail.com> 0007 * 0008 * SPDX-License-Identifier: LGPL-2.0-or-later 0009 */ 0010 0011 #pragma once 0012 0013 #include "ui_success.h" 0014 0015 #include <QWizardPage> 0016 0017 class BlueWizard; 0018 0019 class SuccessPage : public QWizardPage, Ui::Success 0020 { 0021 Q_OBJECT 0022 0023 public: 0024 explicit SuccessPage(BlueWizard *parent = nullptr); 0025 0026 int nextId() const override; 0027 void initializePage() override; 0028 0029 private: 0030 BlueWizard *const m_wizard; 0031 };