2012-05-16 18:26:44 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
const Lang = imports.lang;
|
|
|
|
|
2012-05-17 10:09:02 -04:00
|
|
|
const Config = imports.misc.config;
|
2012-05-17 09:50:51 -04:00
|
|
|
const Main = imports.ui.main;
|
2012-05-16 18:26:44 -04:00
|
|
|
const Params = imports.misc.params;
|
|
|
|
|
2012-05-17 10:09:02 -04:00
|
|
|
|
|
|
|
const STANDARD_STATUS_AREA_SHELL_IMPLEMENTATION = {
|
|
|
|
'a11y': imports.ui.status.accessibility.ATIndicator,
|
|
|
|
'volume': imports.ui.status.volume.Indicator,
|
|
|
|
'battery': imports.ui.status.power.Indicator,
|
2012-04-18 22:01:29 -04:00
|
|
|
'keyboard': imports.ui.status.keyboard.InputSourceIndicator,
|
2012-05-17 10:09:02 -04:00
|
|
|
'userMenu': imports.ui.userMenu.UserMenuButton
|
|
|
|
};
|
|
|
|
|
|
|
|
if (Config.HAVE_BLUETOOTH)
|
|
|
|
STANDARD_STATUS_AREA_SHELL_IMPLEMENTATION['bluetooth'] =
|
|
|
|
imports.ui.status.bluetooth.Indicator;
|
|
|
|
|
|
|
|
try {
|
|
|
|
STANDARD_STATUS_AREA_SHELL_IMPLEMENTATION['network'] =
|
|
|
|
imports.ui.status.network.NMApplet;
|
|
|
|
} catch(e) {
|
|
|
|
log('NMApplet is not supported. It is possible that your NetworkManager version is too old');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-16 18:26:44 -04:00
|
|
|
const DEFAULT_MODE = 'user';
|
|
|
|
|
|
|
|
const _modes = {
|
2012-05-16 18:59:02 -04:00
|
|
|
'gdm': { hasOverview: false,
|
2012-05-16 19:12:39 -04:00
|
|
|
hasAppMenu: false,
|
2012-05-17 18:32:04 -04:00
|
|
|
showCalendarEvents: false,
|
2012-05-16 19:43:59 -04:00
|
|
|
allowSettings: false,
|
2012-05-16 20:08:56 -04:00
|
|
|
allowExtensions: false,
|
2012-05-17 09:55:35 -04:00
|
|
|
allowKeybindingsWhenModal: true,
|
2012-05-17 07:41:02 -04:00
|
|
|
hasRunDialog: false,
|
2012-05-17 09:32:32 -04:00
|
|
|
hasWorkspaces: false,
|
2012-05-17 09:50:51 -04:00
|
|
|
createSession: Main.createGDMSession,
|
2012-05-17 09:52:02 -04:00
|
|
|
extraStylesheet: global.datadir + '/theme/gdm.css',
|
2012-05-17 10:09:02 -04:00
|
|
|
statusArea: {
|
|
|
|
order: [
|
|
|
|
'a11y', 'display', 'keyboard',
|
|
|
|
'volume', 'battery', 'powerMenu'
|
|
|
|
],
|
|
|
|
implementation: {
|
|
|
|
'a11y': imports.ui.status.accessibility.ATIndicator,
|
|
|
|
'volume': imports.ui.status.volume.Indicator,
|
|
|
|
'battery': imports.ui.status.power.Indicator,
|
2012-04-18 22:01:29 -04:00
|
|
|
'keyboard': imports.ui.status.keyboard.InputSourceIndicator,
|
2012-05-17 10:09:02 -04:00
|
|
|
'powerMenu': imports.gdm.powerMenu.PowerMenuButton
|
|
|
|
}
|
2012-05-17 10:11:54 -04:00
|
|
|
}
|
|
|
|
},
|
2012-05-16 18:26:44 -04:00
|
|
|
|
2012-05-23 23:37:09 -04:00
|
|
|
'initial-setup': { hasOverview: false,
|
|
|
|
hasAppMenu: false,
|
|
|
|
showCalendarEvents: false,
|
|
|
|
allowSettings: false,
|
|
|
|
allowExtensions: false,
|
|
|
|
allowKeybindingsWhenModal: false,
|
|
|
|
hasRunDialog: false,
|
|
|
|
hasWorkspaces: false,
|
|
|
|
createSession: Main.createInitialSetupSession,
|
|
|
|
extraStylesheet: null,
|
|
|
|
statusArea: {
|
|
|
|
order: [
|
|
|
|
'a11y', 'keyboard', 'volume'
|
|
|
|
],
|
|
|
|
implementation: {
|
|
|
|
'a11y': imports.ui.status.accessibility.ATIndicator,
|
|
|
|
'keyboard': imports.ui.status.keyboard.XKBIndicator,
|
|
|
|
'volume': imports.ui.status.volume.Indicator
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-05-16 18:59:02 -04:00
|
|
|
'user': { hasOverview: true,
|
2012-05-16 19:12:39 -04:00
|
|
|
hasAppMenu: true,
|
2012-05-17 18:32:04 -04:00
|
|
|
showCalendarEvents: true,
|
2012-05-16 19:43:59 -04:00
|
|
|
allowSettings: true,
|
2012-05-16 20:08:56 -04:00
|
|
|
allowExtensions: true,
|
2012-05-17 09:55:35 -04:00
|
|
|
allowKeybindingsWhenModal: false,
|
2012-05-17 07:41:02 -04:00
|
|
|
hasRunDialog: true,
|
2012-05-17 09:32:32 -04:00
|
|
|
hasWorkspaces: true,
|
2012-05-17 09:50:51 -04:00
|
|
|
createSession: Main.createUserSession,
|
2012-05-17 09:52:02 -04:00
|
|
|
extraStylesheet: null,
|
2012-05-17 10:09:02 -04:00
|
|
|
statusArea: {
|
|
|
|
order: [
|
2012-05-29 15:31:02 -04:00
|
|
|
'input-method', 'a11y', 'keyboard', 'volume', 'bluetooth',
|
2012-05-17 10:09:02 -04:00
|
|
|
'network', 'battery', 'userMenu'
|
|
|
|
],
|
|
|
|
implementation: STANDARD_STATUS_AREA_SHELL_IMPLEMENTATION
|
2012-05-17 10:11:54 -04:00
|
|
|
}
|
|
|
|
}
|
2012-05-16 18:26:44 -04:00
|
|
|
};
|
|
|
|
|
2012-05-17 21:52:57 -04:00
|
|
|
function listModes() {
|
|
|
|
let modes = Object.getOwnPropertyNames(_modes);
|
|
|
|
for (let i = 0; i < modes.length; i++)
|
|
|
|
print(modes[i]);
|
|
|
|
}
|
|
|
|
|
2012-05-16 18:26:44 -04:00
|
|
|
const SessionMode = new Lang.Class({
|
|
|
|
Name: 'SessionMode',
|
|
|
|
|
|
|
|
_init: function() {
|
|
|
|
let params = _modes[global.session_mode];
|
|
|
|
|
|
|
|
params = Params.parse(params, _modes[DEFAULT_MODE]);
|
2012-05-17 09:50:51 -04:00
|
|
|
|
|
|
|
this._createSession = params.createSession;
|
|
|
|
delete params.createSession;
|
|
|
|
|
2012-05-16 18:26:44 -04:00
|
|
|
Lang.copyProperties(params, this);
|
2012-05-17 09:50:51 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
createSession: function() {
|
|
|
|
if (this._createSession)
|
|
|
|
this._createSession();
|
2012-05-16 18:26:44 -04:00
|
|
|
}
|
|
|
|
});
|