File indexing completed on 2025-01-19 03:51:20

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2006-10-15
0007  * Description : IPTC subjects settings page.
0008  *
0009  * SPDX-FileCopyrightText: 2006-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  * SPDX-FileCopyrightText: 2009      by Andi Clemens <andi dot clemens at googlemail dot com>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #ifndef DIGIKAM_META_DATA_EDIT_PAGE_H
0017 #define DIGIKAM_META_DATA_EDIT_PAGE_H
0018 
0019 // Qt includes
0020 
0021 #include <QScrollArea>
0022 
0023 namespace DigikamGenericMetadataEditPlugin
0024 {
0025 
0026 class MetadataEditPage : public QScrollArea
0027 {
0028     Q_OBJECT
0029 
0030 public:
0031 
0032     explicit MetadataEditPage(QWidget* const parent);
0033     ~MetadataEditPage() override;
0034 };
0035 
0036 } // namespace DigikamGenericMetadataEditPlugin
0037 
0038 #endif // DIGIKAM_META_DATA_EDIT_PAGE_H