digiKam
jalbumselectionpage.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_SELECTION_PAGE_H
24 #define DIGIKAM_JALBUM_SELECTION_PAGE_H
25 
26 // Qt includes
27 
28 #include <QList>
29 #include <QUrl>
30 #include <QString>
31 
32 // Local includes
33 
34 #include "dwizardpage.h"
35 
36 using namespace Digikam;
37 
39 {
40 
42 {
43  Q_OBJECT
44 
45 public:
46 
47  explicit JAlbumSelectionPage(QWizard* const dialog, const QString& title);
48  ~JAlbumSelectionPage() override;
49 
50  void initializePage() override;
51  bool validatePage() override;
52  bool isComplete() const override;
53 
54  void setItemsList(const QList<QUrl>& urls);
55 
56 private:
57 
58  class Private;
59  Private* const d;
60 };
61 
62 } // namespace DigikamGenericJAlbumPlugin
63 
64 #endif // DIGIKAM_JALBUM_SELECTION_PAGE_H
Definition: jalbumselectionpage.h:42
Definition: dwizardpage.h:42
Definition: jalbumgenerator.cpp:49
Definition: datefolderview.cpp:43