digiKam
jalbumwizard.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 : 2006-04-04
7  * Description : a tool to generate jAlbum image galleries
8  *
9  * Copyright (C) 2013-2019 by Andrew Goodbody <ajg zero two at elfringham dot co dot uk>
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_JALBUM_WIZARD_H
24 #define DIGIKAM_JALBUM_WIZARD_H
25 
26 // Qt includes
27 
28 #include <QList>
29 #include <QUrl>
30 
31 // Local includes
32 
33 #include "dwizarddlg.h"
34 #include "dinfointerface.h"
35 
36 using namespace Digikam;
37 
39 {
40 
41 class JAlbumSettings;
42 
46 class JAlbumWizard : public DWizardDlg
47 {
48  Q_OBJECT
49 
50 public:
51 
52  explicit JAlbumWizard(QWidget* const parent, DInfoInterface* const iface = nullptr);
53  ~JAlbumWizard() override;
54 
55  JAlbumSettings* settings() const;
56 
57  bool validateCurrentPage() override;
58  int nextId() const override;
59 
60  void setItemsList(const QList<QUrl>& urls);
61 
62 private:
63 
64  class Private;
65  Private* const d;
66 };
67 
68 } // namespace DigikamGenericJAlbumPlugin
69 
70 #endif // DIGIKAM_JALBUM_WIZARD_H
Definition: jalbumsettings.h:48
Definition: jalbumwizard.h:47
Definition: dinfointerface.h:56
Definition: dwizarddlg.h:40
Definition: jalbumgenerator.cpp:49
Definition: datefolderview.cpp:43