/* SPDX-FileCopyrightText: 2009 Aaron Seigo SPDX-License-Identifier: LGPL-2.0-or-later */ #include "containment.h" #include #include #include #include #include #include #include #include "scriptengine.h" #include "shellcorona.h" #include "widget.h" namespace WorkspaceScripting { class Containment::Private { public: QPointer containment; ShellCorona *corona; QString oldWallpaperPlugin; QString wallpaperPlugin; QString oldWallpaperMode; QString wallpaperMode; QString type; QString plugin; }; Containment::Containment(Plasma::Containment *containment, ScriptEngine *engine) : Applet(engine) , d(new Containment::Private) { d->containment = containment; d->corona = qobject_cast(containment->corona()); setCurrentConfigGroup(QStringList()); setCurrentGlobalConfigGroup(QStringList()); if (containment) { d->oldWallpaperPlugin = d->wallpaperPlugin = containment->wallpaperPlugin(); } } Containment::~Containment() { if (d->containment) { if (d->oldWallpaperPlugin != d->wallpaperPlugin || d->oldWallpaperMode != d->wallpaperMode) { d->containment->setWallpaperPlugin(d->wallpaperPlugin); } } reloadConfigIfNeeded(); delete d; } ShellCorona *Containment::corona() const { return d->corona; } int Containment::screen() const { if (!d->containment) { return -1; } return d->containment->screen(); } void Containment::setScreen(int screen) { if (!d->containment || !d->corona) { return; } d->corona->setScreenForContainment(d->containment, screen); } QString Containment::wallpaperPlugin() const { return d->wallpaperPlugin; } void Containment::setWallpaperPlugin(const QString &wallpaperPlugin) { d->wallpaperPlugin = wallpaperPlugin; } QString Containment::wallpaperMode() const { return d->wallpaperMode; } void Containment::setWallpaperMode(const QString &wallpaperMode) { d->wallpaperMode = wallpaperMode; } QString Containment::formFactor() const { if (!d->containment) { return QStringLiteral("Planar"); } switch (d->containment->formFactor()) { case Plasma::Types::Planar: return QStringLiteral("planar"); case Plasma::Types::MediaCenter: return QStringLiteral("mediacenter"); case Plasma::Types::Horizontal: return QStringLiteral("horizontal"); case Plasma::Types::Vertical: return QStringLiteral("vertical"); case Plasma::Types::Application: return QStringLiteral("application"); } return QStringLiteral("Planar"); } QList Containment::widgetIds() const { // FIXME: the ints could overflow since Applet::id() returns a uint, // however QScript deals with QList very, very poory QList w; if (d->containment) { for (const auto applets = d->containment->applets(); const Plasma::Applet *applet : applets) { w.append(applet->id()); } } return w; } QJSValue Containment::widgetById(const QJSValue ¶mId) const { if (!paramId.isNumber()) { return engine()->newError(i18n("widgetById requires an id")); } const uint id = paramId.toInt(); if (d->containment) { for (const auto applets = d->containment->applets(); Plasma::Applet * w : applets) { if (w->id() == id) { return engine()->wrap(w); } } } return QJSValue(); } QJSValue Containment::addWidget(const QJSValue &v, qreal x, qreal y, qreal w, qreal h, const QVariantList &args) { if (!v.isString() && !v.isQObject()) { return engine()->newError(i18n("addWidget requires a name of a widget or a widget object")); } if (!d->containment) { return QJSValue(); } QRectF geometry(x, y, w, h); Plasma::Applet *applet = nullptr; if (v.isString()) { // A position has been supplied: search for the containment's graphics object QQuickItem *containmentItem = nullptr; if (geometry.x() >= 0 && geometry.y() >= 0) { containmentItem = PlasmaQuick::AppletQuickItem::itemForApplet(d->containment); if (containmentItem) { QMetaObject::invokeMethod(containmentItem, "createApplet", Qt::DirectConnection, Q_RETURN_ARG(Plasma::Applet *, applet), Q_ARG(QString, v.toString()), Q_ARG(QVariantList, args), Q_ARG(QRectF, geometry)); } if (applet) { return engine()->wrap(applet); } return engine()->newError(i18n("Could not create the %1 widget!", v.toString())); } // Case in which either: // * a geometry wasn't provided // * containmentItem wasn't found applet = d->containment->createApplet(v.toString(), args); if (applet) { return engine()->wrap(applet); } return engine()->newError(i18n("Could not create the %1 widget!", v.toString())); } else if (Widget *widget = qobject_cast(v.toQObject())) { applet = widget->applet(); d->containment->addApplet(applet); return v; } return QJSValue(); } QJSValue Containment::widgets(const QString &widgetType) const { if (!d->containment) { return QJSValue(); } QJSValue widgets = engine()->newArray(); int count = 0; for (const auto applets = d->containment->applets(); Plasma::Applet * widget : applets) { if (widgetType.isEmpty() || widget->pluginMetaData().pluginId() == widgetType) { widgets.setProperty(count, engine()->wrap(widget)); ++count; } } widgets.setProperty(QStringLiteral("length"), count); return widgets; } uint Containment::id() const { if (!d->containment) { return 0; } return d->containment->id(); } QString Containment::type() const { if (!d->containment) { return QString(); } return d->containment->pluginMetaData().pluginId(); } void Containment::remove() { if (d->containment) { d->containment->destroy(); } } void Containment::showConfigurationInterface() { if (d->containment) { QAction *configAction = d->containment->internalAction(QStringLiteral("configure")); if (configAction && configAction->isEnabled()) { configAction->trigger(); } } } Plasma::Applet *Containment::applet() const { return d->containment; } Plasma::Containment *Containment::containment() const { return d->containment; } }