54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||
|
#include <qimageiohandler.h>
|
||
|
#include <qstringlist.h>
|
||
|
|
||
|
#include "svg_p.h"
|
||
|
|
||
|
#include <qiodevice.h>
|
||
|
#include <qbytearray.h>
|
||
|
#include <qdebug.h>
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
|
||
|
class QSvgPlugin : public QImageIOPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "svg.json")
|
||
|
|
||
|
public:
|
||
|
QStringList keys() const;
|
||
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const;
|
||
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const;
|
||
|
};
|
||
|
|
||
|
QStringList QSvgPlugin::keys() const
|
||
|
{
|
||
|
return QStringList() << QLatin1String("svg") << QLatin1String("svgz");
|
||
|
}
|
||
|
|
||
|
QImageIOPlugin::Capabilities QSvgPlugin::capabilities(QIODevice *device, const QByteArray &format) const
|
||
|
{
|
||
|
if (format == "svg" || format == "svgz")
|
||
|
return Capabilities(CanRead);
|
||
|
if (!format.isEmpty())
|
||
|
return 0;
|
||
|
|
||
|
Capabilities cap;
|
||
|
if (device->isReadable() && QSvgIOHandler::canRead(device))
|
||
|
cap |= CanRead;
|
||
|
return cap;
|
||
|
}
|
||
|
|
||
|
QImageIOHandler *QSvgPlugin::create(QIODevice *device, const QByteArray &format) const
|
||
|
{
|
||
|
QSvgIOHandler *hand = new QSvgIOHandler();
|
||
|
hand->setDevice(device);
|
||
|
hand->setFormat(format);
|
||
|
return hand;
|
||
|
}
|
||
|
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
#include "main.moc"
|