[gnome-shell/wip/aggregate-menu: 54/59] status: Port to a new SystemIndicator framework
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/aggregate-menu: 54/59] status: Port to a new SystemIndicator framework
- Date: Mon, 24 Jun 2013 20:06:09 +0000 (UTC)
commit 56238aa0486e62586ed6e99a5700b23a864e8e4b
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Thu Jun 6 17:27:25 2013 -0400
status: Port to a new SystemIndicator framework
We can't silently replace the old behavior of separate status
icons into a new system. Replace SystemStatusButton with a new
SystemIndicator class which will allow for the flexibility we
need. For now, make it a subclass of Button so that it mostly
feels the same, but we'll soon be swapping it out with a dummy
implementation that the aggregate menu will use.
I think the code cleanup here is worth it.
data/theme/gnome-shell.css | 2 +-
js/gdm/powerMenu.js | 2 +-
js/ui/panelMenu.js | 48 ++++++++++-----------------------------
js/ui/status/bluetooth.js | 10 +++++---
js/ui/status/lockScreenMenu.js | 10 ++++----
js/ui/status/network.js | 24 +++++++++----------
js/ui/status/power.js | 16 ++++++------
js/ui/status/system.js | 6 +++-
js/ui/status/volume.js | 17 ++++++++++----
9 files changed, 61 insertions(+), 74 deletions(-)
---
diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css
index d8a297c..bd53935 100644
--- a/data/theme/gnome-shell.css
+++ b/data/theme/gnome-shell.css
@@ -616,7 +616,7 @@ StScrollBar StButton#vhandle:active {
-boxpointer-gap: 4px;
}
-.panel-status-button-box,
+.panel-status-indicators-box,
.panel-status-menu-box {
spacing: 4px;
}
diff --git a/js/gdm/powerMenu.js b/js/gdm/powerMenu.js
index a341619..487c1c6 100644
--- a/js/gdm/powerMenu.js
+++ b/js/gdm/powerMenu.js
@@ -29,7 +29,7 @@ const PopupMenu = imports.ui.popupMenu;
const PowerMenuButton = new Lang.Class({
Name: 'PowerMenuButton',
- Extends: PanelMenu.SystemStatusButton,
+ Extends: PanelMenu.SystemIndicator,
_init: function() {
/* Translators: accessible name of the power menu in the login screen */
diff --git a/js/ui/panelMenu.js b/js/ui/panelMenu.js
index b73152e..a27b328 100644
--- a/js/ui/panelMenu.js
+++ b/js/ui/panelMenu.js
@@ -224,51 +224,29 @@ const Button = new Lang.Class({
});
Signals.addSignalMethods(Button.prototype);
-/* SystemStatusButton:
+/* SystemIndicator:
*
- * This class manages one System Status indicator (network, keyboard,
- * volume, bluetooth...), which is just a PanelMenuButton with an
- * icon.
+ * This class manages one system indicator, which are the icons
+ * that you see at the top right. A system indicator is composed
+ * of an icon and a menu section, which will be composed into the
+ * aggregate menu.
*/
-const SystemStatusButton = new Lang.Class({
- Name: 'SystemStatusButton',
+const SystemIndicator = new Lang.Class({
+ Name: 'SystemIndicator',
Extends: Button,
- _init: function(iconName, nameText) {
- this.parent(0.0, nameText);
+ _init: function() {
+ this.parent(0.0);
this.actor.add_style_class_name('panel-status-button');
- this._box = new St.BoxLayout({ style_class: 'panel-status-button-box' });
- this.actor.add_actor(this._box);
-
- if (iconName)
- this.setIcon(iconName);
- },
-
- get icons() {
- return this._box.get_children();
+ this.indicators = new St.BoxLayout({ style_class: 'panel-status-indicators-box' });
+ this.actor.add_actor(this.indicators);
},
- addIcon: function(gicon) {
+ addIndicator: function(gicon) {
let icon = new St.Icon({ gicon: gicon,
style_class: 'system-status-icon' });
- this._box.add_actor(icon);
-
- this.emit('icons-changed');
-
+ this.indicators.add_actor(icon);
return icon;
- },
-
- setIcon: function(iconName) {
- if (!this.mainIcon)
- this.mainIcon = this.addIcon(null);
- this.mainIcon.icon_name = iconName;
- },
-
- setGIcon: function(gicon) {
- if (this.mainIcon)
- this.mainIcon.gicon = gicon;
- else
- this.mainIcon = this.addIcon(gicon);
}
});
diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js
index aa7505c..a7c9646 100644
--- a/js/ui/status/bluetooth.js
+++ b/js/ui/status/bluetooth.js
@@ -22,10 +22,12 @@ const ConnectionState = {
const Indicator = new Lang.Class({
Name: 'BTIndicator',
- Extends: PanelMenu.SystemStatusButton,
+ Extends: PanelMenu.SystemIndicator,
_init: function() {
- this.parent('bluetooth-disabled-symbolic', _("Bluetooth"));
+ this.parent();
+
+ this._indicator = this.addIndicator(null);
this._applet = new GnomeBluetoothApplet.Applet();
@@ -106,10 +108,10 @@ const Indicator = new Lang.Class({
if (on) {
this._discoverable.actor.show();
- this.setIcon('bluetooth-active-symbolic');
+ this._indicator.icon_name = 'bluetooth-active-symbolic';
} else {
this._discoverable.actor.hide();
- this.setIcon('bluetooth-disabled-symbolic');
+ this._indicator.icon_name = 'bluetooth-disabled-symbolic';
}
},
diff --git a/js/ui/status/lockScreenMenu.js b/js/ui/status/lockScreenMenu.js
index e9ee6fd..a735ae8 100644
--- a/js/ui/status/lockScreenMenu.js
+++ b/js/ui/status/lockScreenMenu.js
@@ -37,26 +37,26 @@ const FakeStatusIcon = new Lang.Class({
const Indicator = new Lang.Class({
Name: 'LockScreenMenuIndicator',
- Extends: PanelMenu.SystemStatusButton,
+ Extends: PanelMenu.SystemIndicator,
_init: function() {
this.parent(null, _("Volume, network, battery"));
- this._box.style_class = 'lock-screen-status-button-box';
+ this.indicators.style_class = 'lock-screen-status-button-box';
this._volumeControl = VolumeMenu.getMixerControl();
this._volumeMenu = new VolumeMenu.VolumeMenu(this._volumeControl);
this.menu.addMenuItem(this._volumeMenu);
this._volume = new FakeStatusIcon(Main.panel.statusArea.volume);
- this._box.add_child(this._volume.actor);
+ this.indicators.add_child(this._volume.actor);
// Network may not exist if the user doesn't have NetworkManager
if (Main.panel.statusArea.network) {
this._network = new FakeStatusIcon(Main.panel.statusArea.network);
- this._box.add_child(this._network.actor);
+ this.indicators.add_child(this._network.actor);
}
this._battery = new FakeStatusIcon(Main.panel.statusArea.battery);
- this._box.add_child(this._battery.actor);
+ this.indicators.add_child(this._battery.actor);
}
});
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index 451a13e..8621aba 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -1141,12 +1141,13 @@ Signals.addSignalMethods(NMVPNSection.prototype);
const NMApplet = new Lang.Class({
Name: 'NMApplet',
- Extends: PanelMenu.SystemStatusButton,
+ Extends: PanelMenu.SystemIndicator,
_init: function() {
- this.parent('network-offline-symbolic', _('Network'));
+ this.parent();
- this._vpnIcon = this.addIcon(null);
+ this._primaryIndicator = this.addIndicator(null);
+ this._vpnIndicator = this.addIndicator(null);
// Device types
this._dtypes = { };
@@ -1558,31 +1559,28 @@ const NMApplet = new Lang.Class({
},
_syncNMState: function() {
- this.mainIcon.visible = this._client.manager_running;
- this.actor.visible = this.mainIcon.visible;
-
this._updateIcon();
+ this.indicators.visible = this._client.manager_running;
this._section.actor.visible = this._client.networking_enabled;
},
_updateIcon: function() {
this._syncActiveConnections();
- let hasApIcon = false;
- let hasMobileIcon = false;
+ let mc = this._mainConnection;
- if (!this._client.networking_enabled || !this._mainConnection) {
- this.setIcon('network-offline-symbolic');
+ if (!this._client.networking_enabled || !mc) {
+ this._primaryIndicator.icon_name = 'network-offline-symbolic';
} else {
let dev = this._mainConnection._primaryDevice;
if (!dev) {
log('Active connection with no primary device?');
return;
}
- this.setIcon(dev.getIndicatorIcon());
+ this._primaryIndicator.icon_name = dev.getIndicatorIcon(mc);
}
- this._vpnIcon.icon_name = this._vpnSection.getIndicatorIcon();
- this._vpnIcon.visible = (this._vpnIcon.icon_name != '');
+ this._vpnIndicator.icon_name = this._vpnSection.getIndicatorIcon();
+ this._vpnIndicator.visible = (this._vpnIndicator.icon_name != '');
}
});
diff --git a/js/ui/status/power.js b/js/ui/status/power.js
index e5964dc..e38afd3 100644
--- a/js/ui/status/power.js
+++ b/js/ui/status/power.js
@@ -27,10 +27,12 @@ const PowerManagerProxy = Gio.DBusProxy.makeProxyWrapper(PowerManagerInterface);
const Indicator = new Lang.Class({
Name: 'PowerIndicator',
- Extends: PanelMenu.SystemStatusButton,
+ Extends: PanelMenu.SystemIndicator,
_init: function() {
- this.parent('battery-missing-symbolic', _("Battery"));
+ this.parent();
+
+ this._primaryIndicator = this.addIndicator(null);
this._proxy = new PowerManagerProxy(Gio.DBus.session, BUS_NAME, OBJECT_PATH,
Lang.bind(this, function(proxy, error) {
@@ -118,16 +120,14 @@ const Indicator = new Lang.Class({
_syncIcon: function() {
let icon = this._proxy.Icon;
- let hasIcon = false;
-
if (icon) {
let gicon = Gio.icon_new_for_string(icon);
- this.setGIcon(gicon);
+ this._primaryIndicator.gicon = gicon;
+ this._primaryIndicator.show();
this._batteryItem.icon.gicon = gicon;
- hasIcon = true;
+ } else {
+ this._primaryIndicator.hide();
}
- this.mainIcon.visible = hasIcon;
- this.actor.visible = hasIcon;
},
_syncAirplaneMode: function() {
diff --git a/js/ui/status/system.js b/js/ui/status/system.js
index 495257f..ca67f36 100644
--- a/js/ui/status/system.js
+++ b/js/ui/status/system.js
@@ -42,10 +42,12 @@ const SystemdLoginSession = Gio.DBusProxy.makeProxyWrapper(SystemdLoginSessionIf
const Indicator = new Lang.Class({
Name: 'SystemIndicator',
- Extends: PanelMenu.SystemStatusButton,
+ Extends: PanelMenu.SystemIndicator,
_init: function() {
- this.parent('system-shutdown-symbolic', _("System"));
+ this.parent();
+
+ this._primaryIndicator = this.addIndicator(new Gio.ThemedIcon({ name: 'system-shutdown-symbolic' }));
this._screenSaverSettings = new Gio.Settings({ schema: SCREENSAVER_SCHEMA });
this._lockdownSettings = new Gio.Settings({ schema: LOCKDOWN_SCHEMA });
diff --git a/js/ui/status/volume.js b/js/ui/status/volume.js
index 7e04c54..8eb68a0 100644
--- a/js/ui/status/volume.js
+++ b/js/ui/status/volume.js
@@ -296,22 +296,29 @@ const VolumeMenu = new Lang.Class({
const Indicator = new Lang.Class({
Name: 'VolumeIndicator',
- Extends: PanelMenu.SystemStatusButton,
+ Extends: PanelMenu.SystemIndicator,
_init: function() {
- this.parent('audio-volume-muted-symbolic', _("Volume"));
+ this.parent();
+
+ this._primaryIndicator = this.addIndicator(null);
this._control = getMixerControl();
this._volumeMenu = new VolumeMenu(this._control);
this._volumeMenu.connect('icon-changed', Lang.bind(this, function(menu) {
let icon = this._volumeMenu.getIcon();
- this.actor.visible = (icon != null);
- this.setIcon(icon);
+
+ if (icon != null) {
+ this.indicators.show();
+ this._primaryIndicator.icon_name = icon;
+ } else {
+ this.indicators.hide();
+ }
}));
this.menu.addMenuItem(this._volumeMenu);
- this.actor.connect('scroll-event', Lang.bind(this, this._onScrollEvent));
+ this.indicators.connect('scroll-event', Lang.bind(this, this._onScrollEvent));
},
_onScrollEvent: function(actor, event) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]