3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-23 15:45:53 +00:00
2022-03-05 22:41:29 +05:00

69 lines
1.9 KiB
C++

/*
SPDX-FileCopyrightText: 2013 Marco Martin <mart@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "wallpaperpackage.h"
#include <QDebug>
#include <QFileInfo>
#include <klocalizedstring.h>
WallpaperPackage::WallpaperPackage(QObject *parent, const QVariantList &args)
: KPackage::PackageStructure(parent, args)
{
}
void WallpaperPackage::initPackage(KPackage::Package *package)
{
package->addDirectoryDefinition("images", QStringLiteral("images/"), i18n("Images"));
QStringList mimetypes;
mimetypes << QStringLiteral("image/svg") << QStringLiteral("image/png") << QStringLiteral("image/jpeg") << QStringLiteral("image/jpg");
package->setMimeTypes("images", mimetypes);
package->setRequired("images", true);
package->addFileDefinition("screenshot", QStringLiteral("screenshot.png"), i18n("Screenshot"));
package->setAllowExternalPaths(true);
}
void WallpaperPackage::pathChanged(KPackage::Package *package)
{
static bool guard = false;
if (guard) {
return;
}
guard = true;
QString ppath = package->path();
if (ppath.endsWith('/')) {
ppath.chop(1);
if (!QFile::exists(ppath)) {
ppath = package->path();
}
}
QFileInfo info(ppath);
const bool isFullPackage = info.isDir();
package->removeDefinition("preferred");
package->setRequired("images", isFullPackage);
if (isFullPackage) {
package->setContentsPrefixPaths(QStringList() << QStringLiteral("contents/"));
} else {
package->addFileDefinition("screenshot", info.fileName(), i18n("Preview"));
package->addFileDefinition("preferred", info.fileName(), QString());
package->setContentsPrefixPaths(QStringList());
package->setPath(info.path());
}
guard = false;
}
K_PLUGIN_CLASS_WITH_JSON(WallpaperPackage, "plasma-packagestructure-wallpaperimages.json")
#include "wallpaperpackage.moc"