File indexing completed on 2024-12-22 04:15:06

0001 /*
0002  *  SPDX-FileCopyrightText: 2007 Cyrille Berger <cberger@cberger.net>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.1-or-later
0005  */
0006 
0007 #ifndef _METADATAEDITOR_H_
0008 #define _METADATAEDITOR_H_
0009 
0010 #include <QVariant>
0011 
0012 #include <KisActionPlugin.h>
0013 
0014 namespace KisMetaData
0015 {
0016 }
0017 
0018 /**
0019  * Template of view plugin
0020  */
0021 class metadataeditorPlugin : public KisActionPlugin
0022 {
0023     Q_OBJECT
0024 public:
0025     metadataeditorPlugin(QObject *parent, const QVariantList &);
0026     ~metadataeditorPlugin() override;
0027 
0028 private Q_SLOTS:
0029 
0030     void slotEditLayerMetaData();
0031 };
0032 
0033 #endif // metadataeditorPlugin_H