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

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2007-10-16
0007  * Description : XMP keywords settings page.
0008  *
0009  * SPDX-FileCopyrightText: 2007-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_XMP_KEYWORDS_H
0016 #define DIGIKAM_XMP_KEYWORDS_H
0017 
0018 // Qt includes
0019 
0020 #include <QWidget>
0021 
0022 // Local includes
0023 
0024 #include "dmetadata.h"
0025 #include "metadataeditpage.h"
0026 
0027 using namespace Digikam;
0028 
0029 namespace DigikamGenericMetadataEditPlugin
0030 {
0031 
0032 class XMPKeywords : public MetadataEditPage
0033 {
0034     Q_OBJECT
0035 
0036 public:
0037 
0038     explicit XMPKeywords(QWidget* const parent);
0039     ~XMPKeywords() override;
0040 
0041     void applyMetadata(const DMetadata& meta);
0042     void readMetadata(const DMetadata& meta);
0043 
0044 Q_SIGNALS:
0045 
0046     void signalModified();
0047 
0048 private Q_SLOTS:
0049 
0050     void slotKeywordSelectionChanged();
0051     void slotAddKeyword();
0052     void slotDelKeyword();
0053     void slotRepKeyword();
0054 
0055 private:
0056 
0057     class Private;
0058     Private* const d;
0059 };
0060 
0061 } // namespace DigikamGenericMetadataEditPlugin
0062 
0063 #endif // DIGIKAM_XMP_KEYWORDS_H