-
Notifications
You must be signed in to change notification settings - Fork 15
/
extension.js
66 lines (54 loc) · 1.92 KB
/
extension.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright (C) 2021 Taiki Sugawara
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
const { Clutter, Meta } = imports.gi;
const Main = imports.ui.main;
class Extension {
constructor() {
this.origMethods = {
"Main.activateWindow": Main.activateWindow
};
Main.activateWindow = (window, ...args) => {
this.movePointerMaybe(window);
this.origMethods["Main.activateWindow"](window, ...args);
};
const seat = Clutter.get_default_backend().get_default_seat();
this.vdevice = seat.create_virtual_device(
Clutter.InputDeviceType.POINTER_DEVICE
);
}
destroy() {
Main.activateWindow = this.origMethods["Main.activateWindow"];
}
movePointerMaybe(window) {
if (!this.pointerAlreadyOnWindow(window)) {
const rect = window.get_frame_rect();
const x = rect.x + rect.width / 2;
const y = rect.y + rect.height / 2;
this.vdevice.notify_absolute_motion(global.get_current_time(), x, y);
}
}
pointerAlreadyOnWindow(window) {
const [x, y] = global.get_pointer();
const rect = new Meta.Rectangle({ x, y, width: 1, height: 1 });
return rect.intersect(window.get_frame_rect())[0];
}
}
let extension = null;
/* exported enable */
function enable() {
extension = new Extension();
}
/* exported disable */
function disable() {
extension.destroy();
extension = null;
}