Expose the activated signal into the plasmoid
This was a regression from Plasma 1. Reviewed by David Edmundson
This commit is contained in:
parent
9a305de76d
commit
0e3978e22c
@ -71,6 +71,8 @@ AppletInterface::AppletInterface(DeclarativeAppletScript *script, QQuickItem *pa
|
|||||||
|
|
||||||
connect(applet(), &Plasma::Applet::statusChanged,
|
connect(applet(), &Plasma::Applet::statusChanged,
|
||||||
this, &AppletInterface::statusChanged);
|
this, &AppletInterface::statusChanged);
|
||||||
|
connect(applet(), &Plasma::Applet::activated,
|
||||||
|
this, &AppletInterface::activated);
|
||||||
|
|
||||||
connect(appletScript(), &DeclarativeAppletScript::formFactorChanged,
|
connect(appletScript(), &DeclarativeAppletScript::formFactorChanged,
|
||||||
this, &AppletInterface::formFactorChanged);
|
this, &AppletInterface::formFactorChanged);
|
||||||
|
@ -287,6 +287,11 @@ Q_SIGNALS:
|
|||||||
|
|
||||||
void configNeedsSaving();
|
void configNeedsSaving();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Emitted when the applet's activation action is triggered
|
||||||
|
*/
|
||||||
|
void activated();
|
||||||
|
|
||||||
|
|
||||||
//PROPERTY change notifiers--------------
|
//PROPERTY change notifiers--------------
|
||||||
void iconChanged();
|
void iconChanged();
|
||||||
|
Loading…
Reference in New Issue
Block a user