diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 06:16:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 06:19:57 +0000 |
commit | c12d383974530ff928699dd98b424824bf21962d (patch) | |
tree | b3304eeafe0342bfe58827e9507443c5dde167e0 /extensions/45/vertical-workspaces/lib/overview.js | |
parent | Releasing debian version 20231210-2. (diff) | |
download | gnome-shell-extensions-extra-c12d383974530ff928699dd98b424824bf21962d.tar.xz gnome-shell-extensions-extra-c12d383974530ff928699dd98b424824bf21962d.zip |
Merging upstream version 20240414 (Closes: #1067433).
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'extensions/45/vertical-workspaces/lib/overview.js')
-rw-r--r-- | extensions/45/vertical-workspaces/lib/overview.js | 162 |
1 files changed, 0 insertions, 162 deletions
diff --git a/extensions/45/vertical-workspaces/lib/overview.js b/extensions/45/vertical-workspaces/lib/overview.js deleted file mode 100644 index 449e9c8..0000000 --- a/extensions/45/vertical-workspaces/lib/overview.js +++ /dev/null @@ -1,162 +0,0 @@ -/** - * V-Shell (Vertical Workspaces) - * overview.js - * - * @author GdH <G-dH@github.com> - * @copyright 2022 - 2023 - * @license GPL-3.0 - * - */ - -'use strict'; - -import * as Main from 'resource:///org/gnome/shell/ui/main.js'; -import * as Overview from 'resource:///org/gnome/shell/ui/overview.js'; -import * as OverviewControls from 'resource:///org/gnome/shell/ui/overviewControls.js'; - -let Me; -let opt; - -export const OverviewModule = class { - constructor(me) { - Me = me; - opt = Me.opt; - - this._firstActivation = true; - this.moduleEnabled = false; - this._overrides = null; - } - - cleanGlobals() { - Me = null; - opt = null; - } - - update(reset) { - this.moduleEnabled = true; - const conflict = false; - - reset = reset || !this.moduleEnabled || conflict; - - // don't touch the original code if module disabled - if (reset && !this._firstActivation) { - this._disableModule(); - } else if (!reset) { - this._firstActivation = false; - this._activateModule(); - } - if (reset && this._firstActivation) - console.debug(' OverviewModule - Keeping untouched'); - } - - _activateModule() { - if (!this._overrides) - this._overrides = new Me.Util.Overrides(); - - this._overrides.addOverride('Overview', Overview.Overview.prototype, OverviewCommon); - console.debug(' OverviewModule - Activated'); - } - - _disableModule() { - if (this._overrides) - this._overrides.removeAll(); - this._overrides = null; - - console.debug(' OverviewModule - Disabled'); - } -}; - -const OverviewCommon = { - show(state = OverviewControls.ControlsState.WINDOW_PICKER, customOverviewMode) { - if (!customOverviewMode) - this.resetOverviewMode(); - - if (state === OverviewControls.ControlsState.HIDDEN) - throw new Error('Invalid state, use hide() to hide'); - - if (this.isDummy) - return; - if (this._shown) - return; - this._shown = true; - - if (!this._syncGrab()) - return; - - Main.layoutManager.showOverview(); - this._animateVisible(state); - }, - - toggle(customOverviewMode) { - if (this.isDummy) - return; - - if (this._visible) - this.hide(); - else - this.show(OverviewControls.ControlsState.WINDOW_PICKER, customOverviewMode); - }, - - resetOverviewMode() { - // reset Overview Mode do default - opt.OVERVIEW_MODE = opt.get('overviewMode'); - opt.OVERVIEW_MODE2 = opt.OVERVIEW_MODE === 2; - opt.WORKSPACE_MODE = opt.OVERVIEW_MODE > 0 ? 0 : 1; - }, - - _showDone() { - this._animationInProgress = false; - this._coverPane.hide(); - - if (this._shownState !== 'SHOWN') - this._changeShownState('SHOWN'); - - // Handle any calls to hide* while we were showing - if (!this._shown) - this._animateNotVisible(); - - // if user activates overview during startup animation, transition needs to be shifted to the state 2 here - const controls = this._overview._controls; - if (controls._searchController._searchActive && controls._stateAdjustment.value === 1) { - if (opt.SEARCH_VIEW_ANIMATION) - controls._onSearchChanged(); - else if (!opt.OVERVIEW_MODE2) - controls._stateAdjustment.value = 2; - } - - this._syncGrab(); - }, - - // Workaround - should probably be fixed elsewhere in the upstream code - // If a new window is opened from the overview - // and is realized before the overview animation is complete, - // the new window will not get focus - after__hideDone() { - if (!opt.FIX_NEW_WINDOW_FOCUS) - return; - - const workspace = global.workspace_manager.get_active_workspace(); - const recentDesktopWin = global.display.get_tab_list(1, workspace)[0]; - let recentNormalWin = null; - const tabList = global.display.get_tab_list(0, workspace); - - for (let i = 0; i < tabList.length; i++) { - if (tabList[i].minimized === false) { - recentNormalWin = tabList[i]; - break; - } - } - - let recentWin = recentNormalWin; - if (recentNormalWin && recentDesktopWin) { - recentWin = recentNormalWin.get_user_time() > recentDesktopWin.get_user_time() - ? recentNormalWin - : recentDesktopWin; - } - - const focusedWin = global.display.focus_window; - - if (recentWin && focusedWin !== recentWin) - recentWin.activate(global.get_current_time()); - }, -}; |