From f4b88aac04775c3637382f8b997d6502c194dee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 13 Jun 2020 13:26:09 +0200 Subject: [PATCH] overviewControls: Add shortcut for shifting through overview This is the same as the vertical swipe gesture, but for keyboard junkies: Analoguous to the left/right shortcuts for switching between workspaces, add up/down to shift between session, window picker and app grid. Part-of: --- data/org.gnome.shell.gschema.xml.in | 14 ++++++++++ js/ui/overviewControls.js | 40 +++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/data/org.gnome.shell.gschema.xml.in b/data/org.gnome.shell.gschema.xml.in index 90fce6c1e..1af4b09a4 100644 --- a/data/org.gnome.shell.gschema.xml.in +++ b/data/org.gnome.shell.gschema.xml.in @@ -135,6 +135,20 @@ Keybinding to open the application menu. + + ["<Super><Alt>Up"] + Keybinding to shift between overview states + + Keybinding to shift between session, window picker and app grid + + + + ["<Super><Alt>Down"] + Keybinding to shift between overview states + + Keybinding to shift between app grid, window picker and session + + ["<Super>a"] Keybinding to open the “Show Applications” view diff --git a/js/ui/overviewControls.js b/js/ui/overviewControls.js index 14f247b09..96d99403f 100644 --- a/js/ui/overviewControls.js +++ b/js/ui/overviewControls.js @@ -358,6 +358,18 @@ class ControlsManager extends St.Widget { Shell.ActionMode.NORMAL | Shell.ActionMode.OVERVIEW, this._toggleAppsPage.bind(this)); + Main.wm.addKeybinding('shift-overview-up', + new Gio.Settings({ schema_id: WindowManager.SHELL_KEYBINDINGS_SCHEMA }), + Meta.KeyBindingFlags.IGNORE_AUTOREPEAT, + Shell.ActionMode.NORMAL | Shell.ActionMode.OVERVIEW, + () => this._shiftState(Meta.MotionDirection.UP)); + + Main.wm.addKeybinding('shift-overview-down', + new Gio.Settings({ schema_id: WindowManager.SHELL_KEYBINDINGS_SCHEMA }), + Meta.KeyBindingFlags.IGNORE_AUTOREPEAT, + Shell.ActionMode.NORMAL | Shell.ActionMode.OVERVIEW, + () => this._shiftState(Meta.MotionDirection.DOWN)); + this.connect('destroy', this._onDestroy.bind(this)); this._update(); @@ -513,6 +525,34 @@ class ControlsManager extends St.Widget { } } + _shiftState(direction) { + let { currentState, finalState } = this._stateAdjustment.getStateTransitionParams(); + + if (direction === Meta.MotionDirection.DOWN) + finalState = Math.max(finalState - 1, ControlsState.HIDDEN); + else if (direction === Meta.MotionDirection.UP) + finalState = Math.min(finalState + 1, ControlsState.APP_GRID); + + if (finalState === currentState) + return; + + if (currentState === ControlsState.HIDDEN && + finalState === ControlsState.WINDOW_PICKER) { + Main.overview.show(); + } else if (finalState === ControlsState.HIDDEN) { + Main.overview.hide(); + } else { + this._stateAdjustment.ease(finalState, { + duration: SIDE_CONTROLS_ANIMATION_TIME, + mode: Clutter.AnimationMode.EASE_OUT_QUAD, + onComplete: () => { + this.dash.showAppsButton.checked = + finalState === ControlsState.APP_GRID; + }, + }); + } + } + _onDestroy() { global.workspace_manager.disconnect(this._nWorkspacesNotifyId); }