digiKam
panointropage.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_INTRO_PAGE_H
26 #define DIGIKAM_PANO_INTRO_PAGE_H
27 
28 // Qt includes
29 
30 #include <QAbstractButton>
31 
32 // Local includes
33 
34 #include "dwizardpage.h"
35 #include "panomanager.h"
36 
37 using namespace Digikam;
38 
40 {
41 
42 class PanoManager;
43 
44 class PanoIntroPage : public DWizardPage
45 {
46  Q_OBJECT
47 
48 public:
49 
50  explicit PanoIntroPage(PanoManager* const mngr, QWizard* const dlg);
51  ~PanoIntroPage() override;
52 
53  bool binariesFound();
54 
55 private Q_SLOTS:
56 
57  void slotToggleGPano(int state);
58  void slotChangeFileFormat(QAbstractButton* button);
59  void slotBinariesChanged(bool found);
60 /*
61  // TODO HDR
62  void slotShowFileFormat(int state);
63 */
64 private:
65 
66  void initializePage() override;
67 
68 private:
69 
70  class Private;
71  Private* const d;
72 };
73 
74 } // namespace DigikamGenericPanoramaPlugin
75 
76 #endif // DIGIKAM_PANO_INTRO_PAGE_H
Definition: panointropage.h:45
Definition: panomanager.h:55
Definition: dwizardpage.h:42
Definition: panoactions.h:36
Definition: datefolderview.cpp:43