1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/*
SPDX-FileCopyrightText: 2014 Bhushan Shah <bhush94@gmail.com>
SPDX-FileCopyrightText: 2014 Marco Martin <notmart@gmail.com>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "plasmawindowedcorona.h"
#include "plasmawindowedview.h"
#include <QAction>
#include <QCommandLineParser>
#include <QDebug>
#include <KActionCollection>
#include <KLocalizedString>
#include <KPackage/Package>
#include <KPackage/PackageLoader>
#include <Plasma/PluginLoader>
PlasmaWindowedCorona::PlasmaWindowedCorona(const QString &shell, QObject *parent)
: Plasma::Corona(parent)
{
KPackage::Package package = KPackage::PackageLoader::self()->loadPackage(QStringLiteral("Plasma/Shell"));
package.setPath(shell);
setKPackage(package);
// QMetaObject::invokeMethod(this, "load", Qt::QueuedConnection);
load();
}
void PlasmaWindowedCorona::loadApplet(const QString &applet, const QVariantList &arguments)
{
if (containments().isEmpty()) {
return;
}
Plasma::Containment *cont = containments().first();
// forbid more instances per applet (todo: activate the corresponding already loaded applet)
for (Plasma::Applet *a : cont->applets()) {
if (a->pluginMetaData().pluginId() == applet) {
return;
}
}
PlasmaWindowedView *v = new PlasmaWindowedView();
v->setHasStatusNotifier(m_hasStatusNotifier);
v->show();
KConfigGroup appletsGroup(KSharedConfig::openConfig(), "Applets");
QString plugin;
for (const QString &group : appletsGroup.groupList()) {
KConfigGroup cg(&appletsGroup, group);
plugin = cg.readEntry("plugin", QString());
if (plugin == applet) {
Plasma::Applet *a = Plasma::PluginLoader::self()->loadApplet(applet, group.toInt(), arguments);
if (!a) {
qWarning() << "Unable to load applet" << applet << "with arguments" << arguments;
v->deleteLater();
return;
}
a->restore(cg);
// Access a->config() before adding to containment
// will cause applets to be saved in palsmawindowedrc
// so applets will only be created on demand
KConfigGroup cg2 = a->config();
cont->addApplet(a);
v->setApplet(a);
return;
}
}
Plasma::Applet *a = Plasma::PluginLoader::self()->loadApplet(applet, 0, arguments);
if (!a) {
qWarning() << "Unable to load applet" << applet << "with arguments" << arguments;
v->deleteLater();
return;
}
// Access a->config() before adding to containment
// will cause applets to be saved in palsmawindowedrc
// so applets will only be created on demand
KConfigGroup cg2 = a->config();
cont->addApplet(a);
v->setApplet(a);
}
void PlasmaWindowedCorona::activateRequested(const QStringList &arguments, const QString &workingDirectory)
{
Q_UNUSED(workingDirectory)
if (arguments.count() <= 1) {
return;
}
QCommandLineParser parser;
parser.setApplicationDescription(i18n("Plasma Windowed"));
parser.addOption(
QCommandLineOption(QStringLiteral("statusnotifier"), i18n("Makes the plasmoid stay alive in the Notification Area, even when the window is closed.")));
parser.addPositionalArgument(QStringLiteral("applet"), i18n("The applet to open."));
parser.addPositionalArgument(QStringLiteral("args"), i18n("Arguments to pass to the plasmoid."), QStringLiteral("[args...]"));
parser.addVersionOption();
parser.addHelpOption();
parser.process(arguments);
if (parser.positionalArguments().isEmpty()) {
parser.showHelp(1);
}
const QStringList positionalArguments = parser.positionalArguments();
QVariantList args;
QStringList::const_iterator constIterator = positionalArguments.constBegin() + 1;
for (; constIterator != positionalArguments.constEnd(); ++constIterator) {
args << (*constIterator);
}
loadApplet(positionalArguments.first(), args);
}
QRect PlasmaWindowedCorona::screenGeometry(int id) const
{
Q_UNUSED(id);
// TODO?
return QRect();
}
void PlasmaWindowedCorona::load()
{
/*this won't load applets, since applets are in plasmawindowedrc*/
loadLayout(QStringLiteral("plasmawindowed-appletsrc"));
bool found = false;
for (auto c : containments()) {
if (c->containmentType() == Plasma::Types::DesktopContainment) {
found = true;
break;
}
}
if (!found) {
qDebug() << "Loading default layout";
createContainment(QStringLiteral("empty"));
saveLayout(QStringLiteral("plasmawindowed-appletsrc"));
}
for (auto c : containments()) {
if (c->containmentType() == Plasma::Types::DesktopContainment) {
m_containment = c;
m_containment->setFormFactor(Plasma::Types::Application);
QAction *removeAction = c->actions()->action(QStringLiteral("remove"));
if (removeAction) {
removeAction->deleteLater();
}
break;
}
}
}
void PlasmaWindowedCorona::setHasStatusNotifier(bool stay)
{
m_hasStatusNotifier = stay;
}
|