File indexing completed on 2024-04-28 03:54:45

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 2003 Dominik Seichter <domseichter@web.de>
0004     SPDX-FileCopyrightText: 2010 Troy Unrau <troy@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef KIMG_RAS_P_H
0010 #define KIMG_RAS_P_H
0011 
0012 #include <QImageIOPlugin>
0013 
0014 class RASHandler : public QImageIOHandler
0015 {
0016 public:
0017     RASHandler();
0018 
0019     bool canRead() const override;
0020     bool read(QImage *image) override;
0021 
0022     bool supportsOption(QImageIOHandler::ImageOption option) const override;
0023     QVariant option(QImageIOHandler::ImageOption option) const override;
0024 
0025     static bool canRead(QIODevice *device);
0026 };
0027 
0028 class RASPlugin : public QImageIOPlugin
0029 {
0030     Q_OBJECT
0031     Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "ras.json")
0032 
0033 public:
0034     Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
0035     QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
0036 };
0037 
0038 #endif // KIMG_RAS_P_H