2012-02-06 17:28:48 -05:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
|
|
const Gio = imports.gi.Gio;
|
2012-05-27 18:50:56 -04:00
|
|
|
const GnomeDesktop = imports.gi.GnomeDesktop;
|
2012-02-06 17:28:48 -05:00
|
|
|
const Lang = imports.lang;
|
|
|
|
const Meta = imports.gi.Meta;
|
2012-05-21 12:42:45 -04:00
|
|
|
const Signals = imports.signals;
|
2012-02-06 17:28:48 -05:00
|
|
|
const St = imports.gi.St;
|
|
|
|
|
|
|
|
const GnomeSession = imports.misc.gnomeSession;
|
|
|
|
const Lightbox = imports.ui.lightbox;
|
|
|
|
const Main = imports.ui.main;
|
2012-05-22 18:02:00 -04:00
|
|
|
const MessageTray = imports.ui.messageTray;
|
2012-05-24 16:47:48 -04:00
|
|
|
const Tweener = imports.ui.tweener;
|
2012-02-06 17:28:48 -05:00
|
|
|
|
|
|
|
const SCREENSAVER_SCHEMA = 'org.gnome.desktop.screensaver';
|
|
|
|
const LOCK_ENABLED_KEY = 'lock-enabled';
|
|
|
|
|
2012-05-24 16:47:48 -04:00
|
|
|
const CURTAIN_SLIDE_TIME = 1.2;
|
|
|
|
// fraction of screen height the arrow must reach before completing
|
|
|
|
// the slide up automatically
|
2012-08-03 11:44:54 -04:00
|
|
|
const ARROW_DRAG_TRESHOLD = 0.1;
|
2012-05-24 16:47:48 -04:00
|
|
|
|
2012-05-22 18:02:00 -04:00
|
|
|
const SUMMARY_ICON_SIZE = 48;
|
|
|
|
|
2012-06-02 18:10:23 -04:00
|
|
|
// Lightbox fading times
|
|
|
|
// STANDARD_FADE_TIME is used when the session goes idle, while
|
|
|
|
// SHORT_FADE_TIME is used when requesting lock explicitly from the user menu
|
|
|
|
const STANDARD_FADE_TIME = 10;
|
|
|
|
const SHORT_FADE_TIME = 2;
|
|
|
|
|
2012-05-27 18:50:56 -04:00
|
|
|
const Clock = new Lang.Class({
|
|
|
|
Name: 'ScreenShieldClock',
|
|
|
|
|
|
|
|
CLOCK_FORMAT_KEY: 'clock-format',
|
|
|
|
CLOCK_SHOW_SECONDS_KEY: 'clock-show-seconds',
|
|
|
|
|
|
|
|
_init: function() {
|
|
|
|
this.actor = new St.BoxLayout({ style_class: 'screen-shield-clock',
|
|
|
|
vertical: true });
|
|
|
|
|
|
|
|
this._time = new St.Label({ style_class: 'screen-shield-clock-time' });
|
|
|
|
this._date = new St.Label({ style_class: 'screen-shield-clock-date' });
|
|
|
|
|
|
|
|
this.actor.add(this._time, { x_align: St.Align.MIDDLE });
|
|
|
|
this.actor.add(this._date, { x_align: St.Align.MIDDLE });
|
|
|
|
|
|
|
|
this._wallClock = new GnomeDesktop.WallClock({ time_only: true });
|
|
|
|
this._wallClock.connect('notify::clock', Lang.bind(this, this._updateClock));
|
|
|
|
|
|
|
|
this._updateClock();
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateClock: function() {
|
|
|
|
this._time.text = this._wallClock.clock;
|
|
|
|
|
|
|
|
let date = new Date();
|
|
|
|
/* Translators: This is a time format for a date in
|
|
|
|
long format */
|
|
|
|
this._date.text = date.toLocaleFormat(_("%A, %B %d"));
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function() {
|
|
|
|
this.actor.destroy();
|
|
|
|
this._wallClock.run_dispose();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-05-22 18:02:00 -04:00
|
|
|
const NotificationsBox = new Lang.Class({
|
|
|
|
Name: 'NotificationsBox',
|
|
|
|
|
|
|
|
_init: function() {
|
|
|
|
this.actor = new St.BoxLayout({ vertical: true,
|
|
|
|
name: 'screenShieldNotifications',
|
2012-08-06 13:02:12 -04:00
|
|
|
style_class: 'screen-shield-notifications-box' });
|
2012-05-22 18:02:00 -04:00
|
|
|
|
|
|
|
this._residentNotificationBox = new St.BoxLayout({ vertical: true,
|
|
|
|
style_class: 'screen-shield-notifications-box' });
|
2012-08-06 13:02:12 -04:00
|
|
|
let scrollView = new St.ScrollView({ x_fill: false, x_align: St.Align.MIDDLE });
|
2012-05-22 18:02:00 -04:00
|
|
|
this._persistentNotificationBox = new St.BoxLayout({ vertical: true,
|
|
|
|
style_class: 'screen-shield-notifications-box' });
|
2012-08-06 13:02:12 -04:00
|
|
|
scrollView.add_actor(this._persistentNotificationBox);
|
2012-05-22 18:02:00 -04:00
|
|
|
|
|
|
|
this.actor.add(this._residentNotificationBox, { x_fill: true });
|
2012-08-06 13:02:12 -04:00
|
|
|
this.actor.add(scrollView, { x_fill: true, x_align: St.Align.MIDDLE });
|
2012-05-22 18:02:00 -04:00
|
|
|
|
|
|
|
this._items = [];
|
|
|
|
Main.messageTray.getSummaryItems().forEach(Lang.bind(this, function(item) {
|
|
|
|
this._summaryItemAdded(Main.messageTray, item);
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._summaryAddedId = Main.messageTray.connect('summary-item-added', Lang.bind(this, this._summaryItemAdded));
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function() {
|
|
|
|
if (this._summaryAddedId) {
|
|
|
|
Main.messageTray.disconnect(this._summaryAddedId);
|
|
|
|
this._summaryAddedId = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < this._items.length; i++)
|
|
|
|
this._removeItem(this._items[i]);
|
|
|
|
this._items = [];
|
|
|
|
|
|
|
|
this.actor.destroy();
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateVisibility: function() {
|
|
|
|
if (this._residentNotificationBox.get_n_children() > 0) {
|
|
|
|
this.actor.show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let children = this._persistentNotificationBox.get_children()
|
|
|
|
this.actor.visible = children.some(function(a) { return a.visible; });
|
|
|
|
},
|
|
|
|
|
|
|
|
_sourceIsResident: function(source) {
|
|
|
|
return source.hasResidentNotification() && !source.isChat;
|
|
|
|
},
|
|
|
|
|
|
|
|
_makeNotificationCountText: function(source) {
|
|
|
|
if (source.isChat)
|
|
|
|
return ngettext("%d new message", "%d new messages", source.count).format(source.count);
|
|
|
|
else
|
|
|
|
return ngettext("%d new notification", "%d new notifications", source.count).format(source.count);
|
|
|
|
},
|
|
|
|
|
|
|
|
_makeNotificationSource: function(source) {
|
|
|
|
let box = new St.BoxLayout({ style_class: 'screen-shield-notification-source' });
|
|
|
|
|
|
|
|
let iconClone = source.createIcon(SUMMARY_ICON_SIZE);
|
|
|
|
let sourceActor = new MessageTray.SourceActor(source, SUMMARY_ICON_SIZE);
|
|
|
|
sourceActor.setIcon(iconClone);
|
|
|
|
box.add(sourceActor.actor, { y_fill: true });
|
|
|
|
|
|
|
|
let textBox = new St.BoxLayout({ vertical: true });
|
|
|
|
box.add(textBox, { y_fill: true, expand: true });
|
|
|
|
|
|
|
|
let label = new St.Label({ text: source.title,
|
|
|
|
style_class: 'screen-shield-notification-label' });
|
|
|
|
textBox.add(label);
|
|
|
|
|
|
|
|
let countLabel = new St.Label({ text: this._makeNotificationCountText(source),
|
|
|
|
style_class: 'screen-shield-notification-count-text' });
|
|
|
|
textBox.add(countLabel);
|
|
|
|
|
|
|
|
box.visible = source.count != 0;
|
|
|
|
return [box, countLabel];
|
|
|
|
},
|
|
|
|
|
|
|
|
_summaryItemAdded: function(tray, item) {
|
|
|
|
// Ignore transient sources
|
|
|
|
if (item.source.isTransient)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let obj = {
|
|
|
|
item: item,
|
|
|
|
source: item.source,
|
|
|
|
resident: this._sourceIsResident(item.source),
|
|
|
|
contentUpdatedId: 0,
|
|
|
|
sourceDestroyId: 0,
|
|
|
|
sourceBox: null,
|
|
|
|
countLabel: null,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (obj.resident) {
|
|
|
|
item.prepareNotificationStackForShowing();
|
|
|
|
this._residentNotificationBox.add(item.notificationStackView);
|
|
|
|
} else {
|
|
|
|
[obj.sourceBox, obj.countLabel] = this._makeNotificationSource(item.source);
|
2012-08-06 13:02:12 -04:00
|
|
|
this._persistentNotificationBox.add(obj.sourceBox, { x_fill: false, x_align: St.Align.MIDDLE });
|
2012-05-22 18:02:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
obj.contentUpdatedId = item.connect('content-updated', Lang.bind(this, this._onItemContentUpdated));
|
2012-08-03 19:16:07 -04:00
|
|
|
obj.sourceCountChangedId = item.source.connect('count-changed', Lang.bind(this, this._onSourceChanged));
|
|
|
|
obj.sourceTitleChangedId = item.source.connect('title-changed', Lang.bind(this, this._onSourceChanged));
|
2012-05-22 18:02:00 -04:00
|
|
|
obj.sourceDestroyId = item.source.connect('destroy', Lang.bind(this, this._onSourceDestroy));
|
|
|
|
this._items.push(obj);
|
|
|
|
|
|
|
|
this._updateVisibility();
|
|
|
|
},
|
|
|
|
|
|
|
|
_findSource: function(source) {
|
|
|
|
for (let i = 0; i < this._items.length; i++) {
|
|
|
|
if (this._items[i].source == source)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onItemContentUpdated: function(item) {
|
|
|
|
let obj = this._items[this._findSource(item.source)];
|
|
|
|
this._updateItem(obj);
|
|
|
|
},
|
|
|
|
|
2012-08-03 19:16:07 -04:00
|
|
|
_onSourceChanged: function(source) {
|
2012-05-22 18:02:00 -04:00
|
|
|
let obj = this._items[this._findSource(source)];
|
|
|
|
this._updateItem(obj);
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateItem: function(obj) {
|
|
|
|
let itemShouldBeResident = this._sourceIsResident(obj.source);
|
|
|
|
|
|
|
|
if (itemShouldBeResident && obj.resident) {
|
|
|
|
// Nothing to do here, the actor is already updated
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (obj.resident && !itemShouldBeResident) {
|
|
|
|
// make into a regular item
|
|
|
|
this._residentNotificationBox.remove_actor(obj.item.notificationStackView);
|
|
|
|
|
|
|
|
[obj.sourceBox, obj.countLabel] = this._makeNotificationSource(obj.source);
|
|
|
|
this._persistentNotificationBox.add(obj.sourceBox);
|
|
|
|
} else if (itemShouldBeResident && !obj.resident) {
|
|
|
|
// make into a resident item
|
|
|
|
obj.sourceBox.destroy();
|
|
|
|
obj.sourceBox = obj.countLabel = null;
|
2012-08-03 19:16:07 -04:00
|
|
|
obj.resident = true;
|
2012-05-22 18:02:00 -04:00
|
|
|
|
|
|
|
obj.item.prepareNotificationStackForShowing();
|
|
|
|
this._residentNotificationBox.add(obj.item.notificationStackView);
|
|
|
|
} else {
|
|
|
|
// just update the counter
|
|
|
|
obj.countLabel.text = this._makeNotificationCountText(obj.item.source);
|
|
|
|
obj.sourceBox.visible = obj.source.count != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._updateVisibility();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onSourceDestroy: function(source) {
|
|
|
|
let idx = this._findSource(source);
|
|
|
|
|
|
|
|
this._removeItem(this._items[idx]);
|
|
|
|
this._items.splice(idx, 1);
|
|
|
|
|
|
|
|
this._updateVisibility();
|
|
|
|
},
|
|
|
|
|
|
|
|
_removeItem: function(obj) {
|
|
|
|
if (obj.resident) {
|
|
|
|
this._residentNotificationBox.remove_actor(obj.item.notificationStackView);
|
|
|
|
obj.item.doneShowingNotificationStack();
|
|
|
|
} else {
|
|
|
|
obj.sourceBox.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
obj.item.disconnect(obj.contentUpdatedId);
|
|
|
|
obj.source.disconnect(obj.sourceDestroyId);
|
|
|
|
obj.source.disconnect(obj.sourceCountChangedId);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2012-02-06 17:28:48 -05:00
|
|
|
/**
|
|
|
|
* To test screen shield, make sure to kill gnome-screensaver.
|
|
|
|
*
|
|
|
|
* If you are setting org.gnome.desktop.session.idle-delay directly in dconf,
|
|
|
|
* rather than through System Settings, you also need to set
|
|
|
|
* org.gnome.settings-daemon.plugins.power.sleep-display-ac and
|
|
|
|
* org.gnome.settings-daemon.plugins.power.sleep-display-battery to the same value.
|
|
|
|
* This will ensure that the screen blanks at the right time when it fades out.
|
|
|
|
* https://bugzilla.gnome.org/show_bug.cgi?id=668703 explains the dependance.
|
|
|
|
*/
|
|
|
|
const ScreenShield = new Lang.Class({
|
|
|
|
Name: 'ScreenShield',
|
|
|
|
|
|
|
|
_init: function() {
|
2012-05-22 17:22:38 -04:00
|
|
|
this.actor = Main.layoutManager.screenShieldGroup;
|
|
|
|
|
2012-05-24 16:47:48 -04:00
|
|
|
this._lockScreenGroup = new St.Widget({ x_expand: true,
|
|
|
|
y_expand: true,
|
|
|
|
reactive: true,
|
|
|
|
can_focus: true,
|
|
|
|
layout_manager: new Clutter.BinLayout()
|
|
|
|
});
|
|
|
|
this._lockScreenGroup.connect('key-release-event',
|
|
|
|
Lang.bind(this, this._onLockScreenKeyRelease));
|
|
|
|
|
|
|
|
this._background = Meta.BackgroundActor.new_for_screen(global.screen);
|
|
|
|
this._lockScreenGroup.add_actor(this._background);
|
|
|
|
|
|
|
|
// FIXME: build the rest of the lock screen here
|
|
|
|
|
|
|
|
this._arrow = new St.DrawingArea({ style_class: 'arrow',
|
|
|
|
reactive: true,
|
|
|
|
x_align: Clutter.ActorAlign.CENTER,
|
|
|
|
y_align: Clutter.ActorAlign.END,
|
|
|
|
// HACK: without these, ClutterBinLayout
|
|
|
|
// ignores alignment properties on the actor
|
|
|
|
x_expand: true,
|
|
|
|
y_expand: true
|
|
|
|
});
|
|
|
|
this._arrow.connect('repaint', Lang.bind(this, this._drawArrow));
|
|
|
|
this._lockScreenGroup.add_actor(this._arrow);
|
|
|
|
|
|
|
|
let action = new Clutter.DragAction({ drag_axis: Clutter.DragAxis.Y_AXIS });
|
|
|
|
action.connect('drag-begin', Lang.bind(this, this._onDragBegin));
|
|
|
|
action.connect('drag-end', Lang.bind(this, this._onDragEnd));
|
|
|
|
this._lockScreenGroup.add_action(action);
|
|
|
|
|
|
|
|
this._lockDialogGroup = new St.Widget({ x_expand: true,
|
|
|
|
y_expand: true });
|
|
|
|
|
|
|
|
this.actor.add_actor(this._lockDialogGroup);
|
|
|
|
this.actor.add_actor(this._lockScreenGroup);
|
|
|
|
|
2012-02-06 17:28:48 -05:00
|
|
|
this._presence = new GnomeSession.Presence(Lang.bind(this, function(proxy, error) {
|
|
|
|
if (error) {
|
|
|
|
logError(error, 'Error while reading gnome-session presence');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._onStatusChanged(proxy.status);
|
|
|
|
}));
|
|
|
|
this._presence.connectSignal('StatusChanged', Lang.bind(this, function(proxy, senderName, [status]) {
|
|
|
|
this._onStatusChanged(status);
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._settings = new Gio.Settings({ schema: SCREENSAVER_SCHEMA });
|
|
|
|
|
2012-05-21 12:42:45 -04:00
|
|
|
this._isModal = false;
|
|
|
|
this._isLocked = false;
|
2012-05-27 18:50:56 -04:00
|
|
|
this._hasLockScreen = false;
|
2012-05-22 17:22:38 -04:00
|
|
|
|
|
|
|
this._lightbox = new Lightbox.Lightbox(Main.uiGroup,
|
2012-06-02 18:10:23 -04:00
|
|
|
{ inhibitEvents: true,
|
|
|
|
fadeInTime: STANDARD_FADE_TIME,
|
|
|
|
fadeFactor: 1 });
|
2012-05-24 16:47:48 -04:00
|
|
|
},
|
2012-05-22 17:22:38 -04:00
|
|
|
|
2012-05-24 16:47:48 -04:00
|
|
|
_onLockScreenKeyRelease: function(actor, event) {
|
|
|
|
if (event.get_key_symbol() == Clutter.KEY_Escape) {
|
2012-05-26 11:04:25 -04:00
|
|
|
this._showUnlockDialog(true);
|
2012-05-24 16:47:48 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_drawArrow: function() {
|
|
|
|
let cr = this._arrow.get_context();
|
|
|
|
let [w, h] = this._arrow.get_surface_size();
|
|
|
|
let node = this._arrow.get_theme_node();
|
|
|
|
|
|
|
|
Clutter.cairo_set_source_color(cr, node.get_foreground_color());
|
|
|
|
|
|
|
|
cr.moveTo(0, h);
|
|
|
|
cr.lineTo(w/2, 0);
|
|
|
|
cr.lineTo(w, h);
|
|
|
|
cr.fill();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onDragBegin: function() {
|
|
|
|
Tweener.removeTweens(this._lockScreenGroup);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onDragEnd: function(action, actor, eventX, eventY, modifiers) {
|
|
|
|
if (this._lockScreenGroup.y < -(ARROW_DRAG_TRESHOLD * global.stage.height)) {
|
|
|
|
// Complete motion automatically
|
2012-05-26 11:04:25 -04:00
|
|
|
this._showUnlockDialog(true);
|
2012-05-24 16:47:48 -04:00
|
|
|
} else {
|
|
|
|
// restore the lock screen to its original place
|
|
|
|
// try to use the same speed as the normal animation
|
|
|
|
let h = global.stage.height;
|
|
|
|
let time = CURTAIN_SLIDE_TIME * (-this._lockScreenGroup.y) / h;
|
|
|
|
Tweener.removeTweens(this._lockScreenGroup);
|
|
|
|
Tweener.addTween(this._lockScreenGroup,
|
|
|
|
{ y: 0,
|
|
|
|
time: time,
|
|
|
|
transition: 'linear',
|
|
|
|
onComplete: function() {
|
|
|
|
this.fixed_position_set = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2012-02-06 17:28:48 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_onStatusChanged: function(status) {
|
|
|
|
if (status == GnomeSession.PresenceStatus.IDLE) {
|
2012-05-21 12:42:45 -04:00
|
|
|
if (this._dialog) {
|
|
|
|
this._dialog.cancel();
|
2012-05-26 11:04:25 -04:00
|
|
|
if (!this._keepDialog) {
|
|
|
|
this._dialog = null;
|
|
|
|
}
|
2012-05-21 12:42:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this._isModal) {
|
2012-05-22 17:22:38 -04:00
|
|
|
Main.pushModal(this.actor);
|
2012-05-21 12:42:45 -04:00
|
|
|
this._isModal = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this._isLocked)
|
|
|
|
this._lightbox.show();
|
2012-02-06 17:28:48 -05:00
|
|
|
} else {
|
|
|
|
let lightboxWasShown = this._lightbox.shown;
|
|
|
|
this._lightbox.hide();
|
2012-05-20 12:30:14 -04:00
|
|
|
|
2012-05-21 12:42:45 -04:00
|
|
|
let shouldLock = lightboxWasShown && this._settings.get_boolean(LOCK_ENABLED_KEY);
|
|
|
|
if (shouldLock || this._isLocked) {
|
2012-06-02 18:10:23 -04:00
|
|
|
this.lock(false);
|
2012-05-21 12:42:45 -04:00
|
|
|
} else if (this._isModal) {
|
2012-05-24 16:47:48 -04:00
|
|
|
this.unlock();
|
2012-02-06 17:28:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-05-26 11:04:25 -04:00
|
|
|
showDialog: function() {
|
2012-06-02 18:10:23 -04:00
|
|
|
this.lock(true);
|
2012-05-26 11:04:25 -04:00
|
|
|
this._showUnlockDialog(false);
|
|
|
|
},
|
2012-05-20 12:30:14 -04:00
|
|
|
|
2012-05-26 11:04:25 -04:00
|
|
|
_showUnlockDialog: function(animate) {
|
|
|
|
if (animate) {
|
|
|
|
// Tween the lock screen out of screen
|
|
|
|
// try to use the same speed regardless of original position
|
|
|
|
let h = global.stage.height;
|
|
|
|
let time = CURTAIN_SLIDE_TIME * (h + this._lockScreenGroup.y) / h;
|
|
|
|
Tweener.removeTweens(this._lockScreenGroup);
|
|
|
|
Tweener.addTween(this._lockScreenGroup,
|
|
|
|
{ y: -h,
|
|
|
|
time: time,
|
|
|
|
transition: 'linear',
|
|
|
|
onComplete: Lang.bind(this, this._hideLockScreen),
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this._hideLockScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this._dialog) {
|
|
|
|
[this._dialog, this._keepDialog] = Main.sessionMode.createUnlockDialog(this._lockDialogGroup);
|
|
|
|
if (!this._dialog) {
|
|
|
|
// This session mode has no locking capabilities
|
|
|
|
this.unlock();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._dialog.connect('loaded', Lang.bind(this, function() {
|
|
|
|
if (!this._dialog.open()) {
|
|
|
|
log('Could not open login dialog: failed to acquire grab');
|
|
|
|
this.unlock();
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._dialog.connect('failed', Lang.bind(this, this._onUnlockFailed));
|
|
|
|
this._dialog.connect('unlocked', Lang.bind(this, this._onUnlockSucceded));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._keepDialog) {
|
|
|
|
// Notify the other components that even though we are showing the
|
|
|
|
// screenshield, we're not in a locked state
|
|
|
|
// (this happens for the gdm greeter)
|
|
|
|
|
|
|
|
this._isLocked = false;
|
|
|
|
this.emit('lock-status-changed', false);
|
2012-05-21 12:42:45 -04:00
|
|
|
}
|
2012-02-06 17:28:48 -05:00
|
|
|
},
|
|
|
|
|
2012-05-20 12:30:14 -04:00
|
|
|
_onUnlockFailed: function() {
|
|
|
|
this._dialog.destroy();
|
|
|
|
this._dialog = null;
|
|
|
|
|
2012-06-02 18:10:23 -04:00
|
|
|
this._resetLockScreen(false);
|
2012-05-20 12:30:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_onUnlockSucceded: function() {
|
2012-05-24 16:47:48 -04:00
|
|
|
this.unlock();
|
|
|
|
},
|
2012-05-20 12:30:14 -04:00
|
|
|
|
2012-05-24 16:47:48 -04:00
|
|
|
_hideLockScreen: function() {
|
|
|
|
this._arrow.hide();
|
|
|
|
this._lockScreenGroup.hide();
|
|
|
|
},
|
|
|
|
|
2012-06-02 18:10:23 -04:00
|
|
|
_resetLockScreen: function(animate) {
|
|
|
|
if (animate) {
|
|
|
|
this.actor.opacity = 0;
|
|
|
|
Tweener.removeTweens(this.actor);
|
|
|
|
Tweener.addTween(this.actor,
|
|
|
|
{ opacity: 255,
|
|
|
|
time: SHORT_FADE_TIME,
|
|
|
|
transition: 'easeOutQuad',
|
|
|
|
onComplete: function() {
|
|
|
|
this.emit('lock-screen-shown');
|
|
|
|
},
|
|
|
|
onCompleteScope: this
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.emit('lock-screen-shown');
|
|
|
|
}
|
|
|
|
|
2012-05-24 16:47:48 -04:00
|
|
|
this._lockScreenGroup.fixed_position_set = false;
|
|
|
|
this._lockScreenGroup.show();
|
|
|
|
this._arrow.show();
|
|
|
|
|
|
|
|
this._lockScreenGroup.grab_key_focus();
|
2012-02-06 17:28:48 -05:00
|
|
|
},
|
2012-05-21 12:42:45 -04:00
|
|
|
|
2012-05-27 18:50:56 -04:00
|
|
|
// Some of the actors in the lock screen are heavy in
|
|
|
|
// resources, so we only create them when needed
|
|
|
|
_prepareLockScreen: function() {
|
|
|
|
this._lockScreenContentsBox = new St.BoxLayout({ x_align: Clutter.ActorAlign.CENTER,
|
|
|
|
y_align: Clutter.ActorAlign.CENTER,
|
|
|
|
x_expand: true,
|
|
|
|
y_expand: true,
|
|
|
|
vertical: true });
|
|
|
|
this._clock = new Clock();
|
|
|
|
this._lockScreenContentsBox.add(this._clock.actor, { x_fill: true,
|
|
|
|
y_fill: true });
|
|
|
|
|
|
|
|
this._lockScreenGroup.add_actor(this._lockScreenContentsBox);
|
|
|
|
|
2012-05-22 18:02:00 -04:00
|
|
|
if (this._settings.get_boolean('show-notifications')) {
|
|
|
|
this._notificationsBox = new NotificationsBox();
|
|
|
|
this._lockScreenContentsBox.add(this._notificationsBox.actor, { x_fill: true,
|
|
|
|
y_fill: true,
|
|
|
|
expand: true });
|
|
|
|
}
|
|
|
|
|
2012-05-27 18:50:56 -04:00
|
|
|
this._hasLockScreen = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_clearLockScreen: function() {
|
|
|
|
this._clock.destroy();
|
|
|
|
this._clock = null;
|
|
|
|
|
2012-05-22 18:02:00 -04:00
|
|
|
if (this._notificationsBox) {
|
|
|
|
this._notificationsBox.destroy();
|
|
|
|
this._notificationsBox = null;
|
|
|
|
}
|
|
|
|
|
2012-05-27 18:50:56 -04:00
|
|
|
this._lockScreenContentsBox.destroy();
|
|
|
|
|
|
|
|
this._hasLockScreen = false;
|
|
|
|
},
|
|
|
|
|
2012-05-21 12:42:45 -04:00
|
|
|
get locked() {
|
|
|
|
return this._isLocked;
|
|
|
|
},
|
|
|
|
|
2012-05-24 16:47:48 -04:00
|
|
|
unlock: function() {
|
2012-05-27 18:50:56 -04:00
|
|
|
if (this._hasLockScreen)
|
|
|
|
this._clearLockScreen();
|
|
|
|
|
2012-05-26 11:04:25 -04:00
|
|
|
if (this._keepDialog) {
|
|
|
|
// The dialog must be kept alive,
|
|
|
|
// so immediately go back to it
|
|
|
|
// This will also reset _isLocked
|
|
|
|
this._showUnlockDialog(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-24 16:47:48 -04:00
|
|
|
if (this._dialog) {
|
|
|
|
this._dialog.destroy();
|
|
|
|
this._dialog = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._lightbox.hide();
|
|
|
|
|
|
|
|
Main.popModal(this.actor);
|
|
|
|
this.actor.hide();
|
|
|
|
|
|
|
|
this._isModal = false;
|
|
|
|
this._isLocked = false;
|
|
|
|
|
|
|
|
this.emit('lock-status-changed', false);
|
|
|
|
},
|
|
|
|
|
2012-06-02 18:10:23 -04:00
|
|
|
lock: function(animate) {
|
2012-05-27 18:50:56 -04:00
|
|
|
if (!this._hasLockScreen)
|
|
|
|
this._prepareLockScreen();
|
|
|
|
|
2012-05-21 12:42:45 -04:00
|
|
|
if (!this._isModal) {
|
|
|
|
Main.pushModal(this.actor);
|
|
|
|
this._isModal = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._isLocked = true;
|
|
|
|
this.actor.show();
|
2012-06-02 18:10:23 -04:00
|
|
|
this._resetLockScreen(animate);
|
2012-05-21 12:42:45 -04:00
|
|
|
|
2012-05-24 16:47:48 -04:00
|
|
|
this.emit('lock-status-changed', true);
|
|
|
|
},
|
2012-02-06 17:28:48 -05:00
|
|
|
});
|
2012-05-21 12:42:45 -04:00
|
|
|
Signals.addSignalMethods(ScreenShield.prototype);
|