File indexing completed on 2025-01-05 03:53:45

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2017-06-27
0007  * Description : finish page of export tool, where user can watch upload process.
0008  *
0009  * SPDX-FileCopyrightText: 2017-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  * SPDX-FileCopyrightText: 2018      by Thanh Trung Dinh <dinhthanhtrung1996 at gmail dot com>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #ifndef DIGIKAM_WS_FINAL_PAGE_H
0017 #define DIGIKAM_WS_FINAL_PAGE_H
0018 
0019 // Qt includes
0020 
0021 #include <QString>
0022 
0023 // Local includes
0024 
0025 #include "dwizardpage.h"
0026 
0027 using namespace Digikam;
0028 
0029 namespace DigikamGenericUnifiedPlugin
0030 {
0031 
0032 class WSFinalPage : public DWizardPage
0033 {
0034     Q_OBJECT
0035 
0036 public:
0037 
0038     explicit WSFinalPage(QWizard* const dialog, const QString& title);
0039     ~WSFinalPage();
0040 
0041     void initializePage();
0042     bool isComplete() const;
0043     void cleanupPage();
0044 
0045 private Q_SLOTS:
0046 
0047     void slotDone();
0048     void slotProcess();
0049     void slotMessage(const QString&, bool);
0050 
0051 private:
0052 
0053     class Private;
0054     Private* const d;
0055 };
0056 
0057 } // namespace DigikamGenericUnifiedPlugin
0058 
0059 #endif // DIGIKAM_WS_FINAL_PAGE_H