You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

94 lines
5.3 KiB

/******************************************************************************
* Copyright 2013 Marco Martin <notmart@gmail.com> *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public License *
* along with this library; see the file COPYING.LIB. If not, write to *
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301, USA. *
*******************************************************************************/
#include "shellpackage.h"
#include <KLocalizedString>
#include <KPackage/PackageLoader>
#include <QDebug>
#include <QDir>
#include <QStandardPaths>
#define DEFAULT_SHELL "org.kde.plasma.desktop"
ShellPackage::ShellPackage(QObject *, const QVariantList &)
{
}
void ShellPackage::initPackage(KPackage::Package *package)
{
package->setDefaultPackageRoot(QStringLiteral("plasma/shells/"));
//Directories
package->addDirectoryDefinition("applet", QStringLiteral("applet"), i18n("Applets furniture"));
package->addDirectoryDefinition("configuration", QStringLiteral("configuration"), i18n("Applets furniture"));
package->addDirectoryDefinition("explorer", QStringLiteral("explorer"), i18n("Explorer UI for adding widgets"));
package->addDirectoryDefinition("views", QStringLiteral("views"), i18n("User interface for the views that will show containments"));
package->setMimeTypes("applet", QStringList() << QStringLiteral("text/x-qml"));
package->setMimeTypes("configuration", QStringList() << QStringLiteral("text/x-qml"));
package->setMimeTypes("views", QStringList() << QStringLiteral("text/x-qml"));
//Files
//Default layout
package->addFileDefinition("defaultlayout", QStringLiteral("layout.js"), i18n("Default layout file"));
package->addFileDefinition("defaults", QStringLiteral("defaults"), i18n("Default plugins for containments, containmentActions, etc."));
package->setMimeTypes("defaultlayout", QStringList() << QStringLiteral("application/javascript"));
package->setMimeTypes("defaults", QStringList() << QStringLiteral("text/plain"));
//Applet furniture
package->addFileDefinition("appleterror", QStringLiteral("applet/AppletError.qml"), i18n("Error message shown when an applet fails to load"));
package->addFileDefinition("compactapplet", QStringLiteral("applet/CompactApplet.qml"), i18n("QML component that shows an applet in a popup"));
package->addFileDefinition("defaultcompactrepresentation", QStringLiteral("applet/DefaultCompactRepresentation.qml"), i18n("Compact representation of an applet when collapsed in a popup, for instance as an icon. Applets can override this component."));
//Configuration
package->addFileDefinition("appletconfigurationui", QStringLiteral("configuration/AppletConfiguration.qml"), i18n("QML component for the configuration dialog for applets"));
package->addFileDefinition("containmentconfigurationui", QStringLiteral("configuration/ContainmentConfiguration.qml"), i18n("QML component for the configuration dialog for containments"));
package->addFileDefinition("panelconfigurationui", QStringLiteral("configuration/PanelConfiguration.qml"), i18n("Panel configuration UI"));
package->addFileDefinition("appletalternativesui", QStringLiteral("explorer/AppletAlternatives.qml"), i18n("QML component for choosing an alternate applet"));
//Widget explorer
package->addFileDefinition("widgetexplorer", QStringLiteral("explorer/WidgetExplorer.qml"), i18n("Widgets explorer UI"));
package->addFileDefinition("interactiveconsole", QStringLiteral("InteractiveConsole.qml"),
i18n("A UI for writing, loading and running desktop scripts in the current live session"));
}
void ShellPackage::pathChanged(KPackage::Package *package)
{
if (!package->metadata().isValid()) {
return;
}
const QString pluginName = package->metadata().pluginId();
if (!pluginName.isEmpty() && pluginName != DEFAULT_SHELL) {
KPackage::Package pkg = KPackage::PackageLoader::self()->loadPackage(QStringLiteral("Plasma/Shell"), DEFAULT_SHELL);
package->setFallbackPackage(pkg);
} else if (package->fallbackPackage().isValid() && pluginName == DEFAULT_SHELL) {
package->setFallbackPackage(KPackage::Package());
}
}
K_EXPORT_KPACKAGE_PACKAGE_WITH_JSON(ShellPackage, "plasma-packagestructure-plasma-shell.json")
#include "shellpackage.moc"