Libplasma

containment.cpp
1/*
2 SPDX-FileCopyrightText: 2007 Aaron Seigo <aseigo@kde.org>
3 SPDX-FileCopyrightText: 2008 Ménard Alexis <darktears31@gmail.com>
4 SPDX-FileCopyrightText: 2009 Chani Armitage <chani@kde.org>
5 SPDX-FileCopyrightText: 2012 Marco Martin <notmart@kde.org>
6
7 SPDX-License-Identifier: LGPL-2.0-or-later
8*/
9
10#include "containment.h"
11#include "private/containment_p.h"
12
13#include "config-plasma.h"
14
15#include <QClipboard>
16#include <QContextMenuEvent>
17#include <QDebug>
18#include <QFile>
19#include <QMimeData>
20#include <QMimeDatabase>
21#include <QPainter>
22#include <QQuickItem>
23#include <QTemporaryFile>
24
25#include <KAuthorized>
26#include <KConfigLoader>
27#include <KConfigSkeleton>
28#include <KLocalizedString>
29
30#include <plasmaactivities/info.h>
31
32#include "containmentactions.h"
33#include "corona.h"
34#include "debug_p.h"
35#include "pluginloader.h"
36
37#include "private/applet_p.h"
38
39#include "plasma/plasma.h"
40
41namespace Plasma
42{
43Containment::Containment(QObject *parentObject, const KPluginMetaData &data, const QVariantList &args)
44 : Applet(parentObject, data, args)
45 , d(new ContainmentPrivate(this))
46{
47 // WARNING: do not access config() OR globalConfig() in this method!
48 // that requires a scene, which is not available at this point
50
51 // Try to determine the containment type. It must be done as soon as possible
52 const QString type = pluginMetaData().value(u"X-Plasma-ContainmentType");
54 d->type = (Plasma::Containment::Type)metaEnum.keyToValue(type.toLocal8Bit().constData());
56 qCWarning(LOG_PLASMA) << "Unknown containment type requested:" << type << pluginMetaData().fileName()
57 << "check Plasma::Containment::Type for supported values";
58 }
59}
60
61Containment::~Containment()
62{
63 disconnect(corona(), nullptr, this, nullptr);
64 qDeleteAll(d->localActionPlugins);
65 delete d;
66}
67
69{
71
72 connect(corona(), &Plasma::Corona::availableScreenRectChanged, this, [this](int screenId) {
73 if (screenId == screen()) {
75 }
76 });
77 connect(corona(), &Plasma::Corona::availableScreenRegionChanged, this, [this](int screenId) {
78 if (screenId == screen()) {
80 }
81 });
82 connect(corona(), &Plasma::Corona::screenGeometryChanged, this, [this](int screenId) {
83 if (screenId == screen()) {
85 }
86 });
87
88 QMap<QString, QAction *> actions = static_cast<Applet *>(this)->d->actions;
89 // connect actions
90 ContainmentPrivate::addDefaultActions(actions, this);
91 bool unlocked = immutability() == Types::Mutable;
92
93 // fix the text of the actions that need title()
94 // btw, do we really want to use title() when it's a desktopcontainment?
95 QAction *closeApplet = internalAction(QStringLiteral("remove"));
96 if (closeApplet) {
97 closeApplet->setText(i18nc("%1 is the name of the applet", "Remove %1", title()));
98 }
99
100 QAction *configAction = internalAction(QStringLiteral("configure"));
101 if (configAction) {
102 if (d->type == Containment::Type::Panel || d->type == Containment::Type::CustomPanel) {
103 configAction->setText(i18n("Enter Edit Mode"));
104 configAction->setIcon(QIcon::fromTheme(QStringLiteral("document-edit")));
105 } else {
106 configAction->setText(i18nc("%1 is the name of the applet", "Configure %1...", title()));
107 }
108 }
109
110 QAction *appletBrowserAction = internalAction(QStringLiteral("add widgets"));
111 if (appletBrowserAction) {
112 appletBrowserAction->setVisible(unlocked);
113 appletBrowserAction->setEnabled(unlocked);
114 connect(appletBrowserAction, SIGNAL(triggered()), this, SLOT(triggerShowAddWidgets()));
115 }
116
118 QAction *lockDesktopAction = corona()->action(QStringLiteral("lock widgets"));
119 // keep a pointer so nobody notices it moved to corona
120 if (lockDesktopAction) {
121 setInternalAction(QStringLiteral("lock widgets"), lockDesktopAction);
122 }
123 }
124}
125
126// helper function for sorting the list of applets
127bool appletConfigLessThan(const KConfigGroup &c1, const KConfigGroup &c2)
128{
129 int i1 = c1.readEntry("id", 0);
130 int i2 = c2.readEntry("id", 0);
131
132 return (i1 < i2);
133}
134
136{
137 /*
138 #ifndef NDEBUG
139 // qCDebug(LOG_PLASMA) << "!!!!!!!!!!!!initConstraints" << group.name() << d->type;
140 // qCDebug(LOG_PLASMA) << " location:" << group.readEntry("location", (int)d->location);
141 // qCDebug(LOG_PLASMA) << " geom:" << group.readEntry("geometry", geometry());
142 // qCDebug(LOG_PLASMA) << " formfactor:" << group.readEntry("formfactor", (int)d->formFactor);
143 // qCDebug(LOG_PLASMA) << " screen:" << group.readEntry("screen", d->screen);
144 #endif
145 */
146 setLocation((Plasma::Types::Location)group.readEntry("location", (int)d->location));
147 setFormFactor((Plasma::Types::FormFactor)group.readEntry("formfactor", (int)d->formFactor));
148 d->lastScreen = group.readEntry("lastScreen", d->lastScreen);
149
150 setWallpaperPlugin(group.readEntry("wallpaperplugin", ContainmentPrivate::defaultWallpaperPlugin));
151
152 d->activityId = group.readEntry("activityId", QString());
153
155 restoreContents(group);
157
158 if (isContainment() && KAuthorized::authorize(QStringLiteral("plasma/containment_actions"))) {
159 KConfigGroup cfg = KConfigGroup(corona()->config(), QStringLiteral("ActionPlugins"));
160 cfg = KConfigGroup(&cfg, QString::number((int)containmentType()));
161
162 // qCDebug(LOG_PLASMA) << cfg.keyList();
163 if (cfg.exists()) {
164 const auto keyList = cfg.keyList();
165 for (const QString &key : keyList) {
166 // qCDebug(LOG_PLASMA) << "loading" << key;
167 setContainmentActions(key, cfg.readEntry(key, QString()));
168 }
169 } else { // shell defaults
170 KConfigGroup defaultActionsCfg;
171
172 switch (d->type) {
174 /* fall through*/
176 defaultActionsCfg = KConfigGroup(KSharedConfig::openConfig(corona()->kPackage().filePath("defaults")), QStringLiteral("Panel"));
177 break;
179 defaultActionsCfg = KConfigGroup(KSharedConfig::openConfig(corona()->kPackage().filePath("defaults")), QStringLiteral("Desktop"));
180 break;
181 default:
182 // for any other type of containment, there are no defaults
183 break;
184 }
185 if (defaultActionsCfg.isValid()) {
186 defaultActionsCfg = KConfigGroup(&defaultActionsCfg, QStringLiteral("ContainmentActions"));
187 const auto keyList = defaultActionsCfg.keyList();
188 for (const QString &key : keyList) {
189 setContainmentActions(key, defaultActionsCfg.readEntry(key, QString()));
190 }
191 }
192 }
193 }
194 Applet::restore(group);
195}
197void Containment::save(KConfigGroup &g) const
198{
199 if (Applet::d->transient) {
200 return;
201 }
202
203 KConfigGroup group = g;
204 if (!group.isValid()) {
205 group = config();
206 }
207
208 // locking is saved in Applet::save
209 Applet::save(group);
210
211 // group.writeEntry("screen", d->screen);
212 group.writeEntry("lastScreen", d->lastScreen);
213 group.writeEntry("formfactor", (int)d->formFactor);
214 group.writeEntry("location", (int)d->location);
215 group.writeEntry("activityId", d->activityId);
216
217 group.writeEntry("wallpaperplugin", d->wallpaperPlugin);
218
219 saveContents(group);
220}
223{
224 KConfigGroup applets(&group, QStringLiteral("Applets"));
225 for (const Applet *applet : std::as_const(d->applets)) {
226 KConfigGroup appletConfig(&applets, QString::number(applet->id()));
227 applet->save(appletConfig);
228 }
229}
232{
233 KConfigGroup applets(&group, QStringLiteral("Applets"));
234
235 // restore the applets ordered by id
236 QStringList groups = applets.groupList();
237 std::sort(groups.begin(), groups.end());
238
239 // Sort the applet configs in order of geometry to ensure that applets
240 // are added from left to right or top to bottom for a panel containment
241 QList<KConfigGroup> appletConfigs;
242 for (const QString &appletGroup : std::as_const(groups)) {
243 // qCDebug(LOG_PLASMA) << "reading from applet group" << appletGroup;
244 KConfigGroup appletConfig(&applets, appletGroup);
245 appletConfigs.append(appletConfig);
246 }
247 std::stable_sort(appletConfigs.begin(), appletConfigs.end(), appletConfigLessThan);
248
249 QMutableListIterator<KConfigGroup> it(appletConfigs);
250 while (it.hasNext()) {
251 KConfigGroup &appletConfig = it.next();
252 if (appletConfig.readEntry(QStringLiteral("transient"), false)) {
253 appletConfig.deleteGroup();
254 continue;
255 }
256 int appId = appletConfig.name().toUInt();
257 QString plugin = appletConfig.readEntry("plugin", QString());
258
259 if (plugin.isEmpty()) {
260 continue;
261 }
262
263 d->createApplet(plugin, QVariantList(), appId);
264 }
265
266 // if there are no applets, none of them is "loading"
267 if (Containment::applets().isEmpty()) {
268 d->appletsUiReady = true;
269 }
270 const auto lstApplets = Containment::applets();
271 for (Applet *applet : lstApplets) {
272 if (!applet->pluginMetaData().isValid()) {
273 applet->updateConstraints(UiReadyConstraint);
274 }
275 }
276}
279{
280 return d->type;
281}
283Corona *Containment::corona() const
284{
285 // We are not sure where the corona parent is in the hierarchy,
286 // because of nested containment, those of type CustomEmbedded
287 // will have containment->containment->corona
288 for (auto candidate = parent(); candidate; candidate = candidate->parent()) {
289 if (auto c = qobject_cast<Corona *>(candidate)) {
290 return c;
291 }
292 }
293
294 return nullptr;
295}
298{
299 if (d->formFactor == formFactor) {
300 return;
301 }
302
303 // qCDebug(LOG_PLASMA) << "switching FF to " << formFactor;
304 d->formFactor = formFactor;
305
307
308 KConfigGroup c = config();
309 c.writeEntry("formfactor", (int)formFactor);
312}
314void Containment::setContainmentDisplayHints(Types::ContainmentDisplayHints hints)
315{
316 if (d->containmentDisplayHints == hints) {
317 return;
318 }
319
320 d->containmentDisplayHints = hints;
322}
325{
326 if (d->location == location) {
327 return;
328 }
329
330 d->location = location;
331
332 for (Applet *applet : std::as_const(d->applets)) {
333 applet->updateConstraints(LocationConstraint);
334 }
335
337
338 KConfigGroup c = config();
339 c.writeEntry("location", (int)location);
342}
344Applet *Containment::createApplet(const QString &name, const QVariantList &args, const QRectF &geometryHint)
345{
346 Plasma::Applet *applet = d->createApplet(name, args, 0, geometryHint);
347 if (applet) {
348 Q_EMIT appletCreated(applet, geometryHint);
349 }
350 return applet;
351}
353void Containment::addApplet(Applet *applet, const QRectF &geometryHint)
354{
355 if (!applet) {
356#ifndef NDEBUG
357 // qCDebug(LOG_PLASMA) << "adding null applet!?!";
358#endif
359 return;
360 }
361
362 if (immutability() != Types::Mutable && !applet->property("org.kde.plasma:force-create").toBool()) {
363 return;
364 }
365
366#ifndef NDEBUG
367 if (d->applets.contains(applet)) {
368 // qCDebug(LOG_PLASMA) << "already have this applet!";
369 }
370#endif
371 Containment *currentContainment = applet->containment();
372
373 if (currentContainment && currentContainment != this) {
374 Q_EMIT currentContainment->appletAboutToBeRemoved(applet);
375 Q_EMIT currentContainment->appletRemoved(applet);
377
378 disconnect(applet, nullptr, currentContainment, nullptr);
379 connect(currentContainment, nullptr, applet, nullptr);
380 KConfigGroup oldConfig = applet->config();
381 currentContainment->d->applets.removeAll(applet);
382 applet->setParent(this);
383
384 // now move the old config to the new location
385 // FIXME: this doesn't seem to get the actual main config group containing plugin=, etc
386 KConfigGroup c = config().group(QStringLiteral("Applets")).group(QString::number(applet->id()));
387 oldConfig.reparent(&c);
388 applet->d->resetConfigurationObject();
389
390 disconnect(applet, &Applet::activated, currentContainment, &Applet::activated);
391 // change the group to its configloader, if any
392 // FIXME: this is very, very brutal
393 if (applet->configScheme()) {
394 const QString oldGroupPrefix = QStringLiteral("Containments") + QString::number(currentContainment->id()) + QStringLiteral("Applets");
395 const QString newGroupPrefix = QStringLiteral("Containments") + QString::number(id()) + QStringLiteral("Applets");
396
397 applet->configScheme()->setCurrentGroup(applet->configScheme()->currentGroup().replace(0, oldGroupPrefix.length(), newGroupPrefix));
398
399 const auto items = applet->configScheme()->items();
400 for (KConfigSkeletonItem *item : items) {
401 item->setGroup(item->group().replace(0, oldGroupPrefix.length(), newGroupPrefix));
402 }
403 }
404 } else {
405 applet->setParent(this);
406 }
407
409 if (asCont && asCont->containmentType() == Containment::CustomEmbedded) {
410 asCont->init();
411 }
412 // make sure the applets are sorted by id
413 const auto position = std::lower_bound(d->applets.begin(), d->applets.end(), applet, [](Plasma::Applet *a1, Plasma::Applet *a2) {
414 return a1->id() < a2->id();
415 });
416 Q_EMIT appletAboutToBeAdded(applet, geometryHint);
417 d->applets.insert(position, applet);
418
419 if (!d->uiReady) {
420 d->loadingApplets << applet;
421 }
422
424 connect(applet, SIGNAL(appletDeleted(Plasma::Applet *)), this, SLOT(appletDeleted(Plasma::Applet *)));
425 connect(applet, SIGNAL(statusChanged(Plasma::Types::ItemStatus)), this, SLOT(checkStatus(Plasma::Types::ItemStatus)));
427
428 if (!currentContainment) {
429 const bool isNew = applet->d->mainConfigGroup()->entryMap().isEmpty();
430
431 // If the applet is a nested containment restore even if new, to
432 // have the same behavior of Corona::addContainment
433 if (!isNew || applet->isContainment()) {
434 applet->restore(*applet->d->mainConfigGroup());
435 }
436
437 if (!asCont || asCont->containmentType() != Containment::CustomEmbedded) {
438 applet->init();
439 }
440
441 if (isNew) {
442 applet->save(*applet->d->mainConfigGroup());
444 }
445 // FIXME: an on-appear animation would be nice to have again
446 }
447
448 applet->updateConstraints(AllConstraints);
450
451 Q_EMIT appletAdded(applet, geometryHint);
453 Q_EMIT applet->containmentChanged(this);
454
455 if (!currentContainment) {
458 }
459
460 applet->d->scheduleModificationNotification();
461}
464{
465 return d->applets;
466}
468int Containment::screen() const
469{
470 Q_ASSERT(corona());
472 return pc->screen();
473 } else if (Corona *c = corona()) {
474 return c->screenForContainment(this);
475 } else {
476 return -1;
477 }
478}
480int Containment::lastScreen() const
481{
483 return pc->lastScreen();
484 }
485 return d->lastScreen;
486}
489{
490 if (!corona()) {
491 return {};
492 }
493
494 int screenId = screen();
495
496 // If corona returned an invalid screenId, try to use lastScreen value if it is valid
497 if (screenId == -1 && lastScreen() > -1) {
498 screenId = lastScreen();
499 // Is this a screen not actually valid?
500 if (screenId >= corona()->numScreens()) {
501 screenId = -1;
502 }
503 }
504
505 if (screenId > -1) {
506 QRectF rect = corona()->availableScreenRect(screenId);
507 // make it relative
508 QRectF geometry = corona()->screenGeometry(screenId);
509 rect.moveTo(rect.topLeft() - geometry.topLeft());
510 return rect;
511 }
512
513 return {};
514}
517{
518 QList<QRectF> regVal;
519
520 if (!containment() || !containment()->corona()) {
521 return regVal;
522 }
523
524 int screenId = screen();
525 if (screenId < 0) {
526 return {};
527 }
528 QRegion reg = containment()->corona()->availableScreenRegion(screenId);
529
530 auto it = reg.begin();
531 const auto itEnd = reg.end();
532 QRect geometry = containment()->corona()->screenGeometry(screenId);
533 for (; it != itEnd; ++it) {
534 QRect rect = *it;
535 // make it relative
536 rect.moveTo(rect.topLeft() - geometry.topLeft());
537 regVal << QRectF(rect);
538 }
539 return regVal;
540}
543{
544 if (!corona() || screen() < 0) {
545 return {};
546 }
547
548 return corona()->screenGeometry(screen());
549}
552{
553 if (pluginName != d->wallpaperPlugin) {
554 d->wallpaperPlugin = pluginName;
555
556 KConfigGroup cfg = config();
557 cfg.writeEntry("wallpaperplugin", d->wallpaperPlugin);
560 }
561}
563QString Containment::wallpaperPlugin() const
564{
565 return d->wallpaperPlugin;
566}
567
568QObject *Containment::wallpaperGraphicsObject() const
569{
570 return d->wallpaperGraphicsObject;
571}
572
573void Containment::setWallpaperGraphicsObject(QObject *object)
574{
575 if (d->wallpaperGraphicsObject == object) {
576 return;
577 }
578 d->wallpaperGraphicsObject = object;
580}
581
582QUrl Containment::compactApplet() const
583{
584 if (Applet::d->package.isValid()) {
585 return Applet::d->package.fileUrl("compactapplet");
586 }
587 return QUrl();
588}
591{
592 KConfigGroup cfg = d->containmentActionsConfig();
593 ContainmentActions *plugin = nullptr;
594
595 plugin = containmentActions().value(trigger);
596 if (plugin && plugin->id() != pluginName) {
597 containmentActions().remove(trigger);
598 delete plugin;
599 plugin = nullptr;
600 }
601
602 if (pluginName.isEmpty()) {
603 cfg.deleteEntry(trigger);
604 } else if (plugin) {
605 // it already existed, just reload config
606 plugin->setContainment(this); // to be safe
607 // FIXME make a truly unique config group
608 KConfigGroup pluginConfig = KConfigGroup(&cfg, trigger);
609 plugin->restore(pluginConfig);
610
611 } else {
613
614 if (plugin) {
615 cfg.writeEntry(trigger, pluginName);
616 containmentActions().insert(trigger, plugin);
617 plugin->setContainment(this);
618 KConfigGroup pluginConfig = KConfigGroup(&cfg, trigger);
619 plugin->restore(pluginConfig);
620 } else {
621 // bad plugin... gets removed. is this a feature or a bug?
622 cfg.deleteEntry(trigger);
623 }
624 }
625
627}
630{
631 return d->localActionPlugins;
632}
634bool Containment::isUiReady() const
635{
636 return d->uiReady && d->appletsUiReady && Applet::d->started;
637}
639void Containment::setActivity(const QString &activityId)
640{
641 if (activityId.isEmpty() || d->activityId == activityId) {
642 return;
643 }
644
645 d->activityId = activityId;
646 KConfigGroup c = config();
647 c.writeEntry("activityId", activityId);
648
650 Q_EMIT activityChanged(activityId);
651}
654{
655 return d->activityId;
656}
659{
660 if (!d->activityInfo) {
661 return QString();
662 }
663 return d->activityInfo->name();
664}
665
666void Containment::reactToScreenChange()
667{
668 int newScreen = screen();
669
670 Q_EMIT screenChanged(newScreen);
671
672 if (newScreen >= 0) {
673 d->lastScreen = newScreen;
674 KConfigGroup c = config();
675 c.writeEntry("lastScreen", d->lastScreen);
677
681 }
682}
683
684} // Plasma namespace
685
686#include "moc_containment.cpp"
static Q_INVOKABLE bool authorize(const QString &action)
KConfigGroup group(const QString &group)
void reparent(KConfigBase *parent, WriteConfigFlags pFlags=Normal)
QString name() const
void deleteEntry(const char *key, WriteConfigFlags pFlags=Normal)
void writeEntry(const char *key, const char *value, WriteConfigFlags pFlags=Normal)
void deleteGroup(const QString &group, WriteConfigFlags flags=Normal)
bool isValid() const
QString readEntry(const char *key, const char *aDefault=nullptr) const
bool exists() const
QStringList keyList() const
QString currentGroup() const
KConfigSkeletonItem::List items() const
void setCurrentGroup(const QString &group)
bool value(QStringView key, bool defaultValue) const
QString fileName() const
static KSharedConfig::Ptr openConfig(const QString &fileName=QString(), OpenFlags mode=FullConfig, QStandardPaths::StandardLocation type=QStandardPaths::GenericConfigLocation)
The base Applet class.
Definition applet.h:64
uint id
Applet id: is unique in the whole Plasma session and will never change across restarts.
Definition applet.h:69
void updateConstraints(Constraints constraints=AllConstraints)
Called when any of the geometry constraints have been updated.
Definition applet.cpp:276
virtual void save(KConfigGroup &group) const
Saves state information about this applet that will be accessed when next instantiated in the restore...
Definition applet.cpp:102
void setHasConfigurationInterface(bool hasInterface)
Sets whether or not this applet provides a user interface for configuring the applet.
Definition applet.cpp:793
Plasma::Types::Location location
The location of the scene which is displaying applet.
Definition applet.h:95
Q_INVOKABLE QAction * internalAction(const QString &name) const
Definition applet.cpp:672
KConfigGroup config() const
Returns the KConfigGroup to access the applets configuration.
Definition applet.cpp:189
@ StartupCompletedConstraint
application startup has completed
Definition applet.h:219
@ UiReadyConstraint
The ui has been completely loaded.
Definition applet.h:220
@ FormFactorConstraint
The FormFactor for an object.
Definition applet.h:215
@ LocationConstraint
The Location of an object.
Definition applet.h:216
bool isContainment
True if this applet is a Containment and is acting as one, such as a desktop or a panel.
Definition applet.h:200
Plasma::Types::ImmutabilityType immutability
The immutability of the Corona.
Definition applet.h:106
void containmentChanged(Plasma::Containment *containment)
Emitted when the containment changes.
void configNeedsSaving()
Emitted when an applet has changed values in its configuration and wishes for them to be saved at the...
void activated()
Emitted when activation is requested due to, for example, a global keyboard shortcut.
void appletDeleted(Plasma::Applet *applet)
Emitted when the applet is deleted.
virtual void init()
This method is called once the applet is loaded and added to a Corona.
Definition applet.cpp:87
void statusChanged(Plasma::Types::ItemStatus status)
Emitted when the applet status changes.
void containmentDisplayHintsChanged(Plasma::Types::ContainmentDisplayHints hints)
Emitted when the containment display hints change.
Plasma::Types::FormFactor formFactor
The current form factor the applet is being displayed in.
Definition applet.h:88
Q_INVOKABLE void setInternalAction(const QString &name, QAction *action)
Add a new internal action.
Definition applet.cpp:650
QString pluginName
Plugin name for the applet.
Definition applet.h:205
QString title
User friendly title for the plasmoid: it's the localized applet name by default.
Definition applet.h:74
void setImmutability(const Types::ImmutabilityType immutable)
Sets the immutability type for this applet (not immutable, user immutable or system immutable)
Definition applet.cpp:448
Plasma::Containment * containment
The Containment managing this applet.
Definition applet.h:189
void flushPendingConstraintsEvents()
Sends all pending constraints updates to the applet.
Definition applet.cpp:543
KPluginMetaData pluginMetaData() const
Definition applet.cpp:401
KConfigLoader * configScheme() const
Returns the config skeleton object from this applet's package, if any.
Definition applet.cpp:248
virtual void restore(KConfigGroup &group)
Restores state information about this applet saved previously in save(KConfigGroup&).
Definition applet.cpp:135
virtual void restore(const KConfigGroup &config)
This method should be called once the plugin is loaded or settings are changed.
QString id() const
Returns the ID of this plugin.
void setContainment(Containment *newContainment)
newContainment the containment the plugin should be associated with.
Q_INVOKABLE void addApplet(Applet *applet, const QRectF &geometryHint=QRectF())
Add an existing applet to this Containment.
void save(KConfigGroup &group) const override
void setActivity(const QString &activityId)
Sets the current activity by id.
Plasma::Corona * corona
The corona for this contaiment.
Definition containment.h:59
void containmentDisplayHintsChanged(Plasma::Types::ContainmentDisplayHints hints)
Emitted when the containment disaplay hints change.
void formFactorChanged(Plasma::Types::FormFactor formFactor)
Emitted when the formFactor has changed.
void setContainmentDisplayHints(Plasma::Types::ContainmentDisplayHints hints)
Set Display hints that come from the containment that suggest the applet how to look and behave.
Type
This enumeration describes the type of the Containment.
@ Panel
A desktop panel.
@ CustomPanel
A customized desktop panel.
@ CustomEmbedded
A customized containment embedded in another applet.
@ Desktop
A desktop containment.
void appletCreated(Plasma::Applet *applet, const QRectF &geometryHint)
This signal is emitted when a new applet is created by the containment.
QString activity
Activity UID of this containment.
Definition containment.h:69
void activityChanged(const QString &activity)
Emitted when the activity id has changed.
QRectF screenGeometry
Provides access to the geometry of the applet is in.
void wallpaperPluginChanged()
Emitted when the wallpaper plugin is changed.
void availableRelativeScreenRegionChanged(const QList< QRectF > &region)
Emitted when the available screen rectangle has changed.
void setFormFactor(Plasma::Types::FormFactor formFactor)
Sets the form factor for this Containment.
Containment(QObject *parentObject, const KPluginMetaData &data, const QVariantList &args)
This constructor can be used with the KCoreAddons plugin loading system.
QList< QRectF > availableRelativeScreenRegion() const
void appletRemoved(Plasma::Applet *applet)
This signal is emitted when an applet is destroyed.
void appletAboutToBeRemoved(Plasma::Applet *applet)
This signal is emitted right before appletRemoved, it can be used to do a preliminary setup on the ap...
void setContainmentActions(const QString &trigger, const QString &pluginName)
Sets a containmentactions plugin.
QHash< QString, ContainmentActions * > & containmentActions()
virtual void saveContents(KConfigGroup &group) const
Called when the contents of the containment should be saved.
void locationChanged(Plasma::Types::Location location)
Emitted when the location has changed.
void screenGeometryChanged(const QRectF &rect)
Emitted when the screen geometry has changed.
Applet * createApplet(const QString &name, const QVariantList &args=QVariantList(), const QRectF &geometryHint=QRectF(-1, -1, 0, 0))
Adds an applet to this Containment.
virtual void restoreContents(KConfigGroup &group)
Called when the contents of the containment should be loaded.
void wallpaperGraphicsObjectChanged()
Emitted when the root wallpaper item has changed.
void appletAboutToBeAdded(Plasma::Applet *applet, const QRectF &geometryHint)
This signal is emitted right before appletAdded, it can be used to do a preliminary setup on the appl...
void setLocation(Plasma::Types::Location location)
Informs the Corona as to what position it is in.
QString activityName
Activity name of this containment.
Definition containment.h:74
void appletsChanged()
Emitted when the list of applets has changed, either added or removed.
void setWallpaperPlugin(const QString &pluginName)
Sets wallpaper plugin.
int screen
The screen number this containment is serving as the desktop for, or -1 if none.
Definition containment.h:87
void init() override
Reimplemented from Applet.
Plasma::Containment::Type containmentType
Type of this containment.
Definition containment.h:64
void screenChanged(int newScreen)
This signal indicates that a containment has been associated (or dissociated) with a physical screen.
void appletAdded(Plasma::Applet *applet, const QRectF &geometryHint)
This signal is emitted when a new applet is added in the containment It may happen in the following s...
void availableRelativeScreenRectChanged(const QRectF &rect)
Emitted when the available screen rectangle has changed.
void restore(KConfigGroup &group) override
QRectF availableRelativeScreenRect() const
QList< Plasma::Applet * > applets
List of applets this containment has: the containments KF6: this should be AppletQuickItem *.
Definition containment.h:54
Q_INVOKABLE QAction * action(const QString &name) const
Definition corona.cpp:402
virtual QRect screenGeometry(int id) const =0
Returns the geometry of a given screen.
virtual QRegion availableScreenRegion(int id) const
Returns the available region for a given screen.
Definition corona.cpp:267
void availableScreenRegionChanged(int id)
This signal indicates that a change in available screen geometry occurred.
virtual QRect availableScreenRect(int id) const
Returns the available rect for a given screen.
Definition corona.cpp:272
void screenGeometryChanged(int id)
This signal indicates that a change in geometry for the screen occurred.
void availableScreenRectChanged(int id)
This signal indicates that a change in available screen geometry occurred.
ContainmentActions * loadContainmentActions(Containment *parent, const QString &containmentActionsName, const QVariantList &args=QVariantList())
Load a ContainmentActions plugin.
static PluginLoader * self()
Return the active plugin loader.
ImmutabilityType
Defines the immutability of items like applets, corona and containments they can be free to modify,...
Definition plasma.h:99
@ SystemImmutable
the item is locked down by the system, the user can't unlock it
Definition plasma.h:103
@ Mutable
The item can be modified in any way.
Definition plasma.h:100
ItemStatus
Status of an applet.
Definition plasma.h:112
Location
The Location enumeration describes where on screen an element, such as an Applet or its managing cont...
Definition plasma.h:81
FormFactor
The FormFactor enumeration describes how a Plasma::Applet should arrange itself.
Definition plasma.h:40
QString i18nc(const char *context, const char *text, const TYPE &arg...)
QString i18n(const char *text, const TYPE &arg...)
Namespace for everything in libplasma.
void setEnabled(bool)
void setIcon(const QIcon &icon)
void setText(const QString &text)
void setVisible(bool)
QIcon fromTheme(const QString &name)
void append(QList< T > &&value)
iterator begin()
iterator end()
QMetaEnum fromType()
int keyToValue(const char *key, bool *ok) const const
bool hasNext() const const
QObject(QObject *parent)
Q_EMITQ_EMIT
QMetaObject::Connection connect(const QObject *sender, PointerToMemberFunction signal, Functor functor)
bool disconnect(const QMetaObject::Connection &connection)
QObject * parent() const const
QVariant property(const char *name) const const
T qobject_cast(QObject *object)
void setParent(QObject *parent)
void moveTo(const QPoint &position)
QPoint topLeft() const const
void moveTo(const QPointF &position)
QPointF topLeft() const const
const_iterator begin() const const
const_iterator end() const const
bool isEmpty() const const
qsizetype length() const const
QString number(double n, char format, int precision)
QString & replace(QChar before, QChar after, Qt::CaseSensitivity cs)
uint toUInt(bool *ok, int base) const const
bool toBool() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 12:08:31 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.