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

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2007-10-24
0007  * Description : XMP workflow status 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_STATUS_H
0016 #define DIGIKAM_XMP_STATUS_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 XMPStatus : public MetadataEditPage
0033 {
0034     Q_OBJECT
0035 
0036 public:
0037 
0038     explicit XMPStatus(QWidget* const parent);
0039     ~XMPStatus() 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:
0049 
0050     class Private;
0051     Private* const d;
0052 };
0053 
0054 } // namespace DigikamGenericMetadataEditPlugin
0055 
0056 #endif // DIGIKAM_XMP_STATUS_H