File indexing completed on 2025-01-05 03:53:45
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2017-06-27 0007 * Description : a tool to export items to web services. 0008 * 0009 * SPDX-FileCopyrightText: 2017-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_WS_ALBUMS_PAGE_H 0016 #define DIGIKAM_WS_ALBUMS_PAGE_H 0017 0018 // Qt includes 0019 0020 #include <QList> 0021 #include <QUrl> 0022 #include <QString> 0023 0024 // Local includes 0025 0026 #include "dwizardpage.h" 0027 0028 using namespace Digikam; 0029 0030 namespace DigikamGenericUnifiedPlugin 0031 { 0032 0033 class WSAlbumsPage : public DWizardPage 0034 { 0035 public: 0036 0037 explicit WSAlbumsPage(QWizard* const dialog, const QString& title); 0038 ~WSAlbumsPage(); 0039 0040 bool validatePage(); 0041 bool isComplete() const; 0042 0043 private: 0044 0045 class Private; 0046 Private* const d; 0047 }; 0048 0049 } // namespace DigikamGenericUnifiedPlugin 0050 0051 #endif // DIGIKAM_WS_ALBUMS_PAGE_H