2011-09-28 09:16:26 -04:00
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
2009-11-10 12:13:58 -05:00
2011-05-10 10:13:05 -04:00
const AccountsService = imports . gi . AccountsService ;
2012-05-19 19:19:25 -04:00
const Gdm = imports . gi . Gdm ;
2011-03-21 08:51:46 -04:00
const Gio = imports . gi . Gio ;
2009-11-10 12:13:58 -05:00
const GLib = imports . gi . GLib ;
2013-02-11 11:39:29 -05:00
const Gtk = imports . gi . Gtk ;
2009-11-10 12:13:58 -05:00
const Lang = imports . lang ;
2011-08-23 13:15:31 -04:00
const Pango = imports . gi . Pango ;
2009-11-10 12:13:58 -05:00
const Shell = imports . gi . Shell ;
const St = imports . gi . St ;
2011-02-28 11:03:35 -05:00
const Tp = imports . gi . TelepathyGLib ;
2012-02-27 11:31:10 -05:00
const Atk = imports . gi . Atk ;
2013-02-11 11:39:29 -05:00
const Clutter = imports . gi . Clutter ;
2009-11-10 12:13:58 -05:00
2012-09-18 23:02:15 -04:00
const BoxPointer = imports . ui . boxpointer ;
2010-04-29 13:13:20 -04:00
const GnomeSession = imports . misc . gnomeSession ;
2012-10-19 11:41:10 -04:00
const LoginManager = imports . misc . loginManager ;
2010-06-03 19:21:08 -04:00
const Main = imports . ui . main ;
2013-02-11 11:39:29 -05:00
const ModalDialog = imports . ui . modalDialog ;
2010-06-22 17:02:26 -04:00
const PanelMenu = imports . ui . panelMenu ;
2010-05-20 11:18:46 -04:00
const PopupMenu = imports . ui . popupMenu ;
2010-11-17 11:43:08 -05:00
const Util = imports . misc . util ;
2013-04-23 22:31:08 -04:00
const UserWidget = imports . ui . userWidget ;
2009-11-10 12:13:58 -05:00
2011-03-21 08:51:46 -04:00
const LOCKDOWN _SCHEMA = 'org.gnome.desktop.lockdown' ;
2012-08-13 19:51:51 -04:00
const SCREENSAVER _SCHEMA = 'org.gnome.desktop.screensaver' ;
2013-01-15 03:30:43 -05:00
const PRIVACY _SCHEMA = 'org.gnome.desktop.privacy'
2011-03-21 08:51:46 -04:00
const DISABLE _USER _SWITCH _KEY = 'disable-user-switching' ;
const DISABLE _LOCK _SCREEN _KEY = 'disable-lock-screen' ;
const DISABLE _LOG _OUT _KEY = 'disable-log-out' ;
2012-10-29 00:27:18 -04:00
const ALWAYS _SHOW _LOG _OUT _KEY = 'always-show-log-out' ;
2013-01-15 03:30:43 -05:00
const SHOW _FULL _NAME _IN _TOP _BAR _KEY = 'show-full-name-in-top-bar' ;
2011-03-21 08:51:46 -04:00
2013-02-11 11:39:29 -05:00
const MAX _USERS _IN _SESSION _DIALOG = 5 ;
2011-07-28 10:59:03 -04:00
const IMStatus = {
AVAILABLE : 0 ,
BUSY : 1 ,
HIDDEN : 2 ,
AWAY : 3 ,
IDLE : 4 ,
OFFLINE : 5 ,
LAST : 6
} ;
2013-02-11 11:39:29 -05:00
const SystemdLoginSessionIface = < interface name = 'org.freedesktop.login1.Session' >
2013-02-18 12:03:13 -05:00
< property name = "Id" type = "s" access = "read" / >
2013-02-11 11:39:29 -05:00
< property name = "Remote" type = "b" access = "read" / >
< property name = "Class" type = "s" access = "read" / >
< property name = "Type" type = "s" access = "read" / >
2013-03-02 10:53:50 -05:00
< property name = "State" type = "s" access = "read" / >
2013-02-11 11:39:29 -05:00
< / i n t e r f a c e > ;
const SystemdLoginSession = Gio . DBusProxy . makeProxyWrapper ( SystemdLoginSessionIface ) ;
2011-11-20 08:10:48 -05:00
const IMStatusItem = new Lang . Class ( {
Name : 'IMStatusItem' ,
Extends : PopupMenu . PopupBaseMenuItem ,
2011-07-28 10:59:03 -04:00
_init : function ( label , iconName ) {
2011-11-20 08:10:48 -05:00
this . parent ( ) ;
2011-07-28 10:59:03 -04:00
this . actor . add _style _class _name ( 'status-chooser-status-item' ) ;
this . _icon = new St . Icon ( { style _class : 'popup-menu-icon' } ) ;
this . addActor ( this . _icon ) ;
if ( iconName )
this . _icon . icon _name = iconName ;
this . label = new St . Label ( { text : label } ) ;
2012-03-15 14:04:54 -04:00
this . actor . label _actor = this . label ;
2011-07-28 10:59:03 -04:00
this . addActor ( this . label ) ;
}
2011-11-20 08:10:48 -05:00
} ) ;
2011-07-28 10:59:03 -04:00
2011-11-20 08:10:48 -05:00
const IMUserNameItem = new Lang . Class ( {
Name : 'IMUserNameItem' ,
Extends : PopupMenu . PopupBaseMenuItem ,
2011-07-28 10:59:03 -04:00
_init : function ( ) {
2011-11-20 08:10:48 -05:00
this . parent ( { reactive : false ,
2012-08-21 11:39:01 -04:00
can _focus : false ,
2011-11-20 08:10:48 -05:00
style _class : 'status-chooser-user-name' } ) ;
2011-07-28 10:59:03 -04:00
this . _wrapper = new Shell . GenericContainer ( ) ;
this . _wrapper . connect ( 'get-preferred-width' ,
Lang . bind ( this , this . _wrapperGetPreferredWidth ) ) ;
this . _wrapper . connect ( 'get-preferred-height' ,
Lang . bind ( this , this . _wrapperGetPreferredHeight ) ) ;
this . _wrapper . connect ( 'allocate' ,
Lang . bind ( this , this . _wrapperAllocate ) ) ;
this . addActor ( this . _wrapper , { expand : true , span : - 1 } ) ;
this . label = new St . Label ( ) ;
this . label . clutter _text . set _line _wrap ( true ) ;
2011-08-23 13:15:31 -04:00
this . label . clutter _text . set _ellipsize ( Pango . EllipsizeMode . NONE ) ;
2011-07-28 10:59:03 -04:00
this . _wrapper . add _actor ( this . label ) ;
} ,
_wrapperGetPreferredWidth : function ( actor , forHeight , alloc ) {
2011-08-23 13:15:31 -04:00
alloc . min _size = 1 ;
alloc . natural _size = 1 ;
2011-07-28 10:59:03 -04:00
} ,
_wrapperGetPreferredHeight : function ( actor , forWidth , alloc ) {
[ alloc . min _size , alloc . natural _size ] = this . label . get _preferred _height ( forWidth ) ;
} ,
_wrapperAllocate : function ( actor , box , flags ) {
this . label . allocate ( box , flags ) ;
}
2011-11-20 08:10:48 -05:00
} ) ;
2011-07-28 10:59:03 -04:00
2011-11-20 08:10:48 -05:00
const IMStatusChooserItem = new Lang . Class ( {
Name : 'IMStatusChooserItem' ,
Extends : PopupMenu . PopupBaseMenuItem ,
2011-07-28 10:59:03 -04:00
_init : function ( ) {
2011-11-20 08:10:48 -05:00
this . parent ( { reactive : false ,
2012-08-21 11:39:01 -04:00
can _focus : false ,
2011-11-20 08:10:48 -05:00
style _class : 'status-chooser' } ) ;
2011-07-28 10:59:03 -04:00
2012-07-14 11:12:54 -04:00
this . _userManager = AccountsService . UserManager . get _default ( ) ;
this . _user = this . _userManager . get _user ( GLib . get _user _name ( ) ) ;
2013-04-23 22:31:08 -04:00
this . _avatar = new UserWidget . Avatar ( this . _user , { reactive : true } ) ;
2012-07-14 11:12:54 -04:00
this . _iconBin = new St . Button ( { child : this . _avatar . actor } ) ;
2011-07-28 10:59:03 -04:00
this . addActor ( this . _iconBin ) ;
this . _iconBin . connect ( 'clicked' , Lang . bind ( this ,
function ( ) {
this . activate ( ) ;
} ) ) ;
this . _section = new PopupMenu . PopupMenuSection ( ) ;
this . addActor ( this . _section . actor ) ;
this . _name = new IMUserNameItem ( ) ;
this . _section . addMenuItem ( this . _name ) ;
this . _combo = new PopupMenu . PopupComboBoxMenuItem ( { style _class : 'status-chooser-combo' } ) ;
this . _section . addMenuItem ( this . _combo ) ;
let item ;
2012-05-30 09:58:37 -04:00
item = new IMStatusItem ( _ ( "Available" ) , 'user-available-symbolic' ) ;
2011-07-28 10:59:03 -04:00
this . _combo . addMenuItem ( item , IMStatus . AVAILABLE ) ;
2012-05-30 09:58:37 -04:00
item = new IMStatusItem ( _ ( "Busy" ) , 'user-busy-symbolic' ) ;
2011-07-28 10:59:03 -04:00
this . _combo . addMenuItem ( item , IMStatus . BUSY ) ;
2012-05-30 09:58:37 -04:00
item = new IMStatusItem ( _ ( "Invisible" ) , 'user-invisible-symbolic' ) ;
2011-07-28 10:59:03 -04:00
this . _combo . addMenuItem ( item , IMStatus . HIDDEN ) ;
2012-05-30 09:58:37 -04:00
item = new IMStatusItem ( _ ( "Away" ) , 'user-away-symbolic' ) ;
2011-07-28 10:59:03 -04:00
this . _combo . addMenuItem ( item , IMStatus . AWAY ) ;
2012-05-30 09:58:37 -04:00
item = new IMStatusItem ( _ ( "Idle" ) , 'user-idle-symbolic' ) ;
2011-07-28 10:59:03 -04:00
this . _combo . addMenuItem ( item , IMStatus . IDLE ) ;
2012-10-30 16:56:06 -04:00
item = new IMStatusItem ( _ ( "Offline" ) , 'user-offline-symbolic' ) ;
2011-07-28 10:59:03 -04:00
this . _combo . addMenuItem ( item , IMStatus . OFFLINE ) ;
this . _combo . connect ( 'active-item-changed' ,
Lang . bind ( this , this . _changeIMStatus ) ) ;
this . _presence = new GnomeSession . Presence ( ) ;
2011-08-16 08:24:39 -04:00
this . _presence . connectSignal ( 'StatusChanged' , Lang . bind ( this , function ( proxy , senderName , [ status ] ) {
2011-11-11 16:41:47 -05:00
this . _sessionStatusChanged ( status ) ;
2011-08-16 08:24:39 -04:00
} ) ) ;
2011-07-28 10:59:03 -04:00
2011-10-05 20:47:18 -04:00
this . _sessionPresenceRestored = false ;
this . _imPresenceRestored = false ;
2011-09-02 08:15:31 -04:00
this . _currentPresence = undefined ;
2011-07-28 10:59:03 -04:00
2011-10-20 16:54:41 -04:00
this . _accountMgr = Tp . AccountManager . dup ( ) ;
2011-07-28 10:59:03 -04:00
this . _accountMgr . connect ( 'most-available-presence-changed' ,
Lang . bind ( this , this . _IMStatusChanged ) ) ;
2011-10-26 15:16:08 -04:00
this . _accountMgr . connect ( 'account-enabled' ,
Lang . bind ( this , this . _IMAccountsChanged ) ) ;
this . _accountMgr . connect ( 'account-disabled' ,
Lang . bind ( this , this . _IMAccountsChanged ) ) ;
this . _accountMgr . connect ( 'account-removed' ,
Lang . bind ( this , this . _IMAccountsChanged ) ) ;
2012-03-16 17:47:42 -04:00
this . _accountMgr . connect ( 'account-validity-changed' ,
Lang . bind ( this , this . _IMAccountsChanged ) ) ;
2011-07-28 10:59:03 -04:00
this . _accountMgr . prepare _async ( null , Lang . bind ( this ,
function ( mgr ) {
2011-10-26 15:16:08 -04:00
this . _IMAccountsChanged ( mgr ) ;
2012-06-12 19:03:33 -04:00
if ( this . _networkMonitor . network _available )
this . _restorePresence ( ) ;
else
this . _setComboboxPresence ( Tp . ConnectionPresenceType . OFFLINE ) ;
} ) ) ;
this . _networkMonitor = Gio . NetworkMonitor . get _default ( ) ;
this . _networkMonitor . connect ( 'network-changed' ,
Lang . bind ( this , function ( monitor , available ) {
2012-06-12 18:44:29 -04:00
this . _IMAccountsChanged ( this . _accountMgr ) ;
2012-06-12 19:03:33 -04:00
if ( available && ! this . _imPresenceRestored )
this . _restorePresence ( ) ;
2011-07-28 10:59:03 -04:00
} ) ) ;
this . _userLoadedId = this . _user . connect ( 'notify::is-loaded' ,
Lang . bind ( this ,
this . _updateUser ) ) ;
this . _userChangedId = this . _user . connect ( 'changed' ,
Lang . bind ( this ,
this . _updateUser ) ) ;
2011-09-08 17:11:45 -04:00
this . actor . connect ( 'notify::mapped' , Lang . bind ( this , function ( ) {
if ( this . actor . mapped )
this . _updateUser ( ) ;
} ) ) ;
2012-09-01 08:42:53 -04:00
this . connect ( 'sensitive-changed' , function ( sensitive ) {
this . _avatar . setSensitive ( sensitive ) ;
} ) ;
2011-07-28 10:59:03 -04:00
} ,
2012-06-12 19:03:33 -04:00
_restorePresence : function ( ) {
let [ presence , status , msg ] = this . _accountMgr . get _most _available _presence ( ) ;
let savedPresence = global . settings . get _int ( 'saved-im-presence' ) ;
if ( savedPresence == presence ) {
this . _IMStatusChanged ( this . _accountMgr , presence , status , msg ) ;
} else {
this . _setComboboxPresence ( savedPresence ) ;
status = this . _statusForPresence ( savedPresence ) ;
msg = msg ? msg : '' ;
this . _accountMgr . set _all _requested _presences ( savedPresence , status , msg ) ;
}
} ,
2011-10-17 09:18:25 -04:00
destroy : function ( ) {
// clean up signal handlers
if ( this . _userLoadedId != 0 ) {
this . _user . disconnect ( this . _userLoadedId ) ;
this . _userLoadedId = 0 ;
}
if ( this . _userChangedId != 0 ) {
this . _user . disconnect ( this . _userChangedId ) ;
this . _userChangedId = 0 ;
}
2011-11-20 08:10:48 -05:00
this . parent ( ) ;
2011-10-17 09:18:25 -04:00
} ,
2011-07-28 10:59:03 -04:00
// Override getColumnWidths()/setColumnWidths() to make the item
// independent from the overall column layout of the menu
getColumnWidths : function ( ) {
return [ ] ;
} ,
setColumnWidths : function ( widths ) {
} ,
_updateUser : function ( ) {
2012-07-14 11:12:54 -04:00
if ( this . _user . is _loaded )
2011-07-28 10:59:03 -04:00
this . _name . label . set _text ( this . _user . get _real _name ( ) ) ;
else
2012-07-14 11:12:54 -04:00
this . _name . label . set _text ( "" ) ;
2011-07-28 10:59:03 -04:00
2012-07-14 11:12:54 -04:00
this . _avatar . update ( ) ;
2011-07-28 10:59:03 -04:00
} ,
_statusForPresence : function ( presence ) {
switch ( presence ) {
case Tp . ConnectionPresenceType . AVAILABLE :
2011-08-30 08:35:20 -04:00
return 'available' ;
2011-07-28 10:59:03 -04:00
case Tp . ConnectionPresenceType . BUSY :
2011-08-30 08:35:20 -04:00
return 'busy' ;
2011-07-28 10:59:03 -04:00
case Tp . ConnectionPresenceType . OFFLINE :
2011-08-30 08:35:20 -04:00
return 'offline' ;
2011-07-28 10:59:03 -04:00
case Tp . ConnectionPresenceType . HIDDEN :
2011-08-30 08:35:20 -04:00
return 'hidden' ;
2011-07-28 10:59:03 -04:00
case Tp . ConnectionPresenceType . AWAY :
2011-08-30 08:35:20 -04:00
return 'away' ;
2011-07-28 10:59:03 -04:00
case Tp . ConnectionPresenceType . EXTENDED _AWAY :
2011-08-30 08:35:20 -04:00
return 'xa' ;
2011-07-28 10:59:03 -04:00
default :
2011-08-30 08:35:20 -04:00
return 'unknown' ;
2011-07-28 10:59:03 -04:00
}
} ,
2011-10-26 15:16:08 -04:00
_IMAccountsChanged : function ( mgr ) {
let accounts = mgr . get _valid _accounts ( ) . filter ( function ( account ) {
return account . enabled ;
} ) ;
2012-06-12 18:44:29 -04:00
let sensitive = accounts . length > 0 && this . _networkMonitor . network _available ;
this . _combo . setSensitive ( sensitive ) ;
2011-10-26 15:16:08 -04:00
} ,
2011-07-28 10:59:03 -04:00
_IMStatusChanged : function ( accountMgr , presence , status , message ) {
2011-10-05 20:47:18 -04:00
if ( ! this . _imPresenceRestored )
this . _imPresenceRestored = true ;
2011-09-02 08:15:31 -04:00
if ( presence == this . _currentPresence )
return ;
this . _currentPresence = presence ;
2011-09-30 12:54:45 -04:00
this . _setComboboxPresence ( presence ) ;
2011-09-02 08:15:31 -04:00
2011-10-05 20:47:18 -04:00
if ( ! this . _sessionPresenceRestored ) {
2011-11-11 16:41:47 -05:00
this . _sessionStatusChanged ( this . _presence . status ) ;
2011-10-05 20:47:18 -04:00
return ;
}
2011-07-28 10:59:03 -04:00
if ( presence == Tp . ConnectionPresenceType . AVAILABLE )
2011-11-11 16:41:47 -05:00
this . _presence . status = GnomeSession . PresenceStatus . AVAILABLE ;
2011-07-28 10:59:03 -04:00
2011-10-11 15:53:29 -04:00
// We ignore the actual value of _expectedPresence and never safe
// the first presence change after an "automatic" change, assuming
// that it is the response to our request; this is to account for
// mission control falling back to "similar" presences if an account
// type does not implement the requested presence.
if ( ! this . _expectedPresence )
2011-09-30 12:54:45 -04:00
global . settings . set _int ( 'saved-im-presence' , presence ) ;
2011-07-28 10:59:03 -04:00
else
this . _expectedPresence = undefined ;
2011-09-30 12:54:45 -04:00
} ,
2011-07-28 10:59:03 -04:00
2011-09-30 12:54:45 -04:00
_setComboboxPresence : function ( presence ) {
2011-07-28 10:59:03 -04:00
let activatedItem ;
if ( presence == Tp . ConnectionPresenceType . AVAILABLE )
activatedItem = IMStatus . AVAILABLE ;
else if ( presence == Tp . ConnectionPresenceType . BUSY )
activatedItem = IMStatus . BUSY ;
else if ( presence == Tp . ConnectionPresenceType . HIDDEN )
activatedItem = IMStatus . HIDDEN ;
else if ( presence == Tp . ConnectionPresenceType . AWAY )
activatedItem = IMStatus . AWAY ;
else if ( presence == Tp . ConnectionPresenceType . EXTENDED _AWAY )
activatedItem = IMStatus . IDLE ;
else
activatedItem = IMStatus . OFFLINE ;
this . _combo . setActiveItem ( activatedItem ) ;
for ( let i = 0 ; i < IMStatus . LAST ; i ++ ) {
if ( i == IMStatus . AVAILABLE || i == IMStatus . OFFLINE )
continue ; // always visible
this . _combo . setItemVisible ( i , i == activatedItem ) ;
}
} ,
_changeIMStatus : function ( menuItem , id ) {
let [ presence , s , msg ] = this . _accountMgr . get _most _available _presence ( ) ;
let newPresence , status ;
if ( id == IMStatus . AVAILABLE ) {
newPresence = Tp . ConnectionPresenceType . AVAILABLE ;
} else if ( id == IMStatus . OFFLINE ) {
newPresence = Tp . ConnectionPresenceType . OFFLINE ;
} else
return ;
status = this . _statusForPresence ( newPresence ) ;
2011-09-30 17:30:47 -04:00
msg = msg ? msg : '' ;
2011-07-28 10:59:03 -04:00
this . _accountMgr . set _all _requested _presences ( newPresence , status , msg ) ;
} ,
2011-09-09 12:49:04 -04:00
getIMPresenceForSessionStatus : function ( sessionStatus ) {
2011-09-30 12:54:45 -04:00
// Restore the last user-set presence when coming back from
// BUSY/IDLE (otherwise the last user-set presence matches
// the current one)
2011-09-09 12:49:04 -04:00
if ( sessionStatus == GnomeSession . PresenceStatus . AVAILABLE )
2011-09-30 12:54:45 -04:00
return global . settings . get _int ( 'saved-im-presence' ) ;
2011-07-28 10:59:03 -04:00
2011-09-09 12:49:04 -04:00
if ( sessionStatus == GnomeSession . PresenceStatus . BUSY ) {
2011-07-28 10:59:03 -04:00
// Only change presence if the current one is "more present" than
// busy, or if coming back from idle
2011-09-09 12:49:04 -04:00
if ( this . _currentPresence == Tp . ConnectionPresenceType . AVAILABLE ||
this . _currentPresence == Tp . ConnectionPresenceType . EXTENDED _AWAY )
return Tp . ConnectionPresenceType . BUSY ;
}
if ( sessionStatus == GnomeSession . PresenceStatus . IDLE ) {
2011-07-28 10:59:03 -04:00
// Only change presence if the current one is "more present" than
// idle
2011-10-19 09:15:14 -04:00
if ( this . _currentPresence != Tp . ConnectionPresenceType . OFFLINE &&
this . _currentPresence != Tp . ConnectionPresenceType . HIDDEN )
2011-09-09 12:49:04 -04:00
return Tp . ConnectionPresenceType . EXTENDED _AWAY ;
2011-07-28 10:59:03 -04:00
}
2011-09-09 12:49:04 -04:00
return this . _currentPresence ;
} ,
2011-08-16 08:24:39 -04:00
_sessionStatusChanged : function ( sessionStatus ) {
2011-10-05 20:47:18 -04:00
if ( ! this . _imPresenceRestored )
return ;
2012-01-19 13:04:56 -05:00
let savedStatus = global . settings . get _int ( 'saved-session-presence' ) ;
2011-10-05 20:47:18 -04:00
if ( ! this . _sessionPresenceRestored ) {
2012-03-03 02:35:03 -05:00
// We should never save/restore a status other than AVAILABLE
// or BUSY
if ( savedStatus != GnomeSession . PresenceStatus . AVAILABLE &&
savedStatus != GnomeSession . PresenceStatus . BUSY )
savedStatus = GnomeSession . PresenceStatus . AVAILABLE ;
2011-10-05 20:47:18 -04:00
if ( sessionStatus != savedStatus ) {
2011-08-16 08:24:39 -04:00
this . _presence . status = savedStatus ;
2011-10-05 20:47:18 -04:00
return ;
}
this . _sessionPresenceRestored = true ;
}
2012-01-19 13:04:56 -05:00
if ( ( sessionStatus == GnomeSession . PresenceStatus . AVAILABLE ||
sessionStatus == GnomeSession . PresenceStatus . BUSY ) &&
savedStatus != sessionStatus )
2012-03-03 02:35:03 -05:00
global . settings . set _int ( 'saved-session-presence' , sessionStatus ) ;
2011-10-05 20:47:18 -04:00
2011-09-09 12:49:04 -04:00
let [ presence , s , msg ] = this . _accountMgr . get _most _available _presence ( ) ;
let newPresence , status ;
let newPresence = this . getIMPresenceForSessionStatus ( sessionStatus ) ;
if ( ! newPresence || newPresence == presence )
2011-07-28 10:59:03 -04:00
return ;
status = this . _statusForPresence ( newPresence ) ;
2011-09-30 17:30:47 -04:00
msg = msg ? msg : '' ;
2011-07-28 10:59:03 -04:00
this . _expectedPresence = newPresence ;
this . _accountMgr . set _all _requested _presences ( newPresence , status , msg ) ;
}
2011-11-20 08:10:48 -05:00
} ) ;
2011-07-28 10:59:03 -04:00
2011-11-20 09:38:48 -05:00
const UserMenuButton = new Lang . Class ( {
Name : 'UserMenuButton' ,
Extends : PanelMenu . Button ,
2010-05-10 09:46:54 -04:00
2009-11-10 12:13:58 -05:00
_init : function ( ) {
2011-11-20 09:38:48 -05:00
this . parent ( 0.0 ) ;
2012-02-27 11:31:10 -05:00
this . actor . accessible _role = Atk . Role . MENU ;
2011-09-07 12:23:27 -04:00
let box = new St . BoxLayout ( { name : 'panelUserMenu' } ) ;
2011-06-09 11:50:24 -04:00
this . actor . add _actor ( box ) ;
2010-05-10 09:46:54 -04:00
2012-08-13 19:51:51 -04:00
this . _screenSaverSettings = new Gio . Settings ( { schema : SCREENSAVER _SCHEMA } ) ;
2011-03-21 08:51:46 -04:00
this . _lockdownSettings = new Gio . Settings ( { schema : LOCKDOWN _SCHEMA } ) ;
2013-01-15 03:30:43 -05:00
this . _privacySettings = new Gio . Settings ( { schema : PRIVACY _SCHEMA } ) ;
2011-03-21 08:51:46 -04:00
2011-05-10 10:13:05 -04:00
this . _userManager = AccountsService . UserManager . get _default ( ) ;
2010-10-07 18:22:20 -04:00
2011-05-10 10:13:05 -04:00
this . _user = this . _userManager . get _user ( GLib . get _user _name ( ) ) ;
2010-04-29 13:13:20 -04:00
this . _presence = new GnomeSession . Presence ( ) ;
2011-03-12 15:34:01 -05:00
this . _session = new GnomeSession . SessionManager ( ) ;
2011-06-03 18:10:55 -04:00
this . _haveShutdown = true ;
2012-10-19 11:41:10 -04:00
this . _haveSuspend = true ;
2009-11-10 12:13:58 -05:00
2011-10-20 16:54:41 -04:00
this . _accountMgr = Tp . AccountManager . dup ( ) ;
2011-02-28 11:03:35 -05:00
2012-10-19 11:41:10 -04:00
this . _loginManager = LoginManager . getLoginManager ( ) ;
2009-11-10 12:13:58 -05:00
this . actor . connect ( 'destroy' , Lang . bind ( this , this . _onDestroy ) ) ;
2009-11-10 16:34:13 -05:00
this . _iconBox = new St . Bin ( ) ;
2010-05-10 09:46:54 -04:00
box . add ( this . _iconBox , { y _align : St . Align . MIDDLE , y _fill : false } ) ;
2009-11-10 16:34:13 -05:00
2010-02-09 12:42:07 -05:00
let textureCache = St . TextureCache . get _default ( ) ;
2012-05-30 09:58:37 -04:00
this . _offlineIcon = new St . Icon ( { icon _name : 'user-offline-symbolic' ,
2011-07-28 10:59:03 -04:00
style _class : 'popup-menu-icon' } ) ;
2012-05-30 09:58:37 -04:00
this . _availableIcon = new St . Icon ( { icon _name : 'user-available-symbolic' ,
2011-07-28 10:59:03 -04:00
style _class : 'popup-menu-icon' } ) ;
2012-05-30 09:58:37 -04:00
this . _busyIcon = new St . Icon ( { icon _name : 'user-busy-symbolic' ,
2011-07-28 10:59:03 -04:00
style _class : 'popup-menu-icon' } ) ;
2012-05-30 09:58:37 -04:00
this . _invisibleIcon = new St . Icon ( { icon _name : 'user-invisible-symbolic' ,
2011-07-28 10:59:03 -04:00
style _class : 'popup-menu-icon' } ) ;
2012-05-30 09:58:37 -04:00
this . _awayIcon = new St . Icon ( { icon _name : 'user-away-symbolic' ,
2011-07-28 10:59:03 -04:00
style _class : 'popup-menu-icon' } ) ;
2012-05-30 09:58:37 -04:00
this . _idleIcon = new St . Icon ( { icon _name : 'user-idle-symbolic' ,
2011-07-28 10:59:03 -04:00
style _class : 'popup-menu-icon' } ) ;
2012-08-30 07:23:00 -04:00
this . _pendingIcon = new St . Icon ( { icon _name : 'user-status-pending-symbolic' ,
2011-09-14 09:06:48 -04:00
style _class : 'popup-menu-icon' } ) ;
2012-09-01 17:44:46 -04:00
this . _lockedIcon = new St . Icon ( { icon _name : 'changes-prevent-symbolic' ,
style _class : 'popup-menu-icon' } ) ;
2011-07-28 10:59:03 -04:00
2011-10-20 16:44:09 -04:00
this . _accountMgr . connect ( 'most-available-presence-changed' ,
2011-07-28 10:59:03 -04:00
Lang . bind ( this , this . _updatePresenceIcon ) ) ;
2011-09-14 09:06:48 -04:00
this . _accountMgr . connect ( 'account-enabled' ,
Lang . bind ( this , this . _onAccountEnabled ) ) ;
this . _accountMgr . connect ( 'account-removed' ,
2012-07-03 04:34:34 -04:00
Lang . bind ( this , this . _onAccountRemoved ) ) ;
2011-10-20 16:44:09 -04:00
this . _accountMgr . prepare _async ( null , Lang . bind ( this ,
2011-07-28 10:59:03 -04:00
function ( mgr ) {
let [ presence , s , msg ] = mgr . get _most _available _presence ( ) ;
this . _updatePresenceIcon ( mgr , presence , s , msg ) ;
2011-09-14 09:06:48 -04:00
this . _setupAccounts ( ) ;
2011-07-28 10:59:03 -04:00
} ) ) ;
2009-11-10 16:34:13 -05:00
2010-10-07 18:22:20 -04:00
this . _name = new St . Label ( ) ;
2012-01-05 13:00:06 -05:00
this . actor . label _actor = this . _name ;
2010-05-10 09:46:54 -04:00
box . add ( this . _name , { y _align : St . Align . MIDDLE , y _fill : false } ) ;
2010-10-07 18:22:20 -04:00
this . _userLoadedId = this . _user . connect ( 'notify::is-loaded' , Lang . bind ( this , this . _updateUserName ) ) ;
this . _userChangedId = this . _user . connect ( 'changed' , Lang . bind ( this , this . _updateUserName ) ) ;
2011-09-08 17:11:45 -04:00
this . _updateUserName ( ) ;
2009-11-10 12:13:58 -05:00
this . _createSubMenu ( ) ;
2011-11-11 16:41:47 -05:00
this . _updateSwitch ( this . _presence . status ) ;
this . _presence . connectSignal ( 'StatusChanged' , Lang . bind ( this , function ( proxy , senderName , [ status ] ) {
this . _updateSwitch ( status ) ;
} ) ) ;
2011-05-10 10:13:05 -04:00
this . _userManager . connect ( 'notify::is-loaded' ,
2012-05-10 07:16:15 -04:00
Lang . bind ( this , this . _updateMultiUser ) ) ;
2011-10-18 14:57:24 -04:00
this . _userManager . connect ( 'notify::has-multiple-users' ,
2012-05-10 07:16:15 -04:00
Lang . bind ( this , this . _updateMultiUser ) ) ;
2011-05-10 10:13:05 -04:00
this . _userManager . connect ( 'user-added' ,
2012-05-10 07:16:15 -04:00
Lang . bind ( this , this . _updateMultiUser ) ) ;
2011-05-10 10:13:05 -04:00
this . _userManager . connect ( 'user-removed' ,
2012-05-10 07:16:15 -04:00
Lang . bind ( this , this . _updateMultiUser ) ) ;
2011-03-21 08:51:46 -04:00
this . _lockdownSettings . connect ( 'changed::' + DISABLE _USER _SWITCH _KEY ,
Lang . bind ( this , this . _updateSwitchUser ) ) ;
this . _lockdownSettings . connect ( 'changed::' + DISABLE _LOG _OUT _KEY ,
Lang . bind ( this , this . _updateLogout ) ) ;
this . _lockdownSettings . connect ( 'changed::' + DISABLE _LOCK _SCREEN _KEY ,
Lang . bind ( this , this . _updateLockScreen ) ) ;
2013-01-30 09:19:54 -05:00
global . settings . connect ( 'changed::' + ALWAYS _SHOW _LOG _OUT _KEY ,
Lang . bind ( this , this . _updateLogout ) ) ;
2013-01-15 03:30:43 -05:00
this . _screenSaverSettings . connect ( 'changed::' + SHOW _FULL _NAME _IN _TOP _BAR _KEY ,
2012-11-17 23:51:06 -05:00
Lang . bind ( this , this . _updateUserName ) ) ;
2013-01-15 03:30:43 -05:00
this . _privacySettings . connect ( 'changed::' + SHOW _FULL _NAME _IN _TOP _BAR _KEY ,
Lang . bind ( this , this . _updateUserName ) ) ;
2011-03-21 08:51:46 -04:00
this . _updateSwitchUser ( ) ;
this . _updateLogout ( ) ;
this . _updateLockScreen ( ) ;
2011-02-04 18:37:54 -05:00
2012-06-03 11:35:37 -04:00
this . _updatesFile = Gio . File . new _for _path ( '/var/lib/PackageKit/prepared-update' ) ;
this . _updatesMonitor = this . _updatesFile . monitor ( Gio . FileMonitorFlags . NONE , null ) ;
this . _updatesMonitor . connect ( 'changed' , Lang . bind ( this , this . _updateInstallUpdates ) ) ;
2011-06-03 18:10:55 -04:00
// Whether shutdown is available or not depends on both lockdown
// settings (disable-log-out) and Polkit policy - the latter doesn't
// notify, so we update the menu item each time the menu opens or
// the lockdown setting changes, which should be close enough.
this . menu . connect ( 'open-state-changed' , Lang . bind ( this ,
function ( menu , open ) {
2012-10-19 11:41:10 -04:00
if ( ! open )
return ;
this . _updateHaveShutdown ( ) ;
this . _updateHaveSuspend ( ) ;
2011-06-03 18:10:55 -04:00
} ) ) ;
this . _lockdownSettings . connect ( 'changed::' + DISABLE _LOG _OUT _KEY ,
Lang . bind ( this , this . _updateHaveShutdown ) ) ;
2012-09-01 08:42:53 -04:00
Main . sessionMode . connect ( 'updated' , Lang . bind ( this , this . _sessionUpdated ) ) ;
2013-03-04 13:33:36 -05:00
if ( Main . screenShield )
Main . screenShield . connect ( 'locked-changed' , Lang . bind ( this , this . _updatePresenceIcon ) ) ;
2012-09-01 08:42:53 -04:00
this . _sessionUpdated ( ) ;
2009-11-10 12:13:58 -05:00
} ,
2012-09-01 08:42:53 -04:00
_sessionUpdated : function ( ) {
2012-09-10 05:34:49 -04:00
this . actor . visible = ! Main . sessionMode . isGreeter ;
2012-09-01 08:42:53 -04:00
let allowSettings = Main . sessionMode . allowSettings ;
this . _statusChooser . setSensitive ( allowSettings ) ;
2012-09-01 17:44:46 -04:00
this . setSensitive ( ! Main . sessionMode . isLocked ) ;
this . _updatePresenceIcon ( ) ;
2012-12-11 11:09:34 -05:00
this . _updateUserName ( ) ;
2012-05-22 18:27:06 -04:00
} ,
2009-11-10 12:13:58 -05:00
_onDestroy : function ( ) {
2010-10-07 18:22:20 -04:00
this . _user . disconnect ( this . _userLoadedId ) ;
this . _user . disconnect ( this . _userChangedId ) ;
2009-11-10 12:13:58 -05:00
} ,
_updateUserName : function ( ) {
2013-01-15 03:30:43 -05:00
let settings = this . _privacySettings ;
2012-11-17 23:51:06 -05:00
if ( Main . sessionMode . isLocked )
settings = this . _screenSaverSettings ;
2013-01-15 03:30:43 -05:00
if ( this . _user . is _loaded && settings . get _boolean ( SHOW _FULL _NAME _IN _TOP _BAR _KEY ) )
2011-07-28 10:59:03 -04:00
this . _name . set _text ( this . _user . get _real _name ( ) ) ;
2010-10-07 18:22:20 -04:00
else
2011-07-28 10:59:03 -04:00
this . _name . set _text ( "" ) ;
2009-11-10 12:13:58 -05:00
} ,
2012-05-10 07:16:15 -04:00
_updateMultiUser : function ( ) {
this . _updateSwitchUser ( ) ;
this . _updateLogout ( ) ;
} ,
2009-11-10 12:13:58 -05:00
_updateSwitchUser : function ( ) {
2011-03-21 08:51:46 -04:00
let allowSwitch = ! this . _lockdownSettings . get _boolean ( DISABLE _USER _SWITCH _KEY ) ;
2012-05-13 11:11:06 -04:00
let multiUser = this . _userManager . can _switch ( ) && this . _userManager . has _multiple _users ;
2012-09-28 12:52:12 -04:00
this . _loginScreenItem . actor . visible = allowSwitch && multiUser ;
2011-03-21 08:51:46 -04:00
} ,
_updateLogout : function ( ) {
let allowLogout = ! this . _lockdownSettings . get _boolean ( DISABLE _LOG _OUT _KEY ) ;
2012-10-29 00:27:18 -04:00
let alwaysShow = global . settings . get _boolean ( ALWAYS _SHOW _LOG _OUT _KEY ) ;
2012-10-28 23:55:43 -04:00
let systemAccount = this . _user . system _account ;
let localAccount = this . _user . local _account ;
2012-05-13 11:11:06 -04:00
let multiUser = this . _userManager . has _multiple _users ;
2012-05-19 19:19:25 -04:00
let multiSession = Gdm . get _session _ids ( ) . length > 1 ;
2012-05-13 11:11:06 -04:00
2012-10-29 00:27:18 -04:00
this . _logoutItem . actor . visible = allowLogout && ( alwaysShow || multiUser || multiSession || systemAccount || ! localAccount ) ;
2011-03-21 08:51:46 -04:00
} ,
_updateLockScreen : function ( ) {
let allowLockScreen = ! this . _lockdownSettings . get _boolean ( DISABLE _LOCK _SCREEN _KEY ) ;
2013-03-04 13:33:36 -05:00
this . _lockScreenItem . actor . visible = allowLockScreen && LoginManager . canLock ( ) ;
2009-11-10 12:13:58 -05:00
} ,
2012-06-03 11:35:37 -04:00
_updateInstallUpdates : function ( ) {
let haveUpdates = this . _updatesFile . query _exists ( null ) ;
this . _installUpdatesItem . actor . visible = haveUpdates && this . _haveShutdown ;
} ,
2011-06-03 18:10:55 -04:00
_updateHaveShutdown : function ( ) {
this . _session . CanShutdownRemote ( Lang . bind ( this ,
function ( result , error ) {
if ( ! error ) {
2012-06-26 11:44:24 -04:00
this . _haveShutdown = result [ 0 ] ;
2012-06-03 11:35:37 -04:00
this . _updateInstallUpdates ( ) ;
2011-06-03 18:10:55 -04:00
this . _updateSuspendOrPowerOff ( ) ;
}
} ) ) ;
} ,
2012-10-19 11:41:10 -04:00
_updateHaveSuspend : function ( ) {
this . _loginManager . canSuspend ( Lang . bind ( this ,
function ( result ) {
this . _haveSuspend = result ;
this . _updateSuspendOrPowerOff ( ) ;
} ) ) ;
} ,
2011-02-04 18:37:54 -05:00
2012-10-19 11:41:10 -04:00
_updateSuspendOrPowerOff : function ( ) {
2011-02-04 18:37:54 -05:00
if ( ! this . _suspendOrPowerOffItem )
return ;
2012-03-16 18:53:14 -04:00
this . _suspendOrPowerOffItem . actor . visible = this . _haveShutdown || this . _haveSuspend ;
2011-06-03 18:10:55 -04:00
2012-05-10 07:24:12 -04:00
// If we can't power off show Suspend instead
2011-02-04 18:37:54 -05:00
// and disable the alt key
2012-05-10 07:24:12 -04:00
if ( ! this . _haveShutdown ) {
2011-06-03 18:10:55 -04:00
this . _suspendOrPowerOffItem . updateText ( _ ( "Suspend" ) , null ) ;
2012-05-10 07:24:12 -04:00
} else if ( ! this . _haveSuspend ) {
this . _suspendOrPowerOffItem . updateText ( _ ( "Power Off" ) , null ) ;
2011-02-04 18:37:54 -05:00
} else {
2012-05-10 07:24:12 -04:00
this . _suspendOrPowerOffItem . updateText ( _ ( "Power Off" ) , _ ( "Suspend" ) ) ;
2011-02-04 18:37:54 -05:00
}
} ,
2011-08-16 08:24:39 -04:00
_updateSwitch : function ( status ) {
2011-09-04 12:39:37 -04:00
let active = status == GnomeSession . PresenceStatus . AVAILABLE ;
this . _notificationsSwitch . setToggleState ( active ) ;
2011-07-28 10:59:03 -04:00
} ,
_updatePresenceIcon : function ( accountMgr , presence , status , message ) {
2012-09-01 17:44:46 -04:00
if ( Main . sessionMode . isLocked )
this . _iconBox . child = this . _lockedIcon ;
else if ( presence == Tp . ConnectionPresenceType . AVAILABLE )
2009-11-10 16:34:13 -05:00
this . _iconBox . child = this . _availableIcon ;
2011-07-28 10:59:03 -04:00
else if ( presence == Tp . ConnectionPresenceType . BUSY )
2009-11-10 16:34:13 -05:00
this . _iconBox . child = this . _busyIcon ;
2011-07-28 10:59:03 -04:00
else if ( presence == Tp . ConnectionPresenceType . HIDDEN )
2009-11-10 16:34:13 -05:00
this . _iconBox . child = this . _invisibleIcon ;
2011-07-28 10:59:03 -04:00
else if ( presence == Tp . ConnectionPresenceType . AWAY )
this . _iconBox . child = this . _awayIcon ;
else if ( presence == Tp . ConnectionPresenceType . EXTENDED _AWAY )
2009-11-10 16:34:13 -05:00
this . _iconBox . child = this . _idleIcon ;
2011-07-28 10:59:03 -04:00
else
this . _iconBox . child = this . _offlineIcon ;
2013-02-02 11:30:06 -05:00
if ( Main . sessionMode . isLocked )
this . _iconBox . visible = Main . screenShield . locked ;
else
this . _iconBox . visible = true ;
2009-11-10 16:34:13 -05:00
} ,
2011-09-14 09:06:48 -04:00
_setupAccounts : function ( ) {
let accounts = this . _accountMgr . get _valid _accounts ( ) ;
for ( let i = 0 ; i < accounts . length ; i ++ ) {
accounts [ i ] . _changingId = accounts [ i ] . connect ( 'notify::connection-status' ,
Lang . bind ( this , this . _updateChangingPresence ) ) ;
}
this . _updateChangingPresence ( ) ;
} ,
_onAccountEnabled : function ( accountMgr , account ) {
if ( ! account . _changingId )
account . _changingId = account . connect ( 'notify::connection-status' ,
Lang . bind ( this , this . _updateChangingPresence ) ) ;
this . _updateChangingPresence ( ) ;
} ,
2012-07-03 04:34:34 -04:00
_onAccountRemoved : function ( accountMgr , account ) {
2012-08-07 10:33:02 -04:00
if ( account . _changingId ) {
account . disconnect ( account . _changingId ) ;
account . _changingId = 0 ;
}
2011-09-14 09:06:48 -04:00
this . _updateChangingPresence ( ) ;
} ,
_updateChangingPresence : function ( ) {
let accounts = this . _accountMgr . get _valid _accounts ( ) ;
let changing = false ;
for ( let i = 0 ; i < accounts . length ; i ++ ) {
if ( accounts [ i ] . connection _status == Tp . ConnectionStatus . CONNECTING ) {
changing = true ;
break ;
}
}
if ( changing ) {
this . _iconBox . child = this . _pendingIcon ;
} else {
let [ presence , s , msg ] = this . _accountMgr . get _most _available _presence ( ) ;
this . _updatePresenceIcon ( this . _accountMgr , presence , s , msg ) ;
}
} ,
2009-11-10 12:13:58 -05:00
_createSubMenu : function ( ) {
let item ;
2011-07-28 10:59:03 -04:00
item = new IMStatusChooserItem ( ) ;
2012-09-01 08:42:53 -04:00
item . connect ( 'activate' , Lang . bind ( this , this . _onMyAccountActivate ) ) ;
2010-05-10 09:46:54 -04:00
this . menu . addMenuItem ( item ) ;
2011-09-09 12:49:04 -04:00
this . _statusChooser = item ;
2009-11-10 16:34:13 -05:00
2011-09-04 12:39:37 -04:00
item = new PopupMenu . PopupSwitchMenuItem ( _ ( "Notifications" ) ) ;
2011-11-21 08:16:51 -05:00
item . connect ( 'toggled' , Lang . bind ( this , this . _updatePresenceStatus ) ) ;
2010-05-10 09:46:54 -04:00
this . menu . addMenuItem ( item ) ;
2011-09-04 12:39:37 -04:00
this . _notificationsSwitch = item ;
2009-11-10 16:34:13 -05:00
2010-05-20 11:18:46 -04:00
item = new PopupMenu . PopupSeparatorMenuItem ( ) ;
2010-05-10 09:46:54 -04:00
this . menu . addMenuItem ( item ) ;
2009-11-10 16:34:13 -05:00
2013-04-25 15:45:53 -04:00
this . menu . addSettingsAction ( _ ( "Settings" ) , 'gnome-control-center.desktop' ) ;
2009-11-10 12:13:58 -05:00
2012-05-10 07:24:12 -04:00
item = new PopupMenu . PopupSeparatorMenuItem ( ) ;
2010-05-10 09:46:54 -04:00
this . menu . addMenuItem ( item ) ;
2009-11-10 12:13:58 -05:00
2010-10-19 11:59:23 -04:00
item = new PopupMenu . PopupMenuItem ( _ ( "Switch User" ) ) ;
2009-11-10 12:13:58 -05:00
item . connect ( 'activate' , Lang . bind ( this , this . _onLoginScreenActivate ) ) ;
2010-05-10 09:46:54 -04:00
this . menu . addMenuItem ( item ) ;
2009-11-10 12:13:58 -05:00
this . _loginScreenItem = item ;
2012-05-10 07:24:12 -04:00
item = new PopupMenu . PopupMenuItem ( _ ( "Log Out" ) ) ;
2009-11-10 12:13:58 -05:00
item . connect ( 'activate' , Lang . bind ( this , this . _onQuitSessionActivate ) ) ;
2010-05-10 09:46:54 -04:00
this . menu . addMenuItem ( item ) ;
2011-03-21 08:51:46 -04:00
this . _logoutItem = item ;
2009-11-10 12:13:58 -05:00
2012-05-10 07:24:12 -04:00
item = new PopupMenu . PopupMenuItem ( _ ( "Lock" ) ) ;
item . connect ( 'activate' , Lang . bind ( this , this . _onLockScreenActivate ) ) ;
2010-05-10 09:46:54 -04:00
this . menu . addMenuItem ( item ) ;
2012-05-10 07:24:12 -04:00
this . _lockScreenItem = item ;
2012-06-28 06:22:17 -04:00
item = new PopupMenu . PopupSeparatorMenuItem ( ) ;
this . menu . addMenuItem ( item ) ;
item = new PopupMenu . PopupAlternatingMenuItem ( _ ( "Power Off" ) ,
_ ( "Suspend" ) ) ;
this . menu . addMenuItem ( item ) ;
item . connect ( 'activate' , Lang . bind ( this , this . _onSuspendOrPowerOffActivate ) ) ;
this . _suspendOrPowerOffItem = item ;
this . _updateSuspendOrPowerOff ( ) ;
2012-07-17 06:20:56 -04:00
item = new PopupMenu . PopupMenuItem ( _ ( "Install Updates & Restart" ) ) ;
item . connect ( 'activate' , Lang . bind ( this , this . _onInstallUpdatesActivate ) ) ;
this . menu . addMenuItem ( item ) ;
this . _installUpdatesItem = item ;
2009-11-10 12:13:58 -05:00
} ,
2011-07-28 10:59:03 -04:00
_updatePresenceStatus : function ( item , event ) {
2011-09-09 12:49:04 -04:00
let status ;
if ( item . state ) {
status = GnomeSession . PresenceStatus . AVAILABLE ;
} else {
status = GnomeSession . PresenceStatus . BUSY ;
2011-10-20 16:44:09 -04:00
let [ presence , s , msg ] = this . _accountMgr . get _most _available _presence ( ) ;
2011-09-09 12:49:04 -04:00
let newPresence = this . _statusChooser . getIMPresenceForSessionStatus ( status ) ;
if ( newPresence != presence &&
newPresence == Tp . ConnectionPresenceType . BUSY )
Main . notify ( _ ( "Your chat status will be set to busy" ) ,
_ ( "Notifications are now disabled, including chat messages. Your online status has been adjusted to let others know that you might not see their messages." ) ) ;
}
2011-11-11 16:41:47 -05:00
this . _presence . status = status ;
2009-11-10 16:34:13 -05:00
} ,
2010-10-19 12:04:58 -04:00
_onMyAccountActivate : function ( ) {
2010-06-03 19:21:08 -04:00
Main . overview . hide ( ) ;
2013-01-24 14:32:27 -05:00
let app = Shell . AppSystem . get _default ( ) . lookup _app ( 'gnome-user-accounts-panel.desktop' ) ;
2011-08-11 05:35:23 -04:00
app . activate ( ) ;
2009-11-10 12:13:58 -05:00
} ,
_onLockScreenActivate : function ( ) {
2012-09-18 23:02:15 -04:00
this . menu . close ( BoxPointer . PopupAnimation . NONE ) ;
2010-06-03 19:21:08 -04:00
Main . overview . hide ( ) ;
2012-06-02 18:10:23 -04:00
Main . screenShield . lock ( true ) ;
2009-11-10 12:13:58 -05:00
} ,
_onLoginScreenActivate : function ( ) {
2012-09-20 17:18:51 -04:00
this . menu . close ( BoxPointer . PopupAnimation . NONE ) ;
2010-06-03 19:21:08 -04:00
Main . overview . hide ( ) ;
2013-03-04 13:33:36 -05:00
if ( Main . screenShield )
Main . screenShield . lock ( false ) ;
2012-08-14 11:49:46 -04:00
Gdm . goto _login _session _sync ( null ) ;
2009-11-10 12:13:58 -05:00
} ,
_onQuitSessionActivate : function ( ) {
2010-06-03 19:21:08 -04:00
Main . overview . hide ( ) ;
2011-03-12 15:34:01 -05:00
this . _session . LogoutRemote ( 0 ) ;
2009-11-10 12:13:58 -05:00
} ,
2012-06-03 11:35:37 -04:00
_onInstallUpdatesActivate : function ( ) {
Main . overview . hide ( ) ;
Util . spawn ( [ 'pkexec' , '/usr/libexec/pk-trigger-offline-update' ] ) ;
this . _session . RebootRemote ( ) ;
} ,
2013-02-11 11:39:29 -05:00
_openSessionWarnDialog : function ( sessions ) {
let dialog = new ModalDialog . ModalDialog ( ) ;
let subjectLabel = new St . Label ( { style _class : 'end-session-dialog-subject' ,
text : _ ( "Other users are logged in." ) } ) ;
dialog . contentLayout . add ( subjectLabel , { y _fill : true ,
y _align : St . Align . START } ) ;
let descriptionLabel = new St . Label ( { style _class : 'end-session-dialog-description' } ) ;
descriptionLabel . set _text ( _ ( "Shutting down might cause them to lose unsaved work." ) ) ;
2013-03-02 10:55:13 -05:00
descriptionLabel . clutter _text . line _wrap = true ;
2013-02-11 11:39:29 -05:00
dialog . contentLayout . add ( descriptionLabel , { x _fill : true ,
y _fill : true ,
y _align : St . Align . START } ) ;
let scrollView = new St . ScrollView ( { style _class : 'end-session-dialog-app-list' } ) ;
scrollView . add _style _class _name ( 'vfade' ) ;
scrollView . set _policy ( Gtk . PolicyType . NEVER , Gtk . PolicyType . AUTOMATIC ) ;
dialog . contentLayout . add ( scrollView , { x _fill : true , y _fill : true } ) ;
let userList = new St . BoxLayout ( { vertical : true } ) ;
scrollView . add _actor ( userList ) ;
for ( let i = 0 ; i < sessions . length ; i ++ ) {
let session = sessions [ i ] ;
let userEntry = new St . BoxLayout ( { style _class : 'login-dialog-user-list-item' ,
vertical : false } ) ;
2013-04-23 22:31:08 -04:00
let avatar = new UserWidget . Avatar ( session . user ) ;
2013-02-11 11:39:29 -05:00
avatar . update ( ) ;
userEntry . add ( avatar . actor ) ;
let userLabelText = "" ; ;
let userName = session . user . get _real _name ( ) ?
session . user . get _real _name ( ) : session . username ;
if ( session . info . remote )
2013-03-10 19:37:52 -04:00
/* Translators: Remote here refers to a remote session, like a ssh login */
2013-02-11 11:39:29 -05:00
userLabelText = _ ( "%s (remote)" ) . format ( userName ) ;
else if ( session . info . type == "tty" )
2013-03-10 19:37:52 -04:00
/* Translators: Console here refers to a tty like a VT console */
2013-02-11 11:39:29 -05:00
userLabelText = _ ( "%s (console)" ) . format ( userName ) ;
else
userLabelText = userName ;
let textLayout = new St . BoxLayout ( { style _class : 'login-dialog-user-list-item-text-box' ,
vertical : true } ) ;
textLayout . add ( new St . Label ( { text : userLabelText } ) ,
{ y _fill : false ,
y _align : St . Align . MIDDLE ,
expand : true } ) ;
userEntry . add ( textLayout , { expand : true } ) ;
userList . add ( userEntry , { x _fill : true } ) ;
}
let cancelButton = { label : _ ( "Cancel" ) ,
action : function ( ) { dialog . close ( ) ; } ,
key : Clutter . Escape } ;
let powerOffButton = { label : _ ( "Power Off" ) , action : Lang . bind ( this , function ( ) {
dialog . close ( ) ;
this . _session . ShutdownRemote ( ) ;
} ) , default : true } ;
dialog . setButtons ( [ cancelButton , powerOffButton ] ) ;
dialog . open ( ) ;
} ,
2011-02-04 18:37:54 -05:00
_onSuspendOrPowerOffActivate : function ( ) {
2010-06-03 19:21:08 -04:00
Main . overview . hide ( ) ;
2011-02-04 18:37:54 -05:00
2012-05-10 07:24:12 -04:00
if ( this . _haveShutdown &&
2011-02-04 18:37:54 -05:00
this . _suspendOrPowerOffItem . state == PopupMenu . PopupAlternatingMenuItemState . DEFAULT ) {
2013-02-11 11:39:29 -05:00
this . _loginManager . listSessions ( Lang . bind ( this ,
function ( result ) {
let sessions = [ ] ;
let n = 0 ;
for ( let i = 0 ; i < result . length ; i ++ ) {
let [ id , uid , userName , seat , sessionPath ] = result [ i ] ;
let proxy = new SystemdLoginSession ( Gio . DBus . system ,
'org.freedesktop.login1' ,
sessionPath ) ;
2013-02-19 02:44:01 -05:00
if ( proxy . Class != 'user' )
2013-02-11 11:39:29 -05:00
continue ;
2013-03-02 10:53:50 -05:00
if ( proxy . State == 'closing' )
continue ;
2013-02-18 12:03:13 -05:00
if ( proxy . Id == GLib . getenv ( 'XDG_SESSION_ID' ) )
2013-02-11 11:39:29 -05:00
continue ;
sessions . push ( { user : this . _userManager . get _user ( userName ) ,
username : userName ,
2013-02-19 02:44:01 -05:00
info : { type : proxy . Type ,
remote : proxy . Remote }
2013-02-11 11:39:29 -05:00
} ) ;
// limit the number of entries
n ++ ;
if ( n == MAX _USERS _IN _SESSION _DIALOG )
break ;
}
if ( n != 0 )
this . _openSessionWarnDialog ( sessions ) ;
else
this . _session . ShutdownRemote ( ) ;
} ) ) ;
2012-05-10 07:24:12 -04:00
} else {
2012-10-23 09:49:25 -04:00
this . menu . close ( BoxPointer . PopupAnimation . NONE ) ;
this . _loginManager . suspend ( ) ;
2011-02-04 18:37:54 -05:00
}
2009-11-10 12:13:58 -05:00
}
2011-11-20 09:38:48 -05:00
} ) ;