digiKam
panopreprocesspage.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_PRE_PROCESS_PAGE_H
26 #define DIGIKAM_PANO_PRE_PROCESS_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 
41 {
42  Q_OBJECT
43 
44 public:
45 
46  explicit PanoPreProcessPage(PanoManager* const mngr, QWizard* const dlg);
47  ~PanoPreProcessPage() override;
48 
49 private:
50 
51  void process();
52  void initializePage() override;
53  bool validatePage() override;
54  void cleanupPage() override;
55 
56 Q_SIGNALS:
57 
59 
60 private Q_SLOTS:
61 
62  void slotProgressTimerDone();
63  void slotPanoAction(const DigikamGenericPanoramaPlugin::PanoActionData&);
64 
65 private:
66 
67  class Private;
68  Private* const d;
69 };
70 
71 } // namespace DigikamGenericPanoramaPlugin
72 
73 #endif // DIGIKAM_PANO_PRE_PROCESS_PAGE_H
Definition: panomanager.h:55
Definition: panopreprocesspage.h:41
Definition: dwizardpage.h:42
Definition: panoactions.h:36
Definition: datefolderview.cpp:43