[gnome-shell-extensions] window-list: Set appropriate label-actors on buttons
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell-extensions] window-list: Set appropriate label-actors on buttons
- Date: Mon, 21 Sep 2015 20:40:10 +0000 (UTC)
commit c23580bd563c89743c6d1200a17b4aa4de317e71
Author: Florian Müllner <fmuellner gnome org>
Date: Fri Sep 18 16:26:31 2015 +0200
window-list: Set appropriate label-actors on buttons
Independent from the grouping mode, the window-list currently shows
up as a series of "push buttons" in screen readers, which is obviously
not useful, so point to the correct labels.
https://bugzilla.gnome.org/show_bug.cgi?id=755223
extensions/window-list/extension.js | 18 ++++++++++++------
1 files changed, 12 insertions(+), 6 deletions(-)
---
diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js
index 9426fc1..bdd4680 100644
--- a/extensions/window-list/extension.js
+++ b/extensions/window-list/extension.js
@@ -145,8 +145,8 @@ const WindowTitle = new Lang.Class({
this._icon = new St.Bin({ style_class: 'window-button-icon' });
this.actor.add(this._icon);
- this._label = new St.Label({ y_align: Clutter.ActorAlign.CENTER });
- this.actor.add(this._label);
+ this.label_actor = new St.Label({ y_align: Clutter.ActorAlign.CENTER });
+ this.actor.add(this.label_actor);
this._textureCache = St.TextureCache.get_default();
this._iconThemeChangedId =
@@ -175,9 +175,9 @@ const WindowTitle = new Lang.Class({
return;
if (this._metaWindow.minimized)
- this._label.text = '[%s]'.format(this._metaWindow.title);
+ this.label_actor.text = '[%s]'.format(this._metaWindow.title);
else
- this._label.text = this._metaWindow.title;
+ this.label_actor.text = this._metaWindow.title;
},
_updateIcon: function() {
@@ -326,6 +326,7 @@ const WindowButton = new Lang.Class({
this._windowTitle = new WindowTitle(this.metaWindow);
this.actor.set_child(this._windowTitle.actor);
+ this.actor.label_actor = this._windowTitle.label_actor;
this._contextMenu = new WindowContextMenu(this.actor, this.metaWindow);
this._contextMenu.connect('open-state-changed', _onMenuStateChanged);
@@ -486,8 +487,11 @@ const AppButton = new Lang.Class({
this._icon = new St.Bin({ style_class: 'window-button-icon',
child: app.create_icon_texture(ICON_TEXTURE_SIZE) });
this._multiWindowTitle.add(this._icon);
- this._multiWindowTitle.add(new St.Label({ text: app.get_name(),
- y_align: Clutter.ActorAlign.CENTER }));
+
+ let label = new St.Label({ text: app.get_name(),
+ y_align: Clutter.ActorAlign.CENTER });
+ this._multiWindowTitle.add(label);
+ this._multiWindowTitle.label_actor = label;
this._menuManager = new PopupMenu.PopupMenuManager(this);
this._menu = new PopupMenu.PopupMenu(this.actor, 0.5, St.Side.BOTTOM);
@@ -578,6 +582,7 @@ const AppButton = new Lang.Class({
}
this._contextMenuManager.removeMenu(this._appContextMenu);
this._contextMenu = this._windowContextMenu;
+ this.actor.label_actor = this._windowTitle.label_actor;
} else {
if (this._windowTitle) {
this.metaWindow = null;
@@ -588,6 +593,7 @@ const AppButton = new Lang.Class({
}
this._contextMenu = this._appContextMenu;
this._contextMenuManager.addMenu(this._appContextMenu);
+ this.actor.label_actor = this._multiWindowTitle.label_actor;
}
},
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]