Libplasma

applet.h
1/*
2 SPDX-FileCopyrightText: 2006-2007 Aaron Seigo <:wqaseigo@kde.org>
3 SPDX-FileCopyrightText: 2007 Riccardo Iaconelli <riccardo@kde.org>
4 SPDX-FileCopyrightText: 2008 Ménard Alexis <darktears31@gmail.com>
5
6 SPDX-License-Identifier: LGPL-2.0-or-later
7*/
8
9#ifndef PLASMA_APPLET_H
10#define PLASMA_APPLET_H
11
12#include <QAction>
13#include <QKeySequence>
14#include <QObject>
15#include <QQmlListProperty>
16#include <QUrl>
17
18#include <KConfigGroup>
19#include <plasma/plasma_export.h>
20
21#include <Plasma/Plasma>
22
23namespace KPackage
24{
25class Package;
26}
27namespace PlasmaQuick
28{
29class AppletQuickItem;
30class ConfigViewPrivate;
31class ConfigModelPrivate;
32class ConfigModel;
33class ConfigView;
34};
35class DeclarativeAppletScript;
36#include <KPluginFactory>
37
38class KConfigLoader;
40
41namespace Plasma
42{
43class AppletPrivate;
44class Containment;
45class Package;
46
47/**
48 * @class Applet plasma/applet.h <Plasma/Applet>
49 *
50 * @short The base Applet class
51 *
52 * Applet provides several important roles for add-ons widgets in Plasma.
53 *
54 * First, it is the base class for the plugin system and therefore is the
55 * interface to applets for host applications.
56 * Background painting (allowing for consistent and complex
57 * look and feel in just one line of code for applets), loading and starting
58 * of scripting support for each applet, providing access to the associated
59 * plasmoid package (if any) and access to configuration data.
60 *
61 * See techbase.kde.org for tutorials on writing Applets using this class.
62 */
63class PLASMA_EXPORT Applet : public QObject
64{
66 /**
67 * Applet id: is unique in the whole Plasma session and will never change across restarts
68 */
69 Q_PROPERTY(uint id READ id CONSTANT FINAL)
70
71 /**
72 * User friendly title for the plasmoid: it's the localized applet name by default
73 */
75
76 /**
77 * Icon to represent the plasmoid
78 */
79 Q_PROPERTY(QString icon READ icon WRITE setIcon NOTIFY iconChanged FINAL)
80
81 // TODO KF6 toolTipMainText toolTipSubText toolTipTextFormat toolTipItem: need to either be here or some other kind of attached property
82
83 /**
84 * The current form factor the applet is being displayed in.
85 *
86 * @see Plasma::FormFactor
87 */
89
90 /**
91 * The location of the scene which is displaying applet.
92 *
93 * @see Plasma::Types::Location
94 */
96
97 /**
98 * Status of the plasmoid: useful to instruct the shell if this plasmoid is requesting attention, if is accepting input, or if is in an idle, inactive state
99 */
101
102 /**
103 * The immutability of the Corona.
104 * Tells the applet whether it should allow for any modification by the user.
105 */
107
108 /**
109 * Whether the Corona is immutable. The plasmoid implementation should avoid allowing "dangerous" modifications from the user when in an immutable mode
110 *
111 * This is true when immutability is not Mutable
112 */
114
115 /**
116 * Display hints that come from the containment that suggest the applet how to look and behave.
117 * TODO: only in containment?
118 */
120
121 /**
122 * True if the applet should show a busy status, for instance doing
123 * some network operation
124 */
125 Q_PROPERTY(bool busy READ isBusy WRITE setBusy NOTIFY busyChanged FINAL)
126
127 /**
128 * True when the user is configuring, for instance when the configuration dialog is open.
129 */
131
132 /**
133 * How the applet wants its background to be drawn. The containment may chose to ignore this hint.
134 */
136
137 /**
138 * The containment (and/or the user) may decide to use another kind of background instead (if supported by the applet)
139 */
141
142 /**
143 * The effective background hints the applet has, internally decided how to mix with userBackgroundHints
144 */
146
147 // TODO KF6: activity, screen, screenGeometry, availableScreenRect, availableScreenRegion: should we instead make the containment accessible from qml
148 // plasmoids and ask from there?
149
150 /**
151 * A KConfigPropertyMap instance that represents the configuration
152 * which is usable from QML to read and write settings like any JavaScript Object
153 */
155
156 /**
157 * The global shortcut to activate the plasmoid
158 *
159 * This is typically only used by the default configuration module
160 *
161 */
163
164 /**
165 * If true the applet requires manual configuration from the user
166 * TODO KF6: having just a reason property and required would be string not empty? Uglier from c++ pov but more straight forward from qml pov
167 */
169
170 /**
171 * True if this applet will provide a UI for its configuration
172 */
174
175 /**
176 * The hints that the applet gives to its constraint,
177 * such as asking to fill all the available space ignoring margins.
178 */
180
181 /**
182 * The metadata of the applet.
183 */
185
186 /**
187 * The Containment managing this applet
188 */
190
191 /**
192 * Actions to be added in the plasmoid context menu. To instantiate QActions in a declarative way,
193 * PlasmaCore.Action {} can be used
194 */
196
197 /**
198 * True if this applet is a Containment and is acting as one, such as a desktop or a panel
199 */
201
202 /**
203 * Plugin name for the applet
204 */
206
207public:
208 /**
209 * The Constraint enumeration lists the various constraints that Plasma
210 * objects have managed for them and which they may wish to react to,
211 * for instance in Applet::constraintsUpdated
212 */
214 NoConstraint = 0, /**< No constraint; never passed in to Applet::constraintsEvent on its own */
215 FormFactorConstraint = 1, /**< The FormFactor for an object */
216 LocationConstraint = 2, /**< The Location of an object */
217 ScreenConstraint = 4, /**< Which screen an object is on */
218 ImmutableConstraint = 8, /**< the immutability (locked) nature of the applet changed */
219 StartupCompletedConstraint = 16, /**< application startup has completed */
221 /**< The ui has been completely loaded */ // (FIXME: merged with StartupCompletedConstraint?)
223 };
224 Q_ENUM(Constraint)
225 Q_DECLARE_FLAGS(Constraints, Constraint)
226
227 /**
228 * This enumeration lists the various hints that an applet can pass to its
229 * constraint regarding the way that it is represented
230 */
232 NoHint = 0,
234 /**< The CompactRepresentation can fill the area and ignore constraint margins*/ // (TODO: KF6 CanFillArea -> CompactRepresentationFillArea)
235 MarginAreasSeparator = CanFillArea | 2, /**< The applet acts as a separator between the standard and slim panel margin areas*/
236 };
237 Q_DECLARE_FLAGS(ConstraintHints, ConstraintHint)
238 Q_FLAG(ConstraintHints)
239
240 // CONSTRUCTORS
241
242 /**
243 * This constructor can be used with the KCoreAddons plugin loading system.
244 * The argument list is expected to have contain the KPackage of the applet,
245 * the meta data file path (for compatibility) and an applet ID which must be a base 10 number.
246 *
247 * @param parent a QObject parent; you probably want to pass in 0
248 * @param data, KPluginMetaData used to create this plugin
249 * @param args a list of strings containing the applet id
250 * @Since 5.86
251 */
252 Applet(QObject *parentObject, const KPluginMetaData &data, const QVariantList &args);
253
254 ~Applet() override;
255
256 // BOOKKEEPING
257 /**
258 * @return the id of this applet
259 */
260 uint id() const;
261
262 /**
263 * @return the arguments this applet was started with.
264 * Some applets support arguments, for instance the notes applet supports to be
265 * instantiated with a given text already passed as paramenter
266 */
267 QVariantList startupArguments() const;
268
269 /**
270 * @return The type of immutability of this applet
271 */
272 Types::ImmutabilityType immutability() const;
273
274 /**
275 * @return true if immutability() is not Types::Mutable
276 */
277 bool immutable() const;
278
279 /**
280 * If for some reason, the applet fails to get up on its feet (the
281 * library couldn't be loaded, necessary hardware support wasn't found,
282 * etc..) this method returns the reason why, in an user-readable way.
283 * @since 5.0
284 **/
285 QString launchErrorMessage() const;
286
287 /**
288 * If for some reason, the applet fails to get up on its feet (the
289 * library couldn't be loaded, necessary hardware support wasn't found,
290 * etc..) this method returns true.
291 **/
292 bool failedToLaunch() const;
293
294 /**
295 * @return true if destroy() was called; useful for Applets which should avoid
296 * certain tasks if they are about to be deleted permanently
297 */
298 bool destroyed() const;
299
300 /**
301 * @return the Containment, if any, this applet belongs to.
302 * A containment will return itself if is a first level
303 * containment such as a desktop or a panel, or will return the
304 * other containment is in if it's a nested containment such a
305 * system tray
306 **/
307 Containment *containment() const;
308
309 /**
310 * @return true if this Applet is currently being used as a Containment, false otherwise.
311 * Normally only first level Containments directly children of Corona can act
312 * as containments, except Containments of Type CustomEmbedded which can be
313 * containments also when inside another containment, such as a Systray
314 * inside a Panel.
315 */
316 bool isContainment() const;
317
318 /**
319 * @return the status of the applet
320 * @since 4.4
321 */
323
324 /**
325 * Returns the current form factor the applet is being displayed in.
326 *
327 * @see Plasma::FormFactor
328 */
329 Types::FormFactor formFactor() const;
330
331 /**
332 * Returns the location of the scene which is displaying applet.
333 *
334 * @see Plasma::Types::Location
335 */
336 Types::Location location() const;
337
338 /**
339 * @return Display hints that come from the containment that suggest the applet how to look and behave.
340 * @since 5.77
341 */
342 Types::ContainmentDisplayHints containmentDisplayHints() const;
343
344 // CONFIGURATION
345 /**
346 * Returns the KConfigGroup to access the applets configuration.
347 *
348 * This config object will write to an instance
349 * specific config file named <appletname><instanceid>rc
350 * in the Plasma appdata directory.
351 **/
352 KConfigGroup config() const;
353
354 /**
355 * Returns a KConfigGroup object to be shared by all applets of this
356 * type.
357 *
358 * This config object will write to an applet-specific config object
359 * named plasma_<appletname>rc in the local config directory.
360 */
361 KConfigGroup globalConfig() const;
362
363 /**
364 * Returns the config skeleton object from this applet's package,
365 * if any.
366 *
367 * @return config skeleton object, or 0 if none
368 **/
369 KConfigLoader *configScheme() const;
370
371 /**
372 * @return a KConfigPropertyMap instance that represents the configuration
373 * which is usable from QML to read and write settings like any JavaScript Object
374 */
376
377 /**
378 * Saves state information about this applet that will
379 * be accessed when next instantiated in the restore(KConfigGroup&) method.
380 *
381 * This method does not need to be reimplemented by Applet
382 * subclasses, but can be useful for Applet specializations
383 * (such as Containment) to do so.
384 *
385 * Applet subclasses may instead want to reimplement saveState().
386 **/
387 virtual void save(KConfigGroup &group) const;
388
389 /**
390 * Restores state information about this applet saved previously
391 * in save(KConfigGroup&).
392 *
393 * This method does not need to be reimplemented by Applet
394 * subclasses, but can be useful for Applet specializations
395 * (such as Containment) to do so.
396 **/
397 virtual void restore(KConfigGroup &group);
398
399 /**
400 * When the applet needs to be configured before being usable, this
401 * method can be called to show a standard interface prompting the user
402 * to configure the applet
403 *
404 * @param needsConfiguring true if the applet needs to be configured,
405 * or false if it doesn't
406 * @param reason a translated message for the user explaining that the
407 * applet needs configuring; this should note what needs
408 * to be configured
409 */
410 void setConfigurationRequired(bool needsConfiguring, const QString &reason = QString());
411
412 /**
413 * @return true if the applet currently needs to be configured,
414 * otherwise, false
415 */
416 bool configurationRequired() const;
417
418 /**
419 * @return A translated message for the user explaining that the
420 * applet needs configuring; this should note what needs
421 * to be configured
422 *
423 * @see setConfigurationRequired
424 * @since 5.20
425 */
427
428 /**
429 * Sets the constraint hits which give a more granular control over sizing in
430 * constrained layouts such as panels
431 *
432 * @param constraintHints such as CanFillArea or MarginAreasSeparator,
433 * they can be in bitwise OR
434 */
435 void setConstraintHints(ConstraintHints constraintHints);
436
437 /**
438 * @return The constraint hints such as CanFillArea or MarginAreasSeparator,
439 * they can be in bitwise OR
440 */
441 ConstraintHints constraintHints() const;
442
443 /**
444 * @return true when the configuration interface is being shown
445 * @since 4.5
446 */
447 bool isUserConfiguring() const;
448
449 /**
450 * Tells the applet the user is configuring
451 * @param configuring true if the configuration ui is showing
452 */
453 void setUserConfiguring(bool configuring);
454
455 // UTILS
456 /**
457 * Called when any of the geometry constraints have been updated.
458 * This method calls constraintsEvent, which may be reimplemented,
459 * once the Applet has been prepared for updating the constraints.
460 *
461 * @param constraints the type of constraints that were updated
462 */
463 void updateConstraints(Constraints constraints = AllConstraints);
464
465 // METADATA
466
467 /**
468 * @return metadata information about this plugin
469 *
470 * @since 5.27
471 */
473
474 /**
475 * @return the plugin name form KPluginMetaData
476 */
477 QString pluginName() const;
478
479 /**
480 * Returns the user-visible title for the applet, as specified in the
481 * Name field of the .desktop file. Can be changed with @see setTitle
482 *
483 * @since 5.0
484 * @return the user-visible title for the applet.
485 **/
486 QString title() const;
487
488 /**
489 * Sets a custom title for this instance of the applet. E.g. a clock might
490 * use the timezone as its name rather than the .desktop file
491 *
492 * @since 5.0
493 * @param title the user-visible title for the applet.
494 */
495 void setTitle(const QString &title);
496
497 /**
498 * @returns The icon name related to this applet
499 * By default is the one in the plasmoid desktop file
500 **/
501 QString icon() const;
502
503 /**
504 * Sets an icon name for this applet
505 * @param icon Freedesktop compatible icon name
506 */
507 void setIcon(const QString &icon);
508
509 /**
510 * @returns true if the applet should show a busy status, for instance doing
511 * some network operation
512 * @since 5.21
513 */
514 bool isBusy() const;
515
516 /**
517 * Sets the Applet to have a busy status hint, for instance the applet doing
518 * some network operation.
519 * The graphical representation of the busy status depends completely from
520 * the visualization.
521 * @param busy true if the applet is busy
522 * @since 5.21
523 */
524 void setBusy(bool busy);
525
526 /**
527 * How the applet wants its background to be drawn. The containment may chose to ignore this hint.
528 * @since 5.65
529 */
531
532 /**
533 * Sets the applet background hints. Only Applet implementations should write this property
534 * @since 5.65
535 */
537
538 /**
539 * The containment (and/or the user) may decide to use another kind of background instead if supported by the applet.
540 * In order for an applet to support user configuration of the
541 * background, it needs to have the Plasma::Types::ConfigurableBackground flag set in its backgroundHints
542 * @since 5.65
543 */
545
546 /**
547 * Sets the hints the user wished the background style for the applet to be.
548 * @since 5.65
549 */
551
552 /**
553 * The effective background hints the applet will have: it will follow userBackgroundHints only if backgroundHints has the
554 * Plasma::Types::ConfigurableBackground flag set
555 * @since 5.65
556 */
558
559 // ACTIONS
560 /**
561 * Returns a list of context-related QAction instances.
562 *
563 * This is used e.g. within the \a DesktopView to display a
564 * contextmenu.
565 *
566 * @return A list of actions. The default implementation returns an
567 * empty list.
568 **/
570
571 QML_LIST_PROPERTY_ASSIGN_BEHAVIOR_REPLACE
572 QQmlListProperty<QAction> qmlContextualActions();
573
574 /**
575 * Add a new internal action. if an internal action with the same name already exists, it
576 * will be replaced with this new one.
577 * Those are usually actions defined by the system, such as "configure" and "remove"
578 *
579 * @param name The unique name for the action
580 * @param action The new QAction to be added
581 */
582 Q_INVOKABLE void setInternalAction(const QString &name, QAction *action);
583
584 /**
585 * @returns the internal action with the given name if available
586 * @param name the unique name of the action we want
587 */
588 Q_INVOKABLE QAction *internalAction(const QString &name) const;
589
590 /**
591 * Removes an action from the internal actions
592 * @param name the action to be removed
593 */
594 Q_INVOKABLE void removeInternalAction(const QString &name);
595
596 /**
597 * @returns All the internal actions such as configure, remove, alternatives etc
598 */
600
601 /**
602 * Sets the global shortcut to associate with this widget.
603 */
604 void setGlobalShortcut(const QKeySequence &shortcut = QKeySequence());
605
606 /**
607 * @return the global shortcut associated with this widget, or
608 * an empty shortcut if no global shortcut is associated.
609 */
611
612 /**
613 * Sets whether or not this applet provides a user interface for
614 * configuring the applet.
615 *
616 * It defaults to false, and if true is passed in you should
617 * also reimplement createConfigurationInterface()
618 *
619 * @param hasInterface whether or not there is a user interface available
620 **/
621 void setHasConfigurationInterface(bool hasInterface);
622
623 // Completely UI-specific, remove or move to scriptengine
624 /**
625 * @return true if this plasmoid provides a GUI configuration
626 **/
627 bool hasConfigurationInterface() const;
628
629 /**
630 * The translation domain for this applet
631 *
632 * @since 6.1
633 */
635
637 // BOOKKEEPING
638 /**
639 * Emitted when the immutability changes
640 * @since 4.4
641 */
643
644 /**
645 * Emitted when the applet status changes
646 * @since 4.4
647 */
649
650 /**
651 * Emitted when the applet has been scheduled for destruction
652 * or the destruction has been undone
653 * @since 5.4
654 */
656
657 /**
658 * Emitted when the title has changed
659 * @since 5.20
660 */
662
663 /**
664 * Emitted when the icon name for the applet has changed
665 * @since 5.20
666 */
668
669 /**
670 * Emitted when the busy status has changed
671 * @since 5.21
672 */
673 void busyChanged(bool busy);
674
675 /**
676 * Emitted when the background hints have changed
677 * @since 5.65
678 */
680
681 /**
682 * Emitted when the user background hints have changed
683 * @since 5.65
684 */
686
687 /**
688 * Emitted when the effective background hints have changed
689 * @since 5.65
690 */
692
693 /**
694 * Emitted when the global shortcut to activate this applet has chanaged
695 */
696 void globalShortcutChanged(const QKeySequence &sequence);
697
698 // CONFIGURATION
699 /**
700 * Emitted when an applet has changed values in its configuration
701 * and wishes for them to be saved at the next save point. As this implies
702 * disk activity, this signal should be used with care.
703 *
704 * @note This does not need to be emitted from saveState by individual
705 * applets.
706 */
708
709 /**
710 * emitted when the config ui appears or disappears
711 */
712 void userConfiguringChanged(bool configuring);
713
714 // ACTIONS
715 /**
716 * Emitted just before the contextual actions are about to show
717 * For instance just before the context menu containing the actions
718 * added with setAction() is shown
719 */
721
722 /**
723 * Emitted when activation is requested due to, for example, a global
724 * keyboard shortcut. By default the widget is given focus.
725 */
726 void activated();
727
728 /**
729 * Emitted when activation is requested due to, for example, middle
730 * click.
731 * @since 6.3
732 */
734
735 // TODO: fix usage in containment, port to QObject::destroyed
736 /**
737 * Emitted when the applet is deleted
738 */
740
741 /**
742 * Emitted when the formfactor changes
743 */
745
746 /**
747 * Emitted when the location changes
748 */
750
751 /**
752 * Emitted when the containment display hints change
753 */
754 void containmentDisplayHintsChanged(Plasma::Types::ContainmentDisplayHints hints);
755
756 /**
757 * Emitted when setConfigurationRequired was called
758 * @see setConfigurationRequired
759 * @since 5.20
760 */
761 void configurationRequiredChanged(bool needsConfig, const QString &reason);
762
763 /**
764 * Emitted when the applet gains or loses the ability to show a configuration interface
765 * @see hasConfigurationInterface
766 * @since 6.0
767 */
768 void hasConfigurationInterfaceChanged(bool hasConfiguration);
769
770 /**
771 * Emitted when the constraint hints changed
772 * @see setConstraintHints
773 */
774 void constraintHintsChanged(Plasma::Applet::ConstraintHints constraintHints);
775
776 /**
777 * Emitted when the containment changes
778 */
780
781 /**
782 * Emitted when the list of contextual actions has changed
783 */
785
786 /**
787 * Emitted when the list of internal actions has changed
788 */
790
791 // TODO KF6 keep as Q_SLOT only stuff that needsto be manually invokable from qml
792public Q_SLOTS:
793 // BOOKKEEPING
794 /**
795 * Call this method when the applet fails to launch properly. An
796 * optional reason can be provided.
797 *
798 * Not that all children items will be deleted when this method is
799 * called. If you have pointers to these items, you will need to
800 * reset them after calling this method.
801 *
802 * @param failed true when the applet failed, false when it succeeded
803 * @param reason an optional reason to show the user why the applet
804 * failed to launch
805 * @since 5.0
806 **/
807 void setLaunchErrorMessage(const QString &reason = QString());
808
809 /**
810 * Sets the immutability type for this applet (not immutable,
811 * user immutable or system immutable)
812 * @param immutable the new immutability type of this applet
813 */
815
816 /**
817 * Destroys the applet; it will be removed nicely and deleted.
818 * Its configuration will also be deleted.
819 * If you want to remove the Applet configuration, use this, don't just delete the Applet *
820 */
821 void destroy();
822
823 /**
824 * sets the status for this applet
825 * @since 4.4
826 */
827 void setStatus(const Types::ItemStatus stat);
828
829 // CONFIGURATION
830 /**
831 * Called when applet configuration values have changed.
832 */
833 // TODO KF6: make it not a slot anymore and protected
834 virtual void configChanged();
835
836 // UTILS
837 /**
838 * Sends all pending constraints updates to the applet. Will usually
839 * be called automatically, but can also be called manually if needed.
840 */
842
843 /**
844 * This method is called once the applet is loaded and added to a Corona.
845 * If the applet requires a Scene or has an particularly intensive
846 * set of initialization routines to go through, consider implementing it
847 * in this method instead of the constructor.
848 *
849 * Note: paintInterface may get called before init() depending on initialization
850 * order. Painting is managed by the canvas (QGraphisScene), and may schedule a
851 * paint event prior to init() being called.
852 **/
853 virtual void init();
854
855protected:
856 // CONFIGURATION
857 /**
858 * When called, the Applet should write any information needed as part
859 * of the Applet's running state to the configuration object in config()
860 * and/or globalConfig().
861 *
862 * Applets that always sync their settings/state with the config
863 * objects when these settings/states change do not need to reimplement
864 * this method.
865 **/
866 virtual void saveState(KConfigGroup &config) const;
867
868 // UTILS
869 /**
870 * Called when any of the constraints for the applet have been updated. These constraints
871 * range from notifying when the applet has officially "started up" to when geometry changes
872 * to when the form factor changes.
873 *
874 * Each constraint that has been changed is passed in the constraints flag.
875 * All of the constraints and how they work is documented in the @see Plasma::Constraints
876 * enumeration.
877 *
878 * On applet creation, this is always called prior to painting and can be used as an
879 * opportunity to layout the widget, calculate sizings, etc.
880 *
881 * Do not call update() from this method; an update() will be triggered
882 * at the appropriate time for the applet.
883 *
884 * @param constraints the type of constraints that were updated
885 * @property constraint
886 */
887 virtual void constraintsEvent(Constraints constraints);
888
889 // TODO: timerEvent should go into AppletPrivate
890 /**
891 * Reimplemented from QObject
892 */
893 void timerEvent(QTimerEvent *event) override;
894
895private:
896 QUrl fileUrl(const QByteArray &key, const QString &filename) const;
897 QUrl mainScript() const;
898 QUrl configModel() const;
899 bool sourceValid() const;
900 /**
901 * @internal This constructor is to be used with the Package loading system.
902 *
903 * @param parent a QObject parent; you probably want to pass in 0
904 * @param args a list of strings containing two entries: the service id
905 * and the applet id
906 * @since 4.3
907 */
908 Applet(const QString &packagePath, uint appletId);
909
910 // TODO KF6: drop Q_PRIVATE_SLOT
911 Q_PRIVATE_SLOT(d, void cleanUpAndDelete())
912 Q_PRIVATE_SLOT(d, void askDestroy())
913 Q_PRIVATE_SLOT(d, void globalShortcutChanged())
914 Q_PRIVATE_SLOT(d, void propagateConfigChanged())
915 Q_PRIVATE_SLOT(d, void requestConfiguration())
916
917 AppletPrivate *const d;
918
919 // Corona needs to access setLaunchErrorMessage and init
920 friend class Corona;
921 friend class CoronaPrivate;
922 friend class Containment;
923 friend class ContainmentPrivate;
924 friend class AppletScript;
925 friend class AppletPrivate;
926 friend class AccessAppletJobPrivate;
927 friend class GraphicsViewAppletPrivate;
928 friend class PluginLoader;
929 friend class SvgPrivate;
930 friend class PlasmaQuick::AppletQuickItem;
931 friend class PlasmaQuick::ConfigModel;
932 friend class PlasmaQuick::ConfigModelPrivate;
933 friend class PlasmaQuick::ConfigViewPrivate;
934 friend class PlasmaQuick::ConfigView;
935 friend DeclarativeAppletScript;
936};
937
938Q_DECLARE_OPERATORS_FOR_FLAGS(Applet::Constraints)
939Q_DECLARE_OPERATORS_FOR_FLAGS(Applet::ConstraintHints)
940
941} // Plasma namespace
942
943#endif // multiple inclusion guard
This model contains all the possible config categories for a dialog, such as categories of the config...
Definition configmodel.h:51
The base Applet class.
Definition applet.h:64
bool isUserConfiguring() const
Definition applet.cpp:514
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
Plasma::Types::ContainmentDisplayHints containmentDisplayHints
Display hints that come from the containment that suggest the applet how to look and behave.
Definition applet.h:119
QQmlListProperty< QAction > contextualActions
Actions to be added in the plasmoid context menu.
Definition applet.h:195
QKeySequence globalShortcut
The global shortcut to activate the plasmoid.
Definition applet.h:162
void setHasConfigurationInterface(bool hasInterface)
Sets whether or not this applet provides a user interface for configuring the applet.
Definition applet.cpp:793
void secondaryActivated()
Emitted when activation is requested due to, for example, middle click.
void contextualActionsChanged(const QList< QAction * > &actions)
Emitted when the list of contextual actions has changed.
Plasma::Types::Location location
The location of the scene which is displaying applet.
Definition applet.h:95
Q_INVOKABLE void removeInternalAction(const QString &name)
Removes an action from the internal actions.
Definition applet.cpp:677
void setStatus(const Types::ItemStatus stat)
sets the status for this applet
Definition applet.cpp:534
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
void titleChanged(const QString &title)
Emitted when the title has changed.
Plasma::Types::BackgroundHints backgroundHints
How the applet wants its background to be drawn.
Definition applet.h:135
void constraintHintsChanged(Plasma::Applet::ConstraintHints constraintHints)
Emitted when the constraint hints changed.
Plasma::Types::BackgroundHints userBackgroundHints
The containment (and/or the user) may decide to use another kind of background instead (if supported ...
Definition applet.h:140
void setUserBackgroundHints(Plasma::Types::BackgroundHints hint)
Sets the hints the user wished the background style for the applet to be.
Definition applet.cpp:380
void setConfigurationRequired(bool needsConfiguring, const QString &reason=QString())
When the applet needs to be configured before being usable, this method can be called to show a stand...
Definition applet.cpp:487
void internalActionsChanged(const QList< QAction * > &actions)
Emitted when the list of internal actions has changed.
Constraint
The Constraint enumeration lists the various constraints that Plasma objects have managed for them an...
Definition applet.h:213
@ ScreenConstraint
Which screen an object is on.
Definition applet.h:217
@ NoConstraint
No constraint; never passed in to Applet::constraintsEvent on its own.
Definition applet.h:214
@ StartupCompletedConstraint
application startup has completed
Definition applet.h:219
@ UiReadyConstraint
The ui has been completely loaded.
Definition applet.h:220
@ ImmutableConstraint
the immutability (locked) nature of the applet changed
Definition applet.h:218
@ FormFactorConstraint
The FormFactor for an object.
Definition applet.h:215
@ LocationConstraint
The Location of an object.
Definition applet.h:216
void destroy()
Destroys the applet; it will be removed nicely and deleted.
Definition applet.cpp:222
Applet::ConstraintHints constraintHints
The hints that the applet gives to its constraint, such as asking to fill all the available space ign...
Definition applet.h:179
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
QString translationDomain() const
The translation domain for this applet.
Definition applet.cpp:888
void globalShortcutChanged(const QKeySequence &sequence)
Emitted when the global shortcut to activate this applet has chanaged.
void containmentChanged(Plasma::Containment *containment)
Emitted when the containment changes.
void effectiveBackgroundHintsChanged()
Emitted when the effective background hints have changed.
void setTitle(const QString &title)
Sets a custom title for this instance of the applet.
Definition applet.cpp:305
ConstraintHint
This enumeration lists the various hints that an applet can pass to its constraint regarding the way ...
Definition applet.h:231
@ MarginAreasSeparator
The applet acts as a separator between the standard and slim panel margin areas.
Definition applet.h:235
@ CanFillArea
The CompactRepresentation can fill the area and ignore constraint margins.
Definition applet.h:233
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 setIcon(const QString &icon)
Sets an icon name for this applet.
Definition applet.cpp:320
bool userConfiguring
True when the user is configuring, for instance when the configuration dialog is open.
Definition applet.h:130
virtual void configChanged()
Called when applet configuration values have changed.
Definition applet.cpp:813
void setUserConfiguring(bool configuring)
Tells the applet the user is configuring.
Definition applet.cpp:519
void hasConfigurationInterfaceChanged(bool hasConfiguration)
Emitted when the applet gains or loses the ability to show a configuration interface.
void setGlobalShortcut(const QKeySequence &shortcut=QKeySequence())
Sets the global shortcut to associate with this widget.
Definition applet.cpp:744
QString icon
Icon to represent the plasmoid.
Definition applet.h:79
void setConstraintHints(ConstraintHints constraintHints)
Sets the constraint hits which give a more granular control over sizing in constrained layouts such a...
Definition applet.cpp:499
void statusChanged(Plasma::Types::ItemStatus status)
Emitted when the applet status changes.
bool immutable
Whether the Corona is immutable.
Definition applet.h:113
void timerEvent(QTimerEvent *event) override
Reimplemented from QObject.
Definition applet.cpp:850
void containmentDisplayHintsChanged(Plasma::Types::ContainmentDisplayHints hints)
Emitted when the containment display hints change.
bool busy
True if the applet should show a busy status, for instance doing some network operation.
Definition applet.h:125
KConfigPropertyMap * configuration
A KConfigPropertyMap instance that represents the configuration which is usable from QML to read and ...
Definition applet.h:154
Plasma::Types::FormFactor formFactor
The current form factor the applet is being displayed in.
Definition applet.h:88
bool isBusy() const
Definition applet.cpp:330
void setLaunchErrorMessage(const QString &reason=QString())
Call this method when the applet fails to launch properly.
Definition applet.cpp:169
QString configurationRequiredReason() const
Definition applet.cpp:482
Q_INVOKABLE void setInternalAction(const QString &name, QAction *action)
Add a new internal action.
Definition applet.cpp:650
virtual QList< QAction * > contextualActions()
Returns a list of context-related QAction instances.
void iconChanged(const QString &icon)
Emitted when the icon name for the applet has changed.
QString pluginName
Plugin name for the applet.
Definition applet.h:205
void busyChanged(bool busy)
Emitted when the busy status has changed.
void destroyedChanged(bool destroyed)
Emitted when the applet has been scheduled for destruction or the destruction has been undone.
KConfigPropertyMap * configuration()
QList< QAction * > internalActions() const
Definition applet.cpp:691
bool destroyed() const
Definition applet.cpp:243
virtual void saveState(KConfigGroup &config) const
When called, the Applet should write any information needed as part of the Applet's running state to ...
Definition applet.cpp:179
Plasma::Types::ItemStatus status
Status of the plasmoid: useful to instruct the shell if this plasmoid is requesting attention,...
Definition applet.h:100
QString title
User friendly title for the plasmoid: it's the localized applet name by default.
Definition applet.h:74
void immutabilityChanged(Plasma::Types::ImmutabilityType immutable)
Emitted when the immutability changes.
void setBusy(bool busy)
Sets the Applet to have a busy status hint, for instance the applet doing some network operation.
Definition applet.cpp:335
void setImmutability(const Types::ImmutabilityType immutable)
Sets the immutability type for this applet (not immutable, user immutable or system immutable)
Definition applet.cpp:448
void setBackgroundHints(Plasma::Types::BackgroundHints hint)
Sets the applet background hints.
Definition applet.cpp:350
Plasma::Containment * containment
The Containment managing this applet.
Definition applet.h:189
void backgroundHintsChanged()
Emitted when the background hints have changed.
void configurationRequiredChanged(bool needsConfig, const QString &reason)
Emitted when setConfigurationRequired was called.
Plasma::Types::BackgroundHints effectiveBackgroundHints
The effective background hints the applet has, internally decided how to mix with userBackgroundHints...
Definition applet.h:145
void formFactorChanged(Plasma::Types::FormFactor formFactor)
Emitted when the formfactor changes.
void flushPendingConstraintsEvents()
Sends all pending constraints updates to the applet.
Definition applet.cpp:543
Applet(QObject *parentObject, const KPluginMetaData &data, const QVariantList &args)
This constructor can be used with the KCoreAddons plugin loading system.
Definition applet.cpp:41
void locationChanged(Plasma::Types::Location location)
Emitted when the location changes.
void userConfiguringChanged(bool configuring)
emitted when the config ui appears or disappears
void contextualActionsAboutToShow()
Emitted just before the contextual actions are about to show For instance just before the context men...
KPluginMetaData pluginMetaData() const
Definition applet.cpp:401
bool configurationRequired
If true the applet requires manual configuration from the user TODO KF6: having just a reason propert...
Definition applet.h:168
KPluginMetaData metaData
The metadata of the applet.
Definition applet.h:184
bool hasConfigurationInterface
True if this applet will provide a UI for its configuration.
Definition applet.h:173
void userBackgroundHintsChanged()
Emitted when the user background hints have changed.
virtual void restore(KConfigGroup &group)
Restores state information about this applet saved previously in save(KConfigGroup&).
Definition applet.cpp:135
The base class for plugins that provide backgrounds and applet grouping containers.
Definition containment.h:47
Enums and constants used in Plasma.
Definition plasma.h:29
ImmutabilityType
Defines the immutability of items like applets, corona and containments they can be free to modify,...
Definition plasma.h:99
ItemStatus
Status of an applet.
Definition plasma.h:112
BackgroundHints
Description on how draw a background for the applet.
Definition plasma.h:127
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
Q_SCRIPTABLE CaptureState status()
The EdgeEventForwarder class This class forwards edge events to be replayed within the given margin T...
Definition action.h:20
Namespace for everything in libplasma.
QObject(QObject *parent)
Q_INVOKABLEQ_INVOKABLE
Q_OBJECTQ_OBJECT
Q_PROPERTY(...)
Q_SIGNALSQ_SIGNALS
Q_SLOTSQ_SLOTS
virtual bool event(QEvent *e)
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.