File indexing completed on 2025-01-05 03:52:07

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2006-04-04
0007  * Description : a tool to generate HTML image galleries
0008  *
0009  * SPDX-FileCopyrightText: 2012-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  *
0011  * SPDX-License-Identifier: GPL-2.0-or-later
0012  *
0013  * ============================================================ */
0014 
0015 #ifndef DIGIKAM_HTML_PARAMETERS_PAGE_H
0016 #define DIGIKAM_HTML_PARAMETERS_PAGE_H
0017 
0018 // Qt includes
0019 
0020 #include <QByteArray>
0021 #include <QString>
0022 #include <QWidget>
0023 
0024 // Local includes
0025 
0026 #include "dwizardpage.h"
0027 
0028 using namespace Digikam;
0029 
0030 namespace DigikamGenericHtmlGalleryPlugin
0031 {
0032 
0033 class GalleryInfo;
0034 
0035 class HTMLParametersPage : public DWizardPage
0036 {
0037     Q_OBJECT
0038 
0039 public:
0040 
0041     explicit HTMLParametersPage(QWizard* const dialog, const QString& title);
0042     ~HTMLParametersPage() override;
0043 
0044     void initializePage() override;
0045 
0046     QWidget* themeParameterWidgetFromName(const QByteArray&) const;
0047 
0048 private:
0049 
0050     class Private;
0051     Private* const d;
0052 };
0053 
0054 } // namespace DigikamGenericHtmlGalleryPlugin
0055 
0056 #endif // DIGIKAM_HTML_PARAMETERS_PAGE_H