2011-09-28 09:16:26 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2011-06-22 16:43:16 -04:00
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
const Clutter = imports.gi.Clutter;
|
2011-06-22 16:43:16 -04:00
|
|
|
const Lang = imports.lang;
|
|
|
|
const Signals = imports.signals;
|
|
|
|
const Gio = imports.gi.Gio;
|
|
|
|
const Gtk = imports.gi.Gtk;
|
|
|
|
const Pango = imports.gi.Pango;
|
|
|
|
const St = imports.gi.St;
|
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
const CheckBox = imports.ui.checkBox;
|
2011-07-12 11:29:49 -04:00
|
|
|
const Main = imports.ui.main;
|
|
|
|
const MessageTray = imports.ui.messageTray;
|
2011-06-22 16:43:16 -04:00
|
|
|
const ModalDialog = imports.ui.modalDialog;
|
2011-07-12 11:29:49 -04:00
|
|
|
const Params = imports.misc.params;
|
2012-06-19 18:12:11 -04:00
|
|
|
const ShellEntry = imports.ui.shellEntry;
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
|
|
const LIST_ITEM_ICON_SIZE = 48;
|
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
/* ------ Common Utils ------- */
|
2011-06-22 16:43:16 -04:00
|
|
|
function _setLabelText(label, text) {
|
|
|
|
if (text) {
|
|
|
|
label.set_text(text);
|
|
|
|
label.show();
|
|
|
|
} else {
|
|
|
|
label.set_text('');
|
|
|
|
label.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
function _setButtonsForChoices(dialog, choices) {
|
|
|
|
let buttons = [];
|
|
|
|
|
|
|
|
for (let idx = 0; idx < choices.length; idx++) {
|
|
|
|
let button = idx;
|
|
|
|
buttons.unshift({ label: choices[idx],
|
|
|
|
action: Lang.bind(dialog, function() {
|
|
|
|
dialog.emit('response', button);
|
|
|
|
})});
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog.setButtons(buttons);
|
|
|
|
}
|
|
|
|
|
|
|
|
function _setLabelsForMessage(dialog, message) {
|
|
|
|
let labels = message.split('\n');
|
|
|
|
|
|
|
|
_setLabelText(dialog.subjectLabel, labels[0]);
|
|
|
|
if (labels.length > 1)
|
|
|
|
_setLabelText(dialog.descriptionLabel, labels[1]);
|
|
|
|
}
|
|
|
|
|
2012-06-19 16:31:24 -04:00
|
|
|
function _createIcon(gicon) {
|
|
|
|
return new St.Icon({ gicon: gicon,
|
|
|
|
style_class: 'shell-mount-operation-icon' })
|
|
|
|
}
|
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
/* -------------------------------------------------------- */
|
|
|
|
|
2011-11-20 12:56:27 -05:00
|
|
|
const ListItem = new Lang.Class({
|
|
|
|
Name: 'ListItem',
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
|
|
_init: function(app) {
|
|
|
|
this._app = app;
|
|
|
|
|
|
|
|
let layout = new St.BoxLayout({ vertical: false});
|
|
|
|
|
|
|
|
this.actor = new St.Button({ style_class: 'show-processes-dialog-app-list-item',
|
|
|
|
can_focus: true,
|
|
|
|
child: layout,
|
|
|
|
reactive: true,
|
|
|
|
x_align: St.Align.START,
|
|
|
|
x_fill: true });
|
|
|
|
|
|
|
|
this._icon = this._app.create_icon_texture(LIST_ITEM_ICON_SIZE);
|
|
|
|
|
|
|
|
let iconBin = new St.Bin({ style_class: 'show-processes-dialog-app-list-item-icon',
|
|
|
|
child: this._icon });
|
|
|
|
layout.add(iconBin);
|
|
|
|
|
|
|
|
this._nameLabel = new St.Label({ text: this._app.get_name(),
|
|
|
|
style_class: 'show-processes-dialog-app-list-item-name' });
|
|
|
|
let labelBin = new St.Bin({ y_align: St.Align.MIDDLE,
|
|
|
|
child: this._nameLabel });
|
|
|
|
layout.add(labelBin);
|
|
|
|
|
|
|
|
this.actor.connect('clicked', Lang.bind(this, this._onClicked));
|
|
|
|
},
|
|
|
|
|
|
|
|
_onClicked: function() {
|
|
|
|
this.emit('activate');
|
2011-08-11 05:35:23 -04:00
|
|
|
this._app.activate();
|
2011-06-22 16:43:16 -04:00
|
|
|
}
|
2011-11-20 12:56:27 -05:00
|
|
|
});
|
2011-06-22 16:43:16 -04:00
|
|
|
Signals.addSignalMethods(ListItem.prototype);
|
|
|
|
|
2011-11-20 12:56:27 -05:00
|
|
|
const ShellMountOperation = new Lang.Class({
|
|
|
|
Name: 'ShellMountOperation',
|
2011-06-22 16:43:16 -04:00
|
|
|
|
2011-07-12 11:29:49 -04:00
|
|
|
_init: function(source, params) {
|
2012-06-19 20:22:26 -04:00
|
|
|
params = Params.parse(params, { existingDialog: null });
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
this._dialog = null;
|
2012-06-19 20:22:26 -04:00
|
|
|
this._dialogId = 0;
|
|
|
|
this._existingDialog = params.existingDialog;
|
2011-06-22 16:43:16 -04:00
|
|
|
this._processesDialog = null;
|
|
|
|
|
|
|
|
this.mountOp = new Shell.MountOperation();
|
|
|
|
|
|
|
|
this.mountOp.connect('ask-question',
|
|
|
|
Lang.bind(this, this._onAskQuestion));
|
|
|
|
this.mountOp.connect('ask-password',
|
|
|
|
Lang.bind(this, this._onAskPassword));
|
|
|
|
this.mountOp.connect('show-processes-2',
|
|
|
|
Lang.bind(this, this._onShowProcesses2));
|
|
|
|
this.mountOp.connect('aborted',
|
2012-06-19 20:22:26 -04:00
|
|
|
Lang.bind(this, this.close));
|
2011-06-22 16:43:16 -04:00
|
|
|
|
2012-06-19 16:31:24 -04:00
|
|
|
this._gicon = source.get_icon();
|
2011-06-22 16:43:16 -04:00
|
|
|
},
|
|
|
|
|
2012-06-19 20:22:26 -04:00
|
|
|
_closeExistingDialog: function() {
|
|
|
|
if (!this._existingDialog)
|
|
|
|
return;
|
|
|
|
|
2012-06-20 16:12:40 -04:00
|
|
|
this._existingDialog.close();
|
2012-06-19 20:22:26 -04:00
|
|
|
this._existingDialog = null;
|
|
|
|
},
|
|
|
|
|
2011-06-22 16:43:16 -04:00
|
|
|
_onAskQuestion: function(op, message, choices) {
|
2012-06-19 20:22:26 -04:00
|
|
|
this._closeExistingDialog();
|
2012-06-19 16:31:24 -04:00
|
|
|
this._dialog = new ShellMountQuestionDialog(this._gicon);
|
2011-07-12 11:44:08 -04:00
|
|
|
|
2012-06-20 16:14:02 -04:00
|
|
|
this._dialogId = this._dialog.connect('response', Lang.bind(this,
|
|
|
|
function(object, choice) {
|
|
|
|
this.mountOp.set_choice(choice);
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.HANDLED);
|
2011-07-12 11:44:08 -04:00
|
|
|
|
2012-06-20 16:14:02 -04:00
|
|
|
this.close();
|
|
|
|
}));
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
|
|
this._dialog.update(message, choices);
|
2012-06-20 16:12:40 -04:00
|
|
|
this._dialog.open();
|
2011-06-22 16:43:16 -04:00
|
|
|
},
|
|
|
|
|
2011-07-12 11:29:49 -04:00
|
|
|
_onAskPassword: function(op, message) {
|
2012-06-19 20:22:26 -04:00
|
|
|
if (this._existingDialog) {
|
|
|
|
this._dialog = this._existingDialog;
|
|
|
|
this._dialog.reaskPassword();
|
|
|
|
} else {
|
|
|
|
this._dialog = new ShellMountPasswordDialog(message, this._gicon);
|
|
|
|
}
|
2012-06-19 18:12:11 -04:00
|
|
|
|
2012-06-19 20:22:26 -04:00
|
|
|
this._dialogId = this._dialog.connect('response', Lang.bind(this,
|
|
|
|
function(object, choice, password, remember) {
|
2012-06-19 18:12:11 -04:00
|
|
|
if (choice == '-1') {
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.ABORTED);
|
|
|
|
} else {
|
|
|
|
if (remember)
|
|
|
|
this.mountOp.set_password_save(Gio.PasswordSave.PERMANENTLY);
|
|
|
|
else
|
|
|
|
this.mountOp.set_password_save(Gio.PasswordSave.NEVER);
|
|
|
|
|
|
|
|
this.mountOp.set_password(password);
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.HANDLED);
|
|
|
|
}
|
|
|
|
}));
|
2012-06-20 16:12:40 -04:00
|
|
|
this._dialog.open();
|
2011-06-22 16:43:16 -04:00
|
|
|
},
|
|
|
|
|
2012-06-19 20:22:26 -04:00
|
|
|
close: function(op) {
|
|
|
|
this._closeExistingDialog();
|
|
|
|
this._processesDialog = null;
|
2011-07-12 11:44:08 -04:00
|
|
|
|
2012-06-19 16:41:39 -04:00
|
|
|
if (this._dialog) {
|
2012-06-20 16:12:40 -04:00
|
|
|
this._dialog.close();
|
2012-06-19 16:41:39 -04:00
|
|
|
this._dialog = null;
|
|
|
|
}
|
2011-06-22 16:43:16 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_onShowProcesses2: function(op) {
|
2012-06-19 20:22:26 -04:00
|
|
|
this._closeExistingDialog();
|
|
|
|
|
2011-06-22 16:43:16 -04:00
|
|
|
let processes = op.get_show_processes_pids();
|
|
|
|
let choices = op.get_show_processes_choices();
|
|
|
|
let message = op.get_show_processes_message();
|
|
|
|
|
|
|
|
if (!this._processesDialog) {
|
2012-06-19 16:31:24 -04:00
|
|
|
this._processesDialog = new ShellProcessesDialog(this._gicon);
|
2011-07-12 11:44:08 -04:00
|
|
|
this._dialog = this._processesDialog;
|
|
|
|
|
2012-06-20 16:14:02 -04:00
|
|
|
this._dialogId = this._processesDialog.connect('response', Lang.bind(this,
|
|
|
|
function(object, choice) {
|
|
|
|
if (choice == -1) {
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.ABORTED);
|
|
|
|
} else {
|
|
|
|
this.mountOp.set_choice(choice);
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.HANDLED);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.close();
|
|
|
|
}));
|
2012-06-20 16:12:40 -04:00
|
|
|
this._processesDialog.open();
|
2011-06-22 16:43:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
this._processesDialog.update(message, processes, choices);
|
|
|
|
},
|
2012-06-19 20:22:26 -04:00
|
|
|
|
|
|
|
borrowDialog: function() {
|
|
|
|
if (this._dialogId != 0) {
|
|
|
|
this._dialog.disconnect(this._dialogId);
|
|
|
|
this._dialogId = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._dialog;
|
|
|
|
}
|
2011-11-20 12:56:27 -05:00
|
|
|
});
|
2011-06-22 16:43:16 -04:00
|
|
|
|
2011-11-20 10:32:59 -05:00
|
|
|
const ShellMountQuestionDialog = new Lang.Class({
|
|
|
|
Name: 'ShellMountQuestionDialog',
|
|
|
|
Extends: ModalDialog.ModalDialog,
|
2011-07-12 11:44:08 -04:00
|
|
|
|
2012-06-19 16:31:24 -04:00
|
|
|
_init: function(gicon) {
|
2011-11-20 10:32:59 -05:00
|
|
|
this.parent({ styleClass: 'mount-question-dialog' });
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
|
|
let mainContentLayout = new St.BoxLayout();
|
|
|
|
this.contentLayout.add(mainContentLayout, { x_fill: true,
|
|
|
|
y_fill: false });
|
|
|
|
|
2012-06-19 16:31:24 -04:00
|
|
|
this._iconBin = new St.Bin({ child: _createIcon(gicon) });
|
2011-07-12 11:44:08 -04:00
|
|
|
mainContentLayout.add(this._iconBin,
|
|
|
|
{ x_fill: true,
|
|
|
|
y_fill: false,
|
|
|
|
x_align: St.Align.END,
|
|
|
|
y_align: St.Align.MIDDLE });
|
|
|
|
|
|
|
|
let messageLayout = new St.BoxLayout({ vertical: true });
|
|
|
|
mainContentLayout.add(messageLayout,
|
|
|
|
{ y_align: St.Align.START });
|
|
|
|
|
|
|
|
this.subjectLabel = new St.Label({ style_class: 'mount-question-dialog-subject' });
|
2011-12-01 15:40:11 -05:00
|
|
|
this.subjectLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
|
|
this.subjectLabel.clutter_text.line_wrap = true;
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
|
|
messageLayout.add(this.subjectLabel,
|
|
|
|
{ y_fill: false,
|
|
|
|
y_align: St.Align.START });
|
|
|
|
|
|
|
|
this.descriptionLabel = new St.Label({ style_class: 'mount-question-dialog-description' });
|
|
|
|
this.descriptionLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
|
|
this.descriptionLabel.clutter_text.line_wrap = true;
|
|
|
|
|
|
|
|
messageLayout.add(this.descriptionLabel,
|
|
|
|
{ y_fill: true,
|
|
|
|
y_align: St.Align.START });
|
|
|
|
},
|
|
|
|
|
|
|
|
update: function(message, choices) {
|
|
|
|
_setLabelsForMessage(this, message);
|
|
|
|
_setButtonsForChoices(this, choices);
|
|
|
|
}
|
2011-11-20 10:32:59 -05:00
|
|
|
});
|
2011-07-12 11:44:08 -04:00
|
|
|
Signals.addSignalMethods(ShellMountQuestionDialog.prototype);
|
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
const ShellMountPasswordDialog = new Lang.Class({
|
|
|
|
Name: 'ShellMountPasswordDialog',
|
|
|
|
Extends: ModalDialog.ModalDialog,
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 20:22:26 -04:00
|
|
|
_init: function(message, gicon) {
|
2011-07-12 11:29:49 -04:00
|
|
|
let strings = message.split('\n');
|
2012-06-19 18:12:11 -04:00
|
|
|
this.parent({ styleClass: 'prompt-dialog' });
|
|
|
|
|
|
|
|
let mainContentBox = new St.BoxLayout({ style_class: 'prompt-dialog-main-layout',
|
|
|
|
vertical: false });
|
|
|
|
this.contentLayout.add(mainContentBox);
|
|
|
|
|
|
|
|
let icon = _createIcon(gicon);
|
|
|
|
mainContentBox.add(icon,
|
|
|
|
{ x_fill: true,
|
|
|
|
y_fill: false,
|
|
|
|
x_align: St.Align.END,
|
|
|
|
y_align: St.Align.START });
|
|
|
|
|
|
|
|
this._messageBox = new St.BoxLayout({ style_class: 'prompt-dialog-message-layout',
|
|
|
|
vertical: true });
|
|
|
|
mainContentBox.add(this._messageBox,
|
|
|
|
{ y_align: St.Align.START, expand: true, x_fill: true, y_fill: true });
|
|
|
|
|
|
|
|
let subject = new St.Label({ style_class: 'prompt-dialog-headline' });
|
|
|
|
this._messageBox.add(subject,
|
|
|
|
{ y_fill: false,
|
|
|
|
y_align: St.Align.START });
|
|
|
|
if (strings[0])
|
|
|
|
subject.set_text(strings[0]);
|
|
|
|
|
|
|
|
let description = new St.Label({ style_class: 'prompt-dialog-description' });
|
|
|
|
description.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
|
|
description.clutter_text.line_wrap = true;
|
|
|
|
this._messageBox.add(description,
|
|
|
|
{ y_fill: true,
|
|
|
|
y_align: St.Align.START });
|
|
|
|
if (strings[1])
|
|
|
|
description.set_text(strings[1]);
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
this._passwordBox = new St.BoxLayout({ vertical: false });
|
|
|
|
this._messageBox.add(this._passwordBox);
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
this._passwordLabel = new St.Label(({ style_class: 'prompt-dialog-password-label',
|
|
|
|
text: _("Passphrase") }));
|
|
|
|
this._passwordBox.add(this._passwordLabel);
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
this._passwordEntry = new St.Entry({ style_class: 'prompt-dialog-password-entry',
|
|
|
|
text: "",
|
|
|
|
can_focus: true});
|
|
|
|
ShellEntry.addContextMenu(this._passwordEntry, { isPassword: true });
|
|
|
|
this._passwordEntry.clutter_text.connect('activate', Lang.bind(this, this._onEntryActivate));
|
|
|
|
this._passwordEntry.clutter_text.set_password_char('\u25cf'); // ● U+25CF BLACK CIRCLE
|
|
|
|
this._passwordBox.add(this._passwordEntry, {expand: true });
|
|
|
|
this.setInitialKeyFocus(this._passwordEntry);
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 20:22:26 -04:00
|
|
|
this._errorMessageLabel = new St.Label({ style_class: 'prompt-dialog-error-label',
|
|
|
|
text: _("Sorry, that didn\'t work. Please try again.") });
|
|
|
|
this._errorMessageLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
|
|
this._errorMessageLabel.clutter_text.line_wrap = true;
|
|
|
|
this._errorMessageLabel.hide();
|
|
|
|
this._messageBox.add(this._errorMessageLabel);
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
this._rememberChoice = new CheckBox.CheckBox();
|
|
|
|
this._rememberChoice.getLabelActor().text = _("Remember Passphrase");
|
|
|
|
this._rememberChoice.actor.checked = true;
|
|
|
|
this._messageBox.add(this._rememberChoice.actor);
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
let buttons = [{ label: _("Cancel"),
|
|
|
|
action: Lang.bind(this, this._onCancelButton),
|
|
|
|
key: Clutter.Escape
|
|
|
|
},
|
|
|
|
{ label: _("Unlock"),
|
|
|
|
action: Lang.bind(this, this._onUnlockButton)
|
|
|
|
}];
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
this.setButtons(buttons);
|
2011-07-12 11:29:49 -04:00
|
|
|
},
|
|
|
|
|
2012-06-19 20:22:26 -04:00
|
|
|
reaskPassword: function() {
|
|
|
|
this._passwordEntry.set_text('');
|
|
|
|
this._errorMessageLabel.show();
|
|
|
|
},
|
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
_onCancelButton: function() {
|
|
|
|
this.emit('response', -1, '', false);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onUnlockButton: function() {
|
|
|
|
this._onEntryActivate();
|
|
|
|
},
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2012-06-19 18:12:11 -04:00
|
|
|
_onEntryActivate: function() {
|
|
|
|
this.emit('response', 1,
|
|
|
|
this._passwordEntry.get_text(),
|
|
|
|
this._rememberChoice.actor.checked);
|
2011-07-12 11:29:49 -04:00
|
|
|
}
|
2011-11-20 10:12:02 -05:00
|
|
|
});
|
2011-07-12 11:29:49 -04:00
|
|
|
|
2011-11-20 10:32:59 -05:00
|
|
|
const ShellProcessesDialog = new Lang.Class({
|
|
|
|
Name: 'ShellProcessesDialog',
|
|
|
|
Extends: ModalDialog.ModalDialog,
|
2011-06-22 16:43:16 -04:00
|
|
|
|
2012-06-19 16:31:24 -04:00
|
|
|
_init: function(gicon) {
|
2011-11-20 10:32:59 -05:00
|
|
|
this.parent({ styleClass: 'show-processes-dialog' });
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
|
|
let mainContentLayout = new St.BoxLayout();
|
|
|
|
this.contentLayout.add(mainContentLayout, { x_fill: true,
|
|
|
|
y_fill: false });
|
|
|
|
|
2012-06-19 16:31:24 -04:00
|
|
|
this._iconBin = new St.Bin({ child: _createIcon(gicon) });
|
2011-06-22 16:43:16 -04:00
|
|
|
mainContentLayout.add(this._iconBin,
|
|
|
|
{ x_fill: true,
|
|
|
|
y_fill: false,
|
|
|
|
x_align: St.Align.END,
|
|
|
|
y_align: St.Align.MIDDLE });
|
|
|
|
|
|
|
|
let messageLayout = new St.BoxLayout({ vertical: true });
|
|
|
|
mainContentLayout.add(messageLayout,
|
|
|
|
{ y_align: St.Align.START });
|
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
this.subjectLabel = new St.Label({ style_class: 'show-processes-dialog-subject' });
|
2011-06-22 16:43:16 -04:00
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
messageLayout.add(this.subjectLabel,
|
2011-06-22 16:43:16 -04:00
|
|
|
{ y_fill: false,
|
|
|
|
y_align: St.Align.START });
|
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
this.descriptionLabel = new St.Label({ style_class: 'show-processes-dialog-description' });
|
|
|
|
this.descriptionLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
|
|
this.descriptionLabel.clutter_text.line_wrap = true;
|
2011-06-22 16:43:16 -04:00
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
messageLayout.add(this.descriptionLabel,
|
2011-06-22 16:43:16 -04:00
|
|
|
{ y_fill: true,
|
|
|
|
y_align: St.Align.START });
|
|
|
|
|
|
|
|
let scrollView = new St.ScrollView({ style_class: 'show-processes-dialog-app-list'});
|
|
|
|
scrollView.set_policy(Gtk.PolicyType.NEVER,
|
|
|
|
Gtk.PolicyType.AUTOMATIC);
|
|
|
|
this.contentLayout.add(scrollView,
|
|
|
|
{ x_fill: true,
|
|
|
|
y_fill: true });
|
|
|
|
scrollView.hide();
|
|
|
|
|
|
|
|
this._applicationList = new St.BoxLayout({ vertical: true });
|
|
|
|
scrollView.add_actor(this._applicationList,
|
|
|
|
{ x_fill: true,
|
|
|
|
y_fill: true,
|
|
|
|
x_align: St.Align.START,
|
|
|
|
y_align: St.Align.MIDDLE });
|
|
|
|
|
|
|
|
this._applicationList.connect('actor-added',
|
|
|
|
Lang.bind(this, function() {
|
2012-05-29 20:36:45 -04:00
|
|
|
if (this._applicationList.get_n_children() == 1)
|
2011-06-22 16:43:16 -04:00
|
|
|
scrollView.show();
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._applicationList.connect('actor-removed',
|
|
|
|
Lang.bind(this, function() {
|
2012-05-29 20:36:45 -04:00
|
|
|
if (this._applicationList.get_n_children() == 0)
|
2011-06-22 16:43:16 -04:00
|
|
|
scrollView.hide();
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
|
|
|
_setAppsForPids: function(pids) {
|
|
|
|
// remove all the items
|
2012-02-16 13:27:09 -05:00
|
|
|
this._applicationList.destroy_all_children();
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
|
|
pids.forEach(Lang.bind(this, function(pid) {
|
|
|
|
let tracker = Shell.WindowTracker.get_default();
|
|
|
|
let app = tracker.get_app_from_pid(pid);
|
|
|
|
|
|
|
|
if (!app)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let item = new ListItem(app);
|
|
|
|
this._applicationList.add(item.actor, { x_fill: true });
|
|
|
|
|
|
|
|
item.connect('activate',
|
|
|
|
Lang.bind(this, function() {
|
|
|
|
// use -1 to indicate Cancel
|
2011-07-12 11:44:08 -04:00
|
|
|
this.emit('response', -1);
|
2011-06-22 16:43:16 -04:00
|
|
|
}));
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
|
|
|
update: function(message, processes, choices) {
|
|
|
|
this._setAppsForPids(processes);
|
2011-07-12 11:44:08 -04:00
|
|
|
_setLabelsForMessage(this, message);
|
|
|
|
_setButtonsForChoices(this, choices);
|
2011-06-22 16:43:16 -04:00
|
|
|
}
|
2011-11-20 10:32:59 -05:00
|
|
|
});
|
2011-08-11 05:35:23 -04:00
|
|
|
Signals.addSignalMethods(ShellProcessesDialog.prototype);
|