mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-06-03 17:08:08 -04:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
/*
|
|
xcf.cpp: A Qt 5 plug-in for reading GIMP XCF image files
|
|
SPDX-FileCopyrightText: 2001 lignum Computing Inc. <allen@lignumcomputing.com>
|
|
SPDX-FileCopyrightText: 2004 Melchior FRANZ <mfranz@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef KIMG_XCF_P_H
|
|
#define KIMG_XCF_P_H
|
|
|
|
#include <QImageIOPlugin>
|
|
|
|
class XCFHandler : public QImageIOHandler
|
|
{
|
|
public:
|
|
XCFHandler();
|
|
|
|
bool canRead() const override;
|
|
bool read(QImage *image) override;
|
|
bool write(const QImage &image) override;
|
|
|
|
bool supportsOption(QImageIOHandler::ImageOption option) const override;
|
|
QVariant option(QImageIOHandler::ImageOption option) const override;
|
|
|
|
static bool canRead(QIODevice *device);
|
|
};
|
|
|
|
class XCFPlugin : public QImageIOPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "xcf.json")
|
|
|
|
public:
|
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
|
};
|
|
|
|
#endif // KIMG_XCF_P_H
|