digiKam
panolastpage.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 : 2011-05-23
7  * Description : a tool to create panorama by fusion of several images.
8  * Acknowledge : based on the expoblending tool
9  *
10  * Copyright (C) 2011-2016 by Benjamin Girault <benjamin dot girault at gmail dot com>
11  * Copyright (C) 2009-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
12  *
13  * This program is free software; you can redistribute it
14  * and/or modify it under the terms of the GNU General
15  * Public License as published by the Free Software Foundation;
16  * either version 2, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * ============================================================ */
24 
25 #ifndef DIGIKAM_PANO_LAST_PAGE_H
26 #define DIGIKAM_PANO_LAST_PAGE_H
27 
28 // Local includes
29 
30 #include "dwizardpage.h"
31 #include "panoactions.h"
32 
33 using namespace Digikam;
34 
36 {
37 
38 class PanoManager;
39 
40 class PanoLastPage : public DWizardPage
41 {
42  Q_OBJECT
43 
44 public:
45 
46  explicit PanoLastPage(PanoManager* const mngr, QWizard* const dlg);
47  ~PanoLastPage() override;
48 
49 private:
50 
51  void copyFiles();
52  void checkFiles();
53  QString panoFileName(const QString& fileTemplate) const;
54 
55  void initializePage() override;
56  bool validatePage() override;
57 
58 Q_SIGNALS:
59 
61 
62 private Q_SLOTS:
63 
64  void slotTemplateChanged(const QString&);
65  void slotPtoCheckBoxChanged(int);
66  void slotPanoAction(const DigikamGenericPanoramaPlugin::PanoActionData&);
67 
68 private:
69 
70  class Private;
71  Private* const d;
72 };
73 
74 } // namespace DigikamGenericPanoramaPlugin
75 
76 #endif // DIGIKAM_PANO_LAST_PAGE_H
Definition: panolastpage.h:41
Definition: panomanager.h:55
Definition: dwizardpage.h:42
Definition: panoactions.h:36
Definition: datefolderview.cpp:43