File indexing completed on 2025-01-05 03:58:23

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2009-28-04
0007  * Description : first run assistant dialog
0008  *
0009  * SPDX-FileCopyrightText: 2009-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_METADATA_PAGE_H
0016 #define DIGIKAM_METADATA_PAGE_H
0017 
0018 // Local includes
0019 
0020 #include "dwizardpage.h"
0021 
0022 namespace Digikam
0023 {
0024 
0025 class MetadataPage : public DWizardPage
0026 {
0027     Q_OBJECT
0028 
0029 public:
0030 
0031     explicit MetadataPage(QWizard* const dlg);
0032     ~MetadataPage() override;
0033 
0034     void saveSettings();
0035 
0036 private:
0037 
0038     class Private;
0039     Private* const d;
0040 };
0041 
0042 } // namespace Digikam
0043 
0044 #endif // DIGIKAM_METADATA_PAGE_H