Add parameter names to signals in KWin Scripting
Apparently needed for QML bindings.
This commit is contained in:
parent
88aeec920e
commit
98ce0cbc78
1 changed files with 14 additions and 14 deletions
|
@ -67,19 +67,19 @@ private:
|
||||||
Q_DISABLE_COPY(WorkspaceWrapper)
|
Q_DISABLE_COPY(WorkspaceWrapper)
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void desktopPresenceChanged(KWin::Client*, int);
|
void desktopPresenceChanged(KWin::Client *client, int desktop);
|
||||||
void currentDesktopChanged(int);
|
void currentDesktopChanged(int desktop);
|
||||||
void clientAdded(KWin::Client*);
|
void clientAdded(KWin::Client *client);
|
||||||
void clientRemoved(KWin::Client*);
|
void clientRemoved(KWin::Client *client);
|
||||||
void clientManaging(KWin::Client*);
|
void clientManaging(KWin::Client *client);
|
||||||
void clientMinimized(KWin::Client*);
|
void clientMinimized(KWin::Client *client);
|
||||||
void clientUnminimized(KWin::Client*);
|
void clientUnminimized(KWin::Client *client);
|
||||||
void clientRestored(KWin::Client*);
|
void clientRestored(KWin::Client *client);
|
||||||
void clientMaximizeSet(KWin::Client*, bool, bool);
|
void clientMaximizeSet(KWin::Client *client, bool h, bool v);
|
||||||
void killWindowCalled(KWin::Client*);
|
void killWindowCalled(KWin::Client *client);
|
||||||
void clientActivated(KWin::Client*);
|
void clientActivated(KWin::Client *client);
|
||||||
void clientFullScreenSet(KWin::Client*, bool, bool);
|
void clientFullScreenSet(KWin::Client *client, bool fullScreen, bool user);
|
||||||
void clientSetKeepAbove(KWin::Client*, bool);
|
void clientSetKeepAbove(KWin::Client *client, bool keepAbove);
|
||||||
/**
|
/**
|
||||||
* Signal emitted whenever the number of desktops changed.
|
* Signal emitted whenever the number of desktops changed.
|
||||||
* To get the current number of desktops use the property desktops.
|
* To get the current number of desktops use the property desktops.
|
||||||
|
@ -91,7 +91,7 @@ signals:
|
||||||
* @param c The Client for which demands attention changed
|
* @param c The Client for which demands attention changed
|
||||||
* @param set New value of demands attention
|
* @param set New value of demands attention
|
||||||
**/
|
**/
|
||||||
void clientDemandsAttentionChanged(KWin::Client* c, bool set);
|
void clientDemandsAttentionChanged(KWin::Client *client, bool set);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue