digiKam
gallerygenerator.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 HTML image galleries
8  *
9  * Copyright (C) 2006-2010 by Aurelien Gateau <aurelien dot gateau at free dot fr>
10  * Copyright (C) 2012-2022 by Gilles Caulier <caulier dot gilles 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_GALLERY_GENERATOR_H
25 #define DIGIKAM_GALLERY_GENERATOR_H
26 
27 // Qt includes
28 
29 #include <QObject>
30 
31 // Local includes
32 
33 #include "dprogresswdg.h"
34 #include "dhistoryview.h"
35 
36 using namespace Digikam;
37 
39 {
40 
41 class GalleryInfo;
42 class GalleryElementFunctor;
43 
48 class GalleryGenerator : public QObject
49 {
50  Q_OBJECT
51 
52 public:
53 
54  explicit GalleryGenerator(GalleryInfo* const);
55  ~GalleryGenerator() override;
56 
57  void setProgressWidgets(DHistoryView* const, DProgressWdg* const);
58 
59  bool run();
60  bool warnings() const;
61 
65  static QString webifyFileName(const QString&);
66 
67 Q_SIGNALS:
68 
74  void logWarningRequested(const QString&);
75 
76 private Q_SLOTS:
77 
78  void logWarning(const QString&);
79  void slotCancel();
80 
81 private:
82 
83  class Private;
84  Private* const d;
85 
86  friend class Private;
87  friend class GalleryElementFunctor;
88 };
89 
90 } // namespace DigikamGenericHtmlGalleryPlugin
91 
92 #endif // DIGIKAM_GALLERY_GENERATOR_H
Definition: galleryelementfunctor.h:44
Definition: gallerygenerator.h:49
Definition: dhistoryview.h:42
Definition: dprogresswdg.h:39
Definition: galleryconfig.cpp:30
Definition: datefolderview.cpp:43