2018-07-23 21:52:58 +00:00
|
|
|
effects.windowAdded.connect(function(window) {
|
|
|
|
sendTestResponse("windowAdded - " + window.caption);
|
2018-08-20 16:39:36 +00:00
|
|
|
sendTestResponse("stackingOrder - " + effects.stackingOrder.length + " " + effects.stackingOrder[0].caption);
|
2018-07-23 21:52:58 +00:00
|
|
|
});
|
|
|
|
effects.windowClosed.connect(function(window) {
|
|
|
|
sendTestResponse("windowClosed - " + window.caption);
|
|
|
|
});
|
|
|
|
effects.windowMinimized.connect(function(window) {
|
|
|
|
sendTestResponse("windowMinimized - " + window.caption);
|
|
|
|
});
|
|
|
|
effects.windowUnminimized.connect(function(window) {
|
|
|
|
sendTestResponse("windowUnminimized - " + window.caption);
|
|
|
|
});
|
2023-02-03 20:04:43 +00:00
|
|
|
effects.desktopChanged.connect(function(old, current) {
|
2018-07-23 21:52:58 +00:00
|
|
|
sendTestResponse("desktopChanged - " + old + " " + current);
|
|
|
|
});
|