summaryrefslogtreecommitdiffstats
path: root/extensions/vertical-workspaces/util.js
blob: e0a625b2b48883a746152856bcb7771a2cf898e3 (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/**
 * Vertical Workspaces
 * util.js
 *
 * @author     GdH <G-dH@github.com>
 * @copyright  2022 - 2023
 * @license    GPL-3.0
 * 
 */

'use strict';

const Gi = imports._gi;
const { Shell, Meta } = imports.gi;

const Config = imports.misc.config;
const Main =  imports.ui.main;

const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();

var shellVersion = parseFloat(Config.PACKAGE_VERSION);

var Overrides = class {
    constructor() {
        this._overrides = {};
        this._injections = {};
    }

    addOverride(name, prototype, overrideList) {
        this._overrides[name] = {
            originals: this.overrideProto(prototype, overrideList),
            prototype,
        };
    }

    removeOverride(name) {
        const override = this._overrides[name];
        if (!override)
            return false;

        this.overrideProto(override.prototype, override.originals);
        this._overrides[name] = undefined;
        return true;
    }

    /*
    className.prototype
             .injections.funcName1
                        .funcName2
    */
    addInjection(className, prototype, injections) {
        if (!this._injections[className])
            this._injections[className] = {
                prototype,
                injections: {},
            };

        for (let name in injections) {
            this._injections[className].injections[name] = {
                original: this.injectToFunction(prototype, name, injections[name]),
            }
        }
    }

    removeInjection(className, funcName) {
        if (this._injections[className]) return false;
        const prototype = this._injections[className].prototype;

        const injection = this._injections[className].injections[funcName];
        if (!injection) return false;

        prototype[funcName] = injection.original;
        this._injections[funcName] = undefined;
        return true;
    }

    removeAll() {
        for (let name in this._overrides) {
            this.removeOverride(name);
            this._overrides[name] = undefined;
        }

        for (let className in this._injections) {
            const injt = this._injections[className];
            const prototype = injt.prototype;
            for (let funcName in injt.injections) {
                prototype[funcName] = injt.injections[funcName].original;
            }
            this._injections[className] = undefined;
        }
    }

    hookVfunc(proto, symbol, func) {
        proto[Gi.hook_up_vfunc_symbol](symbol, func);
    }

    overrideProto(proto, overrides) {
        const backup = {};

        for (let symbol in overrides) {
            if (symbol.startsWith('after_')) {
                const actualSymbol = symbol.slice('after_'.length);
                const fn = proto[actualSymbol];
                const afterFn = overrides[symbol]
                proto[actualSymbol] = function() {
                    const args = Array.prototype.slice.call(arguments);
                    const res = fn.apply(this, args);
                    afterFn.apply(this, args);
                    return res;
                };
                backup[actualSymbol] = fn;
            }
            else {
                backup[symbol] = proto[symbol];
                if (symbol.startsWith('vfunc')) {
                    if (shellVersion < 42) {
                        this.hookVfunc(proto, symbol.slice(6), overrides[symbol]);
                    } else {
                        this.hookVfunc(proto[Gi.gobject_prototype_symbol], symbol.slice(6), overrides[symbol]);
                    }
                }
                else {
                    proto[symbol] = overrides[symbol];
                }
            }
        }
        return backup;
    }

    injectToFunction(parent, name, func) {
        let origin = parent[name];
        parent[name] = function() {
            let ret;
            ret = origin.apply(this, arguments);
            func.apply(this, arguments);
            return ret;
        }

        return origin;
    }
}

//------- Common functions -----------------------------------------------------------------------

function getOverviewTranslations(opt, dash, tmbBox, searchEntryBin) {
    //const tmbBox = Main.overview._overview._controls._thumbnailsBox;
    let searchTranslation_y = 0;
    if (searchEntryBin.visible) {
        const offset = (dash.visible && (!opt.DASH_VERTICAL ? dash.height + 12 : 0))
            + (opt.WS_TMB_TOP ? tmbBox.height + 12 : 0);
        searchTranslation_y = - searchEntryBin.height - offset - 30;
    }

    let tmbTranslation_x = 0;
    let tmbTranslation_y = 0;
    let offset;
    if (tmbBox.visible) {
        switch (opt.WS_TMB_POSITION) {
            case 3: // left
                offset = 10 + ((dash?.visible && opt.DASH_LEFT) ? dash.width : 0);
                tmbTranslation_x = - tmbBox.width - offset;
                tmbTranslation_y = 0;
                break;
            case 1: // right
                offset = 10 + ((dash?.visible && opt.DASH_RIGHT) ? dash.width : 0);
                tmbTranslation_x = tmbBox.width + offset;
                tmbTranslation_y = 0;
                break;
            case 0: // top
                offset = 10 + ((dash?.visible && opt.DASH_TOP) ? dash.height : 0) + Main.panel.height;
                tmbTranslation_x = 0;
                tmbTranslation_y = - tmbBox.height - offset;
                break;
            case 2: // bottom
                offset = 10 + ((dash?.visible && opt.DASH_BOTTOM) ? dash.height : 0) + Main.panel.height;  // just for case the panel is at bottom
                tmbTranslation_x = 0;
                tmbTranslation_y = tmbBox.height + offset;
                break;
        }
    }

    let dashTranslation_x = 0;
    let dashTranslation_y = 0;
    let position = opt.DASH_POSITION;
    // if DtD replaced the original Dash, read its position
    if (dashIsDashToDock()) {
        position = dash._position;
    }
    if (dash?.visible) {
        switch (position) {
            case 0: // top
                dashTranslation_x = 0;
                dashTranslation_y = - dash.height - dash.margin_bottom - Main.panel.height;
                break;
            case 1: // right
                dashTranslation_x = dash.width;
                dashTranslation_y = 0;
                break;
            case 2: // bottom
                dashTranslation_x = 0;
                dashTranslation_y = dash.height + dash.margin_bottom + Main.panel.height;
                break;
            case 3: // left
                dashTranslation_x = - dash.width;
                dashTranslation_y = 0;
                break;
        }
    }

    return [tmbTranslation_x, tmbTranslation_y, dashTranslation_x, dashTranslation_y, searchTranslation_y];
}

function openPreferences() {
    const windows = global.display.get_tab_list(Meta.TabList.NORMAL_ALL, null);
    let tracker = Shell.WindowTracker.get_default();
    let metaWin, isVW = null;

    for (let win of windows) {
        const app = tracker.get_window_app(win);
        if (win.get_title().includes(Me.metadata.name) && app.get_name() === 'Extensions') {
            // this is our existing window
            metaWin = win;
            isVW = true;
            break;
        } else if (win.wm_class.includes('org.gnome.Shell.Extensions')) {
            // this is prefs window of another extension
            metaWin = win;
            isVW = false;
        }
    }

    if (metaWin && !isVW) {
        // other prefs window blocks opening another prefs window, so close it
        metaWin.delete(global.get_current_time());
    } else if (metaWin && isVW) {
        // if prefs window already exist, move it to the current WS and activate it
        metaWin.change_workspace(global.workspace_manager.get_active_workspace());
        metaWin.activate(global.get_current_time());
    }

    if (!metaWin || (metaWin && !isVW)) {
        try {
            Main.extensionManager.openExtensionPrefs(Me.metadata.uuid, '', {});
        } catch (e) {
            log(e);
        }
    }
}

function activateSearchProvider(prefix = '') {
    const searchEntry = Main.overview.searchEntry;
    if (!searchEntry.get_text() || !searchEntry.get_text().startsWith(prefix)) {
        prefix = _(prefix + ' ');
        const position = prefix.length;
        searchEntry.set_text(prefix);
        searchEntry.get_first_child().set_cursor_position(position);
        searchEntry.get_first_child().set_selection(position, position);
    } else {
        searchEntry.set_text('');
    }
}

function dashNotDefault() {
    return Main.overview.dash !== Main.overview._overview._controls.layoutManager._dash;
}

function dashIsDashToDock() {
    return Main.overview.dash._isHorizontal !== undefined;
}