1238c7bc47
stackingOrder is an interesting property which needed special handling in the port. Add an explicit test. Test Plan: #kwin Reviewers: broulik Reviewed By: broulik Subscribers: zzag, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D14533
16 lines
705 B
JavaScript
16 lines
705 B
JavaScript
effects.windowAdded.connect(function(window) {
|
|
sendTestResponse("windowAdded - " + window.caption);
|
|
sendTestResponse("stackingOrder - " + effects.stackingOrder.length + " " + effects.stackingOrder[0].caption);
|
|
});
|
|
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);
|
|
});
|
|
effects['desktopChanged(int,int)'].connect(function(old, current) {
|
|
sendTestResponse("desktopChanged - " + old + " " + current);
|
|
});
|