summaryrefslogtreecommitdiffstats
path: root/extensions/vertical-workspaces/lib/windowAttentionHandler.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-12-10 13:32:02 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-12-10 13:32:02 +0000
commit9969d17a688d6d8e1764d7242fd4c8b838ec2228 (patch)
tree010ad3d1857c611930d8086909451a5120ad978f /extensions/vertical-workspaces/lib/windowAttentionHandler.js
parentAdding upstream version 20230618. (diff)
downloadgnome-shell-extensions-extra-upstream/20231210.tar.xz
gnome-shell-extensions-extra-upstream/20231210.zip
Adding upstream version 20231210.upstream/20231210
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'extensions/vertical-workspaces/lib/windowAttentionHandler.js')
-rw-r--r--extensions/vertical-workspaces/lib/windowAttentionHandler.js90
1 files changed, 0 insertions, 90 deletions
diff --git a/extensions/vertical-workspaces/lib/windowAttentionHandler.js b/extensions/vertical-workspaces/lib/windowAttentionHandler.js
deleted file mode 100644
index 10703c2..0000000
--- a/extensions/vertical-workspaces/lib/windowAttentionHandler.js
+++ /dev/null
@@ -1,90 +0,0 @@
-/**
- * V-Shell (Vertical Workspaces)
- * windowAttentionHandler.js
- *
- * @author GdH <G-dH@github.com>
- * @copyright 2022 - 2023
- * @license GPL-3.0
- *
- */
-
-'use strict';
-
-const Main = imports.ui.main;
-const WindowAttentionHandler = imports.ui.windowAttentionHandler;
-const MessageTray = imports.ui.messageTray;
-const ExtensionUtils = imports.misc.extensionUtils;
-const Me = ExtensionUtils.getCurrentExtension();
-
-const _Util = Me.imports.lib.util;
-
-let opt;
-let _firstRun = false;
-
-function update(reset = false) {
- opt = Me.imports.lib.settings.opt;
- const moduleEnabled = opt.get('winAttentionHandlerModule', true);
- reset = reset || !moduleEnabled;
-
- if (_firstRun && reset)
- return;
-
- _firstRun = false;
- if (reset) {
- reset = true;
- _updateConnections(reset);
- opt = null;
- return;
- }
-
- _updateConnections();
-}
-
-function _updateConnections(reset) {
- global.display.disconnectObject(Main.windowAttentionHandler);
-
- const handlerFnc = reset
- ? Main.windowAttentionHandler._onWindowDemandsAttention
- : WindowAttentionHandlerCommon._onWindowDemandsAttention;
-
- global.display.connectObject(
- 'window-demands-attention', handlerFnc.bind(Main.windowAttentionHandler),
- 'window-marked-urgent', handlerFnc.bind(Main.windowAttentionHandler),
- Main.windowAttentionHandler);
-}
-
-const WindowAttentionHandlerCommon = {
- _onWindowDemandsAttention(display, window) {
- // Deny attention notifications if the App Grid is open, to avoid notification spree when opening a folder
- if (Main.overview._shown && Main.overview.dash.showAppsButton.checked) {
- return;
- } else if (opt.WINDOW_ATTENTION_FOCUS_IMMEDIATELY) {
- if (!Main.overview._shown)
- Main.activateWindow(window);
- return;
- }
-
- const app = this._tracker.get_window_app(window);
- const source = new WindowAttentionHandler.WindowAttentionSource(app, window);
- Main.messageTray.add(source);
-
- let [title, banner] = this._getTitleAndBanner(app, window);
-
- const notification = new MessageTray.Notification(source, title, banner);
- notification.connect('activated', () => {
- source.open();
- });
- notification.setForFeedback(true);
-
- if (opt.WINDOW_ATTENTION_DISABLE_NOTIFICATIONS)
- // just push the notification to the message tray without showing notification
- source.pushNotification(notification);
- else
- source.showNotification(notification);
-
- window.connectObject('notify::title', () => {
- [title, banner] = this._getTitleAndBanner(app, window);
- notification.update(title, banner);
- }, source);
- },
-};