digiKam
panooptimizepage.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  *
9  * Copyright (C) 2011-2016 by Benjamin Girault <benjamin dot girault at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * ============================================================ */
22 
23 #ifndef DIGIKAM_PANO_OPTIMIZE_PAGE_H
24 #define DIGIKAM_PANO_OPTIMIZE_PAGE_H
25 
26 // Local includes
27 
28 #include "dwizardpage.h"
29 #include "panoactions.h"
30 
31 using namespace Digikam;
32 
34 {
35 
36 class PanoManager;
37 
39 {
40  Q_OBJECT
41 
42 public:
43 
44  explicit PanoOptimizePage(PanoManager* const mngr, QWizard* const dlg);
45  ~PanoOptimizePage() override;
46 
47 private:
48 
49  void process();
50 
51  void initializePage() override;
52  bool validatePage() override;
53  void cleanupPage() override;
54 
55 Q_SIGNALS:
56 
58 
59 private Q_SLOTS:
60 
61  void slotProgressTimerDone();
62  void slotPanoAction(const DigikamGenericPanoramaPlugin::PanoActionData&);
63 
64 private:
65 
66  class Private;
67  Private* const d;
68 };
69 
70 } // namespace DigikamGenericPanoramaPlugin
71 
72 #endif // DIGIKAM_PANO_OPTIMIZE_PAGE_H
Definition: panomanager.h:55
Definition: panooptimizepage.h:39
Definition: dwizardpage.h:42
Definition: panoactions.h:36
Definition: datefolderview.cpp:43