[gnome-shell/wip/re-search: 140/151] workspaceThumbnail: Add keyboard nav to ThumbnailsBox
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/re-search: 140/151] workspaceThumbnail: Add keyboard nav to ThumbnailsBox
- Date: Thu, 1 Nov 2012 17:00:19 +0000 (UTC)
commit b1e4d3335cae0c7cc37362da2a36443a4f4569f4
Author: Tanner Doshier <doshitan gmail com>
Date: Wed Aug 8 15:18:46 2012 -0500
workspaceThumbnail: Add keyboard nav to ThumbnailsBox
https://bugzilla.gnome.org/show_bug.cgi?id=682050
js/ui/workspaceThumbnail.js | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
---
diff --git a/js/ui/workspaceThumbnail.js b/js/ui/workspaceThumbnail.js
index 3a54320..8fde2b9 100644
--- a/js/ui/workspaceThumbnail.js
+++ b/js/ui/workspaceThumbnail.js
@@ -493,6 +493,7 @@ const ThumbnailsBox = new Lang.Class({
_init: function() {
this.actor = new Shell.GenericContainer({ reactive: true,
style_class: 'workspace-thumbnails',
+ can_focus: true,
request_mode: Clutter.RequestMode.WIDTH_FOR_HEIGHT });
this.actor.connect('get-preferred-width', Lang.bind(this, this._getPreferredWidth));
this.actor.connect('get-preferred-height', Lang.bind(this, this._getPreferredHeight));
@@ -545,6 +546,8 @@ const ThumbnailsBox = new Lang.Class({
this.actor.connect('button-release-event', Lang.bind(this, this._onButtonRelease));
this.actor.connect('scroll-event',
Lang.bind(this, this._onScrollEvent));
+ this.actor.connect('key-release-event',
+ Lang.bind(this, this._onKeyRelease));
Main.overview.connect('showing',
Lang.bind(this, this._createThumbnails));
@@ -1247,5 +1250,19 @@ const ThumbnailsBox = new Lang.Class({
Main.wm.actionMoveWorkspace(Meta.MotionDirection.DOWN);
break;
}
+ },
+
+ _onKeyRelease: function (actor, event) {
+ switch (event.get_key_symbol()) {
+ case Clutter.KEY_Up:
+ Main.wm.actionMoveWorkspace(Meta.MotionDirection.UP);
+ break;
+ case Clutter.KEY_Down:
+ Main.wm.actionMoveWorkspace(Meta.MotionDirection.DOWN);
+ break;
+ case Clutter.KEY_Return:
+ Main.overview.toggle();
+ break;
+ }
}
});
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]