digiKam
expoblendingwizard.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 : 2009-11-13
7  * Description : a tool to blend bracketed images.
8  *
9  * Copyright (C) 2009-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  * Copyright (C) 2012-2015 by Benjamin Girault <benjamin dot girault 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_EXPO_BLENDING_WIZARD_H
25 #define DIGIKAM_EXPO_BLENDING_WIZARD_H
26 
27 // Qt includes
28 
29 #include <QString>
30 #include <QWidget>
31 
32 // Local includes
33 
34 #include "dwizarddlg.h"
35 #include "expoblendingactions.h"
36 
37 using namespace Digikam;
38 
40 {
41 class ExpoBlendingManager;
42 
44 {
45  Q_OBJECT
46 
47 public:
48 
49  explicit ExpoBlendingWizard(ExpoBlendingManager* const mngr, QWidget* const parent = nullptr);
50  ~ExpoBlendingWizard() override;
51 
52  QList<QUrl> itemUrls() const;
53 
54  ExpoBlendingManager* manager() const;
55 
56  bool validateCurrentPage() override;
57 
58 private Q_SLOTS:
59 
60  void slotCurrentIdChanged(int);
61  void slotExpoBlendingIntroPageIsValid(bool);
62  void slotItemsPageIsValid(bool);
63  void slotPreProcessed(const ExpoBlendingItemUrlsMap&);
64 
65 private:
66 
67  class Private;
68  Private* const d;
69 };
70 
71 } // namespace DigikamGenericExpoBlendingPlugin
72 
73 #endif // DIGIKAM_EXPO_BLENDING_WIZARD_H
Definition: expoblendingmanager.h:48
Definition: expoblendingwizard.h:44
Definition: dwizarddlg.h:40
Definition: bracketstack.cpp:43
QMap< QUrl, ExpoBlendingItemPreprocessedUrls > ExpoBlendingItemUrlsMap
Map between original Url and processed temp Urls.
Definition: expoblendingactions.h:69
Definition: datefolderview.cpp:43