[gnome-shell/wip/aggregate-menu: 3/48] status: Rebrand the user menu as the system menu



commit 8d9c03cd32a52110eb2ab0cf99135be728c4bdd1
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Wed May 22 14:46:47 2013 -0400

    status: Rebrand the user menu as the system menu
    
    As the user menu no longer really shows anything about the user, and just
    power menu and settings, it's not really deserving of the "user menu" name,
    so rename it to the ever-blandly-named "system menu".
    
    This is a part of the new system status design, see
    https://wiki.gnome.org/GnomeShell/Design/Guidelines/SystemStatus/
    for design details.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=704368

 js/Makefile.am                          |    2 +-
 js/ui/panel.js                          |    2 +-
 js/ui/sessionMode.js                    |    6 +++---
 js/ui/{userMenu.js => status/system.js} |    6 +++---
 4 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/js/Makefile.am b/js/Makefile.am
index 4216df8..556240f 100644
--- a/js/Makefile.am
+++ b/js/Makefile.am
@@ -95,10 +95,10 @@ nobase_dist_js_DATA =       \
        ui/status/power.js      \
        ui/status/volume.js     \
        ui/status/bluetooth.js  \
+       ui/status/system.js     \
        ui/switcherPopup.js     \
        ui/tweener.js           \
        ui/unlockDialog.js      \
-       ui/userMenu.js          \
        ui/userWidget.js        \
        ui/viewSelector.js      \
        ui/wanda.js             \
diff --git a/js/ui/panel.js b/js/ui/panel.js
index 795775f..1eca2b3 100644
--- a/js/ui/panel.js
+++ b/js/ui/panel.js
@@ -857,7 +857,7 @@ const PANEL_ITEM_IMPLEMENTATIONS = {
     'lockScreen': imports.ui.status.lockScreenMenu.Indicator,
     'keyboard': imports.ui.status.keyboard.InputSourceIndicator,
     'powerMenu': imports.gdm.powerMenu.PowerMenuButton,
-    'userMenu': imports.ui.userMenu.UserMenuButton
+    'system': imports.ui.status.system.Indicator,
 };
 
 if (Config.HAVE_BLUETOOTH)
diff --git a/js/ui/sessionMode.js b/js/ui/sessionMode.js
index 4c849ab..035739c 100644
--- a/js/ui/sessionMode.js
+++ b/js/ui/sessionMode.js
@@ -60,7 +60,7 @@ const _modes = {
         unlockDialog: undefined,
         components: ['polkitAgent', 'telepathyClient'],
         panel: {
-            left: ['userMenu'],
+            left: [],
             center: [],
             right: ['lockScreen']
         },
@@ -72,7 +72,7 @@ const _modes = {
         unlockDialog: undefined,
         components: ['polkitAgent', 'telepathyClient'],
         panel: {
-            left: ['userMenu'],
+            left: [],
             center: [],
             right: ['a11y', 'keyboard', 'lockScreen']
         },
@@ -97,7 +97,7 @@ const _modes = {
             left: ['activities', 'appMenu'],
             center: ['dateMenu'],
             right: ['a11y', 'keyboard', 'volume', 'bluetooth',
-                    'network', 'battery', 'userMenu']
+                    'network', 'battery', 'system']
         }
     }
 };
diff --git a/js/ui/userMenu.js b/js/ui/status/system.js
similarity index 99%
rename from js/ui/userMenu.js
rename to js/ui/status/system.js
index 66173d5..6a5e43d 100644
--- a/js/ui/userMenu.js
+++ b/js/ui/status/system.js
@@ -39,12 +39,12 @@ const SystemdLoginSessionIface = <interface name='org.freedesktop.login1.Session
 
 const SystemdLoginSession = Gio.DBusProxy.makeProxyWrapper(SystemdLoginSessionIface);
 
-const UserMenuButton = new Lang.Class({
-    Name: 'UserMenuButton',
+const Indicator = new Lang.Class({
+    Name: 'SystemIndicator',
     Extends: PanelMenu.SystemStatusButton,
 
     _init: function() {
-        this.parent('user-available-symbolic', _("User Menu"));
+        this.parent('system-shutdown-symbolic', _("System"));
 
         this._screenSaverSettings = new Gio.Settings({ schema: SCREENSAVER_SCHEMA });
         this._lockdownSettings = new Gio.Settings({ schema: LOCKDOWN_SCHEMA });


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]