mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2024-11-27 21:24:48 +01:00
38 lines
898 B
C++
38 lines
898 B
C++
#include <QStandardPaths>
|
|
#include "pbfplugin.h"
|
|
#include "pbfhandler.h"
|
|
#include "style.h"
|
|
|
|
|
|
PBFPlugin::PBFPlugin()
|
|
{
|
|
_style = new Style(this);
|
|
|
|
QString style(QStandardPaths::locate(QStandardPaths::AppDataLocation,
|
|
"style/style.json"));
|
|
|
|
if (style.isEmpty() || !_style->load(style)) {
|
|
Q_INIT_RESOURCE(pbfplugin);
|
|
_style->load(":/style/style.json");
|
|
}
|
|
}
|
|
|
|
QImageIOPlugin::Capabilities PBFPlugin::capabilities(QIODevice *device,
|
|
const QByteArray &format) const
|
|
{
|
|
if (device == 0)
|
|
return (format == "mvt") ? Capabilities(CanRead) : Capabilities();
|
|
else
|
|
return (device->isReadable() && PBFHandler::canRead(device))
|
|
? Capabilities(CanRead) : Capabilities();
|
|
}
|
|
|
|
QImageIOHandler *PBFPlugin::create(QIODevice *device,
|
|
const QByteArray &format) const
|
|
{
|
|
QImageIOHandler *handler = new PBFHandler(_style);
|
|
handler->setDevice(device);
|
|
handler->setFormat(format);
|
|
return handler;
|
|
}
|