digiKam
wsfinalpage.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date : 2017-06-27
7  * Description : finish page of export tool, where user can watch upload process.
8  *
9  * Copyright (C) 2017-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  * Copyright (C) 2018 by Thanh Trung Dinh <dinhthanhtrung1996 at gmail dot com>
11  *
12  * This program is free software; you can redistribute it
13  * and/or modify it under the terms of the GNU General
14  * Public License as published by the Free Software Foundation;
15  * either version 2, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #ifndef DIGIKAM_WS_FINAL_PAGE_H
25 #define DIGIKAM_WS_FINAL_PAGE_H
26 
27 // Qt includes
28 
29 #include <QString>
30 
31 // Local includes
32 
33 #include "dwizardpage.h"
34 
35 using namespace Digikam;
36 
38 {
39 
40 class WSFinalPage : public DWizardPage
41 {
42  Q_OBJECT
43 
44 public:
45 
46  explicit WSFinalPage(QWizard* const dialog, const QString& title);
47  ~WSFinalPage();
48 
49  void initializePage();
50  bool isComplete() const;
51  void cleanupPage();
52 
53 private Q_SLOTS:
54 
55  void slotDone();
56  void slotProcess();
57  void slotMessage(const QString&, bool);
58 
59 private:
60 
61  class Private;
62  Private* const d;
63 };
64 
65 } // namespace DigikamGenericUnifiedPlugin
66 
67 #endif // DIGIKAM_WS_FINAL_PAGE_H
Definition: wsfinalpage.h:41
Definition: dwizardpage.h:42
Definition: wsauthentication.cpp:56
Definition: datefolderview.cpp:43