2008-12-01 14:51:43 -05:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
2008-10-31 14:09:20 -04:00
|
|
|
|
2011-02-08 21:12:10 -05:00
|
|
|
const Cairo = imports.cairo;
|
2008-10-31 14:09:20 -04:00
|
|
|
const Clutter = imports.gi.Clutter;
|
2010-05-05 17:05:42 -04:00
|
|
|
const Gio = imports.gi.Gio;
|
2009-05-07 09:54:21 -04:00
|
|
|
const Lang = imports.lang;
|
2008-11-21 08:54:25 -05:00
|
|
|
const Mainloop = imports.mainloop;
|
2010-05-25 10:21:22 -04:00
|
|
|
const Pango = imports.gi.Pango;
|
2008-11-19 18:04:53 -05:00
|
|
|
const Shell = imports.gi.Shell;
|
2009-09-30 10:02:08 -04:00
|
|
|
const St = imports.gi.St;
|
2009-08-11 11:32:58 -04:00
|
|
|
const Signals = imports.signals;
|
2009-08-14 09:30:48 -04:00
|
|
|
const Gettext = imports.gettext.domain('gnome-shell');
|
|
|
|
const _ = Gettext.gettext;
|
2008-10-31 14:09:20 -04:00
|
|
|
|
2010-07-24 07:57:53 -04:00
|
|
|
const Config = imports.misc.config;
|
2010-05-12 17:07:41 -04:00
|
|
|
const Overview = imports.ui.overview;
|
2010-05-20 11:18:46 -04:00
|
|
|
const PopupMenu = imports.ui.popupMenu;
|
2010-06-22 17:02:26 -04:00
|
|
|
const PanelMenu = imports.ui.panelMenu;
|
|
|
|
const StatusMenu = imports.ui.statusMenu;
|
2011-01-28 16:35:46 -05:00
|
|
|
const DateMenu = imports.ui.dateMenu;
|
2008-11-09 13:01:59 -05:00
|
|
|
const Main = imports.ui.main;
|
2010-05-20 11:18:46 -04:00
|
|
|
const Tweener = imports.ui.tweener;
|
2008-10-31 19:09:46 -04:00
|
|
|
|
2009-07-13 12:49:06 -04:00
|
|
|
const PANEL_HEIGHT = 26;
|
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
const PANEL_ICON_SIZE = 24;
|
|
|
|
|
2009-10-06 16:55:29 -04:00
|
|
|
const HOT_CORNER_ACTIVATION_TIMEOUT = 0.5;
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2011-01-05 09:47:27 -05:00
|
|
|
const BUTTON_DND_ACTIVATION_TIMEOUT = 250;
|
|
|
|
|
2010-06-10 08:07:33 -04:00
|
|
|
const ANIMATED_ICON_UPDATE_TIMEOUT = 100;
|
|
|
|
const SPINNER_UPDATE_TIMEOUT = 130;
|
|
|
|
const SPINNER_SPEED = 0.02;
|
|
|
|
|
2010-09-24 15:53:50 -04:00
|
|
|
const STANDARD_TRAY_ICON_ORDER = ['a11y', 'display', 'keyboard', 'volume', 'bluetooth', 'network', 'battery'];
|
2010-06-22 17:06:17 -04:00
|
|
|
const STANDARD_TRAY_ICON_SHELL_IMPLEMENTATION = {
|
2010-07-22 20:39:44 -04:00
|
|
|
'a11y': imports.ui.status.accessibility.ATIndicator,
|
|
|
|
'volume': imports.ui.status.volume.Indicator,
|
2011-01-04 17:04:56 -05:00
|
|
|
'battery': imports.ui.status.power.Indicator,
|
|
|
|
'keyboard': imports.ui.status.keyboard.XKBIndicator
|
2010-06-22 17:06:17 -04:00
|
|
|
};
|
|
|
|
|
2010-07-24 07:57:53 -04:00
|
|
|
if (Config.HAVE_BLUETOOTH)
|
|
|
|
STANDARD_TRAY_ICON_SHELL_IMPLEMENTATION['bluetooth'] = imports.ui.status.bluetooth.Indicator;
|
|
|
|
|
2010-12-02 11:28:06 -05:00
|
|
|
// in org.gnome.desktop.interface
|
|
|
|
const CLOCK_FORMAT_KEY = 'clock-format';
|
|
|
|
|
|
|
|
// in org.gnome.shell.clock
|
2010-05-05 17:05:42 -04:00
|
|
|
const CLOCK_SHOW_DATE_KEY = 'show-date';
|
|
|
|
const CLOCK_SHOW_SECONDS_KEY = 'show-seconds';
|
2010-02-25 14:30:23 -05:00
|
|
|
|
2011-02-08 21:12:10 -05:00
|
|
|
|
|
|
|
// To make sure the panel corners blend nicely with the panel,
|
|
|
|
// we draw background and borders the same way, e.g. drawing
|
|
|
|
// them as filled shapes from the outside inwards instead of
|
|
|
|
// using cairo stroke(). So in order to give the border the
|
|
|
|
// appearance of being drawn on top of the background, we need
|
|
|
|
// to blend border and background color together.
|
|
|
|
// For that purpose we use the following helper methods, taken
|
|
|
|
// from st-theme-node-drawing.c
|
|
|
|
function _norm(x) {
|
|
|
|
return Math.round(x / 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
function _over(srcColor, dstColor) {
|
|
|
|
let src = _premultiply(srcColor);
|
|
|
|
let dst = _premultiply(dstColor);
|
|
|
|
let result = new Clutter.Color();
|
|
|
|
|
|
|
|
result.alpha = src.alpha + _norm((255 - src.alpha) * dst.alpha);
|
|
|
|
result.red = src.red + _norm((255 - src.alpha) * dst.red);
|
|
|
|
result.green = src.green + _norm((255 - src.alpha) * dst.green);
|
|
|
|
result.blue = src.blue + _norm((255 - src.alpha) * dst.blue);
|
|
|
|
|
|
|
|
return _unpremultiply(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
function _premultiply(color) {
|
|
|
|
return new Clutter.Color({ red: _norm(color.red * color.alpha),
|
|
|
|
green: _norm(color.green * color.alpha),
|
|
|
|
blue: _norm(color.blue * color.alpha),
|
|
|
|
alpha: color.alpha });
|
|
|
|
};
|
|
|
|
|
|
|
|
function _unpremultiply(color) {
|
|
|
|
if (color.alpha == 0)
|
|
|
|
return new Clutter.Color();
|
|
|
|
|
|
|
|
let red = Math.min((color.red * 255 + 127) / color.alpha, 255);
|
|
|
|
let green = Math.min((color.green * 255 + 127) / color.alpha, 255);
|
|
|
|
let blue = Math.min((color.blue * 255 + 127) / color.alpha, 255);
|
|
|
|
return new Clutter.Color({ red: red, green: green,
|
|
|
|
blue: blue, alpha: color.alpha });
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-06-10 08:07:33 -04:00
|
|
|
function AnimatedIcon(name, size) {
|
|
|
|
this._init(name, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
AnimatedIcon.prototype = {
|
|
|
|
_init: function(name, size) {
|
|
|
|
this.actor = new St.Bin({ visible: false });
|
|
|
|
this.actor.connect('destroy', Lang.bind(this, this._onDestroy));
|
|
|
|
this.actor.connect('notify::visible', Lang.bind(this, function() {
|
|
|
|
if (this.actor.visible) {
|
|
|
|
this._timeoutId = Mainloop.timeout_add(ANIMATED_ICON_UPDATE_TIMEOUT, Lang.bind(this, this._update));
|
|
|
|
} else {
|
|
|
|
if (this._timeoutId)
|
|
|
|
Mainloop.source_remove(this._timeoutId);
|
|
|
|
this._timeoutId = 0;
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._timeoutId = 0;
|
|
|
|
this._i = 0;
|
|
|
|
this._animations = St.TextureCache.get_default().load_sliced_image (global.datadir + '/theme/' + name, size, size);
|
|
|
|
this.actor.set_child(this._animations);
|
|
|
|
},
|
|
|
|
|
|
|
|
_update: function() {
|
|
|
|
this._animations.hide_all();
|
|
|
|
this._animations.show();
|
|
|
|
if (this._i && this._i < this._animations.get_n_children())
|
|
|
|
this._animations.get_nth_child(this._i++).show();
|
|
|
|
else {
|
|
|
|
this._i = 1;
|
|
|
|
if (this._animations.get_n_children())
|
|
|
|
this._animations.get_nth_child(0).show();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onDestroy: function() {
|
|
|
|
if (this._timeoutId)
|
|
|
|
Mainloop.source_remove(this._timeoutId);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-12-26 12:00:36 -05:00
|
|
|
function TextShadower() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
TextShadower.prototype = {
|
|
|
|
_init: function() {
|
|
|
|
this.actor = new Shell.GenericContainer();
|
|
|
|
this.actor.connect('get-preferred-width', Lang.bind(this, this._getPreferredWidth));
|
|
|
|
this.actor.connect('get-preferred-height', Lang.bind(this, this._getPreferredHeight));
|
|
|
|
this.actor.connect('allocate', Lang.bind(this, this._allocate));
|
|
|
|
|
|
|
|
this._label = new St.Label();
|
|
|
|
this.actor.add_actor(this._label);
|
|
|
|
for (let i = 0; i < 4; i++) {
|
|
|
|
let actor = new St.Label({ style_class: 'label-shadow' });
|
2010-05-25 10:21:22 -04:00
|
|
|
actor.clutter_text.ellipsize = Pango.EllipsizeMode.END;
|
2009-12-26 12:00:36 -05:00
|
|
|
this.actor.add_actor(actor);
|
|
|
|
}
|
|
|
|
this._label.raise_top();
|
|
|
|
},
|
|
|
|
|
|
|
|
setText: function(text) {
|
|
|
|
let children = this.actor.get_children();
|
|
|
|
for (let i = 0; i < children.length; i++)
|
|
|
|
children[i].set_text(text);
|
|
|
|
},
|
|
|
|
|
|
|
|
_getPreferredWidth: function(actor, forHeight, alloc) {
|
|
|
|
let [minWidth, natWidth] = this._label.get_preferred_width(forHeight);
|
2010-05-25 09:34:01 -04:00
|
|
|
alloc.min_size = minWidth + 2;
|
|
|
|
alloc.natural_size = natWidth + 2;
|
2009-12-26 12:00:36 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_getPreferredHeight: function(actor, forWidth, alloc) {
|
|
|
|
let [minHeight, natHeight] = this._label.get_preferred_height(forWidth);
|
2010-05-25 09:34:01 -04:00
|
|
|
alloc.min_size = minHeight + 2;
|
|
|
|
alloc.natural_size = natHeight + 2;
|
2009-12-26 12:00:36 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_allocate: function(actor, box, flags) {
|
|
|
|
let children = this.actor.get_children();
|
|
|
|
|
|
|
|
let availWidth = box.x2 - box.x1;
|
|
|
|
let availHeight = box.y2 - box.y1;
|
|
|
|
|
|
|
|
let [minChildWidth, minChildHeight, natChildWidth, natChildHeight] =
|
|
|
|
this._label.get_preferred_size();
|
|
|
|
|
2010-05-25 09:34:01 -04:00
|
|
|
let childWidth = Math.min(natChildWidth, availWidth - 2);
|
|
|
|
let childHeight = Math.min(natChildHeight, availHeight - 2);
|
2009-12-26 12:00:36 -05:00
|
|
|
|
|
|
|
for (let i = 0; i < children.length; i++) {
|
|
|
|
let child = children[i];
|
|
|
|
let childBox = new Clutter.ActorBox();
|
|
|
|
// The order of the labels here is arbitrary, except
|
|
|
|
// we know the "real" label is at the end because Clutter.Group
|
|
|
|
// sorts by Z order
|
|
|
|
switch (i) {
|
|
|
|
case 0: // top
|
|
|
|
childBox.x1 = 1;
|
|
|
|
childBox.y1 = 0;
|
|
|
|
break;
|
|
|
|
case 1: // right
|
|
|
|
childBox.x1 = 2;
|
|
|
|
childBox.y1 = 1;
|
|
|
|
break;
|
|
|
|
case 2: // bottom
|
|
|
|
childBox.x1 = 1;
|
|
|
|
childBox.y1 = 2;
|
|
|
|
break;
|
|
|
|
case 3: // left
|
|
|
|
childBox.x1 = 0;
|
|
|
|
childBox.y1 = 1;
|
|
|
|
break;
|
|
|
|
case 4: // center
|
|
|
|
childBox.x1 = 1;
|
|
|
|
childBox.y1 = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
childBox.x2 = childBox.x1 + childWidth;
|
|
|
|
childBox.y2 = childBox.y1 + childHeight;
|
|
|
|
child.allocate(childBox, flags);
|
|
|
|
}
|
|
|
|
}
|
2010-03-15 09:50:05 -04:00
|
|
|
};
|
2009-12-26 12:00:36 -05:00
|
|
|
|
|
|
|
/**
|
2010-05-05 10:03:48 -04:00
|
|
|
* AppMenuButton:
|
2009-12-26 12:00:36 -05:00
|
|
|
*
|
|
|
|
* This class manages the "application menu" component. It tracks the
|
|
|
|
* currently focused application. However, when an app is launched,
|
|
|
|
* this menu also handles startup notification for it. So when we
|
|
|
|
* have an active startup notification, we switch modes to display that.
|
|
|
|
*/
|
2010-05-05 10:03:48 -04:00
|
|
|
function AppMenuButton() {
|
2009-08-11 11:32:58 -04:00
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
AppMenuButton.prototype = {
|
2010-06-22 17:02:26 -04:00
|
|
|
__proto__: PanelMenu.Button.prototype,
|
2010-05-05 10:03:48 -04:00
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
_init: function() {
|
2011-02-09 12:27:00 -05:00
|
|
|
PanelMenu.Button.prototype._init.call(this, 0.0);
|
2009-09-11 17:23:23 -04:00
|
|
|
this._metaDisplay = global.screen.get_display();
|
2010-10-06 17:31:22 -04:00
|
|
|
this._startingApps = [];
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2010-10-06 17:31:22 -04:00
|
|
|
this._targetApp = null;
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
let bin = new St.Bin({ name: 'appMenu' });
|
|
|
|
this.actor.set_child(bin);
|
2010-02-28 15:36:13 -05:00
|
|
|
this._container = new Shell.GenericContainer();
|
2010-05-05 10:03:48 -04:00
|
|
|
bin.set_child(this._container);
|
|
|
|
this._container.connect('get-preferred-width', Lang.bind(this, this._getContentPreferredWidth));
|
|
|
|
this._container.connect('get-preferred-height', Lang.bind(this, this._getContentPreferredHeight));
|
|
|
|
this._container.connect('allocate', Lang.bind(this, this._contentAllocate));
|
2010-03-12 15:57:01 -05:00
|
|
|
|
2009-12-26 12:00:36 -05:00
|
|
|
this._iconBox = new Shell.Slicer({ name: 'appMenuIcon' });
|
2011-02-18 17:00:04 -05:00
|
|
|
this._iconBox.connect('style-changed',
|
|
|
|
Lang.bind(this, this._onIconBoxStyleChanged));
|
2010-02-28 15:36:13 -05:00
|
|
|
this._container.add_actor(this._iconBox);
|
2009-12-26 12:00:36 -05:00
|
|
|
this._label = new TextShadower();
|
2010-02-28 15:36:13 -05:00
|
|
|
this._container.add_actor(this._label.actor);
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2010-05-20 11:18:46 -04:00
|
|
|
this._quitMenu = new PopupMenu.PopupMenuItem('');
|
2010-05-12 17:07:41 -04:00
|
|
|
this.menu.addMenuItem(this._quitMenu);
|
|
|
|
this._quitMenu.connect('activate', Lang.bind(this, this._onQuit));
|
2010-05-05 10:03:48 -04:00
|
|
|
|
2010-05-12 17:30:14 -04:00
|
|
|
this._visible = !Main.overview.visible;
|
|
|
|
if (!this._visible)
|
2011-02-16 15:17:46 -05:00
|
|
|
this.actor.hide();
|
2009-08-11 11:32:58 -04:00
|
|
|
Main.overview.connect('hiding', Lang.bind(this, function () {
|
2010-05-12 17:30:14 -04:00
|
|
|
this.show();
|
2009-08-11 11:32:58 -04:00
|
|
|
}));
|
|
|
|
Main.overview.connect('showing', Lang.bind(this, function () {
|
2010-05-12 17:30:14 -04:00
|
|
|
this.hide();
|
2009-08-11 11:32:58 -04:00
|
|
|
}));
|
|
|
|
|
2010-06-10 08:07:33 -04:00
|
|
|
this._updateId = 0;
|
|
|
|
this._animationStep = 0;
|
2010-07-20 22:22:19 -04:00
|
|
|
this._clipWidth = PANEL_ICON_SIZE;
|
2010-06-10 08:07:33 -04:00
|
|
|
this._direction = SPINNER_SPEED;
|
|
|
|
|
2010-07-20 22:22:19 -04:00
|
|
|
this._spinner = new AnimatedIcon('process-working.png',
|
|
|
|
PANEL_ICON_SIZE);
|
2010-06-10 08:07:33 -04:00
|
|
|
this._container.add_actor(this._spinner.actor);
|
|
|
|
this._spinner.actor.lower_bottom();
|
|
|
|
|
|
|
|
this._shadow = new St.Bin({ style_class: 'label-real-shadow' });
|
|
|
|
this._shadow.hide();
|
|
|
|
this._container.add_actor(this._shadow);
|
|
|
|
|
2009-10-15 19:28:29 -04:00
|
|
|
let tracker = Shell.WindowTracker.get_default();
|
|
|
|
tracker.connect('notify::focus-app', Lang.bind(this, this._sync));
|
2010-06-10 08:07:33 -04:00
|
|
|
tracker.connect('app-state-changed', Lang.bind(this, this._onAppStateChanged));
|
2009-08-27 02:22:25 -04:00
|
|
|
|
2010-10-06 17:31:22 -04:00
|
|
|
global.window_manager.connect('switch-workspace', Lang.bind(this, this._sync));
|
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
this._sync();
|
2010-05-12 17:30:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
show: function() {
|
|
|
|
if (this._visible)
|
|
|
|
return;
|
|
|
|
|
2011-02-16 15:17:46 -05:00
|
|
|
this._visible = true;
|
2010-05-12 17:30:14 -04:00
|
|
|
this.actor.show();
|
2011-02-16 15:17:46 -05:00
|
|
|
Tweener.removeTweens(this.actor);
|
2010-05-12 17:30:14 -04:00
|
|
|
Tweener.addTween(this.actor,
|
|
|
|
{ opacity: 255,
|
|
|
|
time: Overview.ANIMATION_TIME,
|
2011-02-16 15:17:46 -05:00
|
|
|
transition: 'easeOutQuad' });
|
2010-05-12 17:30:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
hide: function() {
|
|
|
|
if (!this._visible)
|
|
|
|
return;
|
|
|
|
|
2011-02-16 15:17:46 -05:00
|
|
|
this._visible = false;
|
|
|
|
Tweener.removeTweens(this.actor);
|
2010-05-12 17:30:14 -04:00
|
|
|
Tweener.addTween(this.actor,
|
|
|
|
{ opacity: 0,
|
|
|
|
time: Overview.ANIMATION_TIME,
|
|
|
|
transition: 'easeOutQuad',
|
|
|
|
onComplete: function() {
|
|
|
|
this.actor.hide();
|
|
|
|
},
|
|
|
|
onCompleteScope: this });
|
2009-08-11 11:32:58 -04:00
|
|
|
},
|
|
|
|
|
2011-02-18 17:00:04 -05:00
|
|
|
_onIconBoxStyleChanged: function() {
|
|
|
|
let node = this._iconBox.get_theme_node();
|
|
|
|
let bottomClip = node.get_length('app-icon-bottom-clip');
|
|
|
|
if (bottomClip > 0)
|
|
|
|
this._iconBox.set_clip(0, 0,
|
|
|
|
this._iconBox.width,
|
|
|
|
this._iconBox.height - bottomClip);
|
|
|
|
else
|
|
|
|
this._iconBox.remove_clip();
|
|
|
|
},
|
|
|
|
|
2010-06-10 08:07:33 -04:00
|
|
|
_stopAnimation: function(animate) {
|
|
|
|
this._label.actor.remove_clip();
|
|
|
|
if (this._updateId) {
|
|
|
|
this._shadow.hide();
|
|
|
|
if (animate) {
|
|
|
|
Tweener.addTween(this._spinner.actor,
|
|
|
|
{ opacity: 0,
|
|
|
|
time: 0.2,
|
|
|
|
transition: "easeOutQuad",
|
|
|
|
onCompleteScope: this,
|
|
|
|
onComplete: function() {
|
|
|
|
this._spinner.actor.opacity = 255;
|
|
|
|
this._spinner.actor.hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
Mainloop.source_remove(this._updateId);
|
|
|
|
this._updateId = 0;
|
|
|
|
}
|
|
|
|
if (!animate)
|
|
|
|
this._spinner.actor.hide();
|
|
|
|
},
|
|
|
|
|
|
|
|
stopAnimation: function() {
|
|
|
|
this._direction = SPINNER_SPEED * 3;
|
|
|
|
this._stop = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_update: function() {
|
|
|
|
this._animationStep += this._direction;
|
|
|
|
if (this._animationStep > 1 && this._stop) {
|
|
|
|
this._animationStep = 1;
|
|
|
|
this._stopAnimation(true);
|
|
|
|
return false;
|
|
|
|
}
|
2010-07-06 13:56:40 -04:00
|
|
|
if (this._animationStep > 1)
|
|
|
|
this._animationStep = 1;
|
2010-07-20 22:22:19 -04:00
|
|
|
this._clipWidth = this._label.actor.width - (this._label.actor.width - PANEL_ICON_SIZE) * (1 - this._animationStep);
|
2010-06-10 08:07:33 -04:00
|
|
|
if (this.actor.get_direction() == St.TextDirection.LTR) {
|
|
|
|
this._label.actor.set_clip(0, 0, this._clipWidth + this._shadow.width, this.actor.height);
|
|
|
|
} else {
|
|
|
|
this._label.actor.set_clip(this._label.actor.width - this._clipWidth, 0, this._clipWidth, this.actor.height);
|
|
|
|
}
|
|
|
|
this._container.queue_relayout();
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
startAnimation: function() {
|
|
|
|
this._direction = SPINNER_SPEED;
|
|
|
|
this._stopAnimation(false);
|
|
|
|
this._animationStep = 0;
|
|
|
|
this._update();
|
|
|
|
this._stop = false;
|
|
|
|
this._updateId = Mainloop.timeout_add(SPINNER_UPDATE_TIMEOUT, Lang.bind(this, this._update));
|
|
|
|
this._spinner.actor.show();
|
|
|
|
this._shadow.show();
|
|
|
|
},
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
_getContentPreferredWidth: function(actor, forHeight, alloc) {
|
2010-02-28 15:36:13 -05:00
|
|
|
let [minSize, naturalSize] = this._iconBox.get_preferred_width(forHeight);
|
2010-03-01 11:30:31 -05:00
|
|
|
alloc.min_size = minSize;
|
|
|
|
alloc.natural_size = naturalSize;
|
2010-02-28 15:36:13 -05:00
|
|
|
[minSize, naturalSize] = this._label.actor.get_preferred_width(forHeight);
|
2010-03-01 11:30:31 -05:00
|
|
|
alloc.min_size = alloc.min_size + Math.max(0, minSize - Math.floor(alloc.min_size / 2));
|
|
|
|
alloc.natural_size = alloc.natural_size + Math.max(0, naturalSize - Math.floor(alloc.natural_size / 2));
|
2010-02-28 15:36:13 -05:00
|
|
|
},
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
_getContentPreferredHeight: function(actor, forWidth, alloc) {
|
2010-02-28 15:36:13 -05:00
|
|
|
let [minSize, naturalSize] = this._iconBox.get_preferred_height(forWidth);
|
|
|
|
alloc.min_size = minSize;
|
|
|
|
alloc.natural_size = naturalSize;
|
2011-02-24 12:17:05 -05:00
|
|
|
[minSize, naturalSize] = this._label.actor.get_preferred_height(forWidth);
|
2010-02-28 15:36:13 -05:00
|
|
|
if (minSize > alloc.min_size)
|
|
|
|
alloc.min_size = minSize;
|
|
|
|
if (naturalSize > alloc.natural_size)
|
|
|
|
alloc.natural_size = naturalSize;
|
|
|
|
},
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
_contentAllocate: function(actor, box, flags) {
|
2010-02-28 15:36:13 -05:00
|
|
|
let allocWidth = box.x2 - box.x1;
|
|
|
|
let allocHeight = box.y2 - box.y1;
|
|
|
|
let childBox = new Clutter.ActorBox();
|
|
|
|
|
|
|
|
let [minWidth, minHeight, naturalWidth, naturalHeight] = this._iconBox.get_preferred_size();
|
|
|
|
|
2010-03-01 11:30:31 -05:00
|
|
|
let direction = this.actor.get_direction();
|
|
|
|
|
2010-02-28 15:36:13 -05:00
|
|
|
let yPadding = Math.floor(Math.max(0, allocHeight - naturalHeight) / 2);
|
|
|
|
childBox.y1 = yPadding;
|
2010-03-01 11:30:31 -05:00
|
|
|
childBox.y2 = childBox.y1 + Math.min(naturalHeight, allocHeight);
|
|
|
|
if (direction == St.TextDirection.LTR) {
|
|
|
|
childBox.x1 = 0;
|
|
|
|
childBox.x2 = childBox.x1 + Math.min(naturalWidth, allocWidth);
|
|
|
|
} else {
|
|
|
|
childBox.x1 = Math.max(0, allocWidth - naturalWidth);
|
|
|
|
childBox.x2 = allocWidth;
|
|
|
|
}
|
2010-02-28 15:36:13 -05:00
|
|
|
this._iconBox.allocate(childBox, flags);
|
|
|
|
|
2010-03-01 11:30:31 -05:00
|
|
|
let iconWidth = childBox.x2 - childBox.x1;
|
|
|
|
|
2010-03-16 10:51:05 -04:00
|
|
|
[minWidth, minHeight, naturalWidth, naturalHeight] = this._label.actor.get_preferred_size();
|
2010-02-28 15:36:13 -05:00
|
|
|
|
|
|
|
yPadding = Math.floor(Math.max(0, allocHeight - naturalHeight) / 2);
|
|
|
|
childBox.y1 = yPadding;
|
2010-03-01 11:30:31 -05:00
|
|
|
childBox.y2 = childBox.y1 + Math.min(naturalHeight, allocHeight);
|
|
|
|
|
|
|
|
if (direction == St.TextDirection.LTR) {
|
|
|
|
childBox.x1 = Math.floor(iconWidth / 2);
|
|
|
|
childBox.x2 = Math.min(childBox.x1 + naturalWidth, allocWidth);
|
|
|
|
} else {
|
|
|
|
childBox.x2 = allocWidth - Math.floor(iconWidth / 2);
|
|
|
|
childBox.x1 = Math.max(0, childBox.x2 - naturalWidth);
|
|
|
|
}
|
2010-02-28 15:36:13 -05:00
|
|
|
this._label.actor.allocate(childBox, flags);
|
2010-06-10 08:07:33 -04:00
|
|
|
|
|
|
|
if (direction == St.TextDirection.LTR) {
|
|
|
|
childBox.x1 = Math.floor(iconWidth / 2) + this._clipWidth + this._shadow.width;
|
|
|
|
childBox.x2 = childBox.x1 + this._spinner.actor.width;
|
|
|
|
childBox.y1 = box.y1;
|
|
|
|
childBox.y2 = box.y2 - 1;
|
|
|
|
this._spinner.actor.allocate(childBox, flags);
|
|
|
|
childBox.x1 = Math.floor(iconWidth / 2) + this._clipWidth + 2;
|
|
|
|
childBox.x2 = childBox.x1 + this._shadow.width;
|
|
|
|
childBox.y1 = box.y1;
|
|
|
|
childBox.y2 = box.y2 - 1;
|
|
|
|
this._shadow.allocate(childBox, flags);
|
|
|
|
} else {
|
|
|
|
childBox.x1 = this._label.actor.width - this._clipWidth - this._spinner.actor.width;
|
|
|
|
childBox.x2 = childBox.x1 + this._spinner.actor.width;
|
|
|
|
childBox.y1 = box.y1;
|
|
|
|
childBox.y2 = box.y2 - 1;
|
|
|
|
this._spinner.actor.allocate(childBox, flags);
|
|
|
|
}
|
2009-12-26 12:00:36 -05:00
|
|
|
},
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
_onQuit: function() {
|
2010-11-05 13:48:04 -04:00
|
|
|
if (this._targetApp == null)
|
2010-05-05 10:03:48 -04:00
|
|
|
return;
|
2010-11-05 13:48:04 -04:00
|
|
|
this._targetApp.request_quit();
|
2010-05-05 10:03:48 -04:00
|
|
|
},
|
|
|
|
|
2010-06-10 08:07:33 -04:00
|
|
|
_onAppStateChanged: function(tracker, app) {
|
|
|
|
let state = app.state;
|
2010-10-06 17:31:22 -04:00
|
|
|
if (state != Shell.AppState.STARTING) {
|
|
|
|
this._startingApps = this._startingApps.filter(function(a) {
|
|
|
|
return a != app;
|
|
|
|
});
|
2010-06-10 08:07:33 -04:00
|
|
|
} else if (state == Shell.AppState.STARTING) {
|
2010-10-06 17:31:22 -04:00
|
|
|
this._startingApps.push(app);
|
2010-06-10 08:07:33 -04:00
|
|
|
}
|
|
|
|
// For now just resync on all running state changes; this is mainly to handle
|
|
|
|
// cases where the focused window's application changes without the focus
|
|
|
|
// changing. An example case is how we map OpenOffice.org based on the window
|
|
|
|
// title which is a dynamic property.
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
_sync: function() {
|
2009-10-15 19:28:29 -04:00
|
|
|
let tracker = Shell.WindowTracker.get_default();
|
2010-10-06 17:31:22 -04:00
|
|
|
let lastStartedApp = null;
|
|
|
|
let workspace = global.screen.get_active_workspace();
|
|
|
|
for (let i = 0; i < this._startingApps.length; i++)
|
|
|
|
if (this._startingApps[i].is_on_workspace(workspace))
|
|
|
|
lastStartedApp = this._startingApps[i];
|
2009-10-15 19:28:29 -04:00
|
|
|
|
|
|
|
let focusedApp = tracker.focus_app;
|
2010-10-06 17:31:22 -04:00
|
|
|
let targetApp = focusedApp != null ? focusedApp : lastStartedApp;
|
|
|
|
if (targetApp == this._targetApp) {
|
|
|
|
if (targetApp && targetApp.get_state() != Shell.AppState.STARTING)
|
2010-06-10 08:07:33 -04:00
|
|
|
this.stopAnimation();
|
|
|
|
return;
|
|
|
|
}
|
2010-10-06 17:31:22 -04:00
|
|
|
this._stopAnimation();
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2010-07-02 15:36:56 -04:00
|
|
|
if (!focusedApp) {
|
|
|
|
// If the app has just lost focus to the panel, pretend
|
|
|
|
// nothing happened; otherwise you can't keynav to the
|
|
|
|
// app menu.
|
|
|
|
if (global.stage_input_mode == Shell.StageInputMode.FOCUSED)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-17 17:46:20 -05:00
|
|
|
if (this._iconBox.child != null)
|
|
|
|
this._iconBox.child.destroy();
|
2009-08-11 11:32:58 -04:00
|
|
|
this._iconBox.hide();
|
2009-12-26 12:00:36 -05:00
|
|
|
this._label.setText('');
|
2010-06-10 08:07:33 -04:00
|
|
|
this.actor.reactive = false;
|
2010-02-24 11:29:44 -05:00
|
|
|
|
2010-10-06 17:31:22 -04:00
|
|
|
this._targetApp = targetApp;
|
2010-06-10 08:07:33 -04:00
|
|
|
if (targetApp != null) {
|
2010-07-20 22:22:19 -04:00
|
|
|
let icon = targetApp.get_faded_icon(2 * PANEL_ICON_SIZE);
|
2010-06-10 08:07:33 -04:00
|
|
|
|
|
|
|
this._label.setText(targetApp.get_name());
|
|
|
|
// TODO - _quit() doesn't really work on apps in state STARTING yet
|
2010-07-18 13:33:10 -04:00
|
|
|
this._quitMenu.label.set_text(_("Quit %s").format(targetApp.get_name()));
|
2010-06-10 08:07:33 -04:00
|
|
|
|
|
|
|
this.actor.reactive = true;
|
2010-03-12 15:57:01 -05:00
|
|
|
this._iconBox.set_child(icon);
|
2009-08-11 11:32:58 -04:00
|
|
|
this._iconBox.show();
|
2010-06-10 08:07:33 -04:00
|
|
|
|
|
|
|
if (targetApp.get_state() == Shell.AppState.STARTING)
|
|
|
|
this.startAnimation();
|
2009-08-11 11:32:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
this.emit('changed');
|
|
|
|
}
|
2010-03-15 09:50:05 -04:00
|
|
|
};
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
Signals.addSignalMethods(AppMenuButton.prototype);
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2011-02-08 21:12:10 -05:00
|
|
|
|
|
|
|
function PanelCorner(side) {
|
|
|
|
this._init(side);
|
|
|
|
}
|
|
|
|
|
|
|
|
PanelCorner.prototype = {
|
|
|
|
_init: function(side) {
|
|
|
|
this._side = side;
|
|
|
|
this.actor = new St.DrawingArea({ style_class: 'panel-corner' });
|
|
|
|
this.actor.connect('repaint', Lang.bind(this, this._repaint));
|
2011-02-23 09:16:18 -05:00
|
|
|
this.actor.connect('style-changed', Lang.bind(this, this.relayout));
|
2011-02-08 21:12:10 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_repaint: function() {
|
|
|
|
let node = this.actor.get_theme_node();
|
|
|
|
|
|
|
|
let cornerRadius = node.get_length("-panel-corner-radius");
|
|
|
|
let innerBorderWidth = node.get_length('-panel-corner-inner-border-width');
|
|
|
|
let outerBorderWidth = node.get_length('-panel-corner-outer-border-width');
|
|
|
|
|
|
|
|
let backgroundColor = node.get_color('-panel-corner-background-color');
|
|
|
|
let innerBorderColor = node.get_color('-panel-corner-inner-border-color');
|
|
|
|
let outerBorderColor = node.get_color('-panel-corner-outer-border-color');
|
|
|
|
|
|
|
|
let cr = this.actor.get_context();
|
|
|
|
cr.setOperator(Cairo.Operator.SOURCE);
|
|
|
|
|
|
|
|
cr.moveTo(0, 0);
|
|
|
|
if (this._side == St.Side.LEFT)
|
|
|
|
cr.arc(cornerRadius,
|
2011-02-21 13:04:40 -05:00
|
|
|
innerBorderWidth + cornerRadius,
|
2011-02-08 21:12:10 -05:00
|
|
|
cornerRadius, Math.PI, 3 * Math.PI / 2);
|
|
|
|
else
|
|
|
|
cr.arc(0,
|
2011-02-21 13:04:40 -05:00
|
|
|
innerBorderWidth + cornerRadius,
|
2011-02-08 21:12:10 -05:00
|
|
|
cornerRadius, 3 * Math.PI / 2, 2 * Math.PI);
|
|
|
|
cr.lineTo(cornerRadius, 0);
|
|
|
|
cr.closePath();
|
|
|
|
|
|
|
|
let savedPath = cr.copyPath();
|
|
|
|
|
2011-02-21 13:04:40 -05:00
|
|
|
let over = _over(innerBorderColor,
|
|
|
|
_over(outerBorderColor, backgroundColor));
|
2011-02-08 21:12:10 -05:00
|
|
|
Clutter.cairo_set_source_color(cr, over);
|
|
|
|
cr.fill();
|
|
|
|
|
|
|
|
let xOffsetDirection = this._side == St.Side.LEFT ? -1 : 1;
|
|
|
|
let offset = outerBorderWidth;
|
|
|
|
over = _over(innerBorderColor, backgroundColor);
|
|
|
|
Clutter.cairo_set_source_color(cr, over);
|
|
|
|
|
|
|
|
cr.save();
|
|
|
|
cr.translate(xOffsetDirection * offset, - offset);
|
|
|
|
cr.appendPath(savedPath);
|
|
|
|
cr.fill();
|
|
|
|
cr.restore();
|
|
|
|
|
|
|
|
if (this._side == St.Side.LEFT)
|
2011-02-21 13:04:40 -05:00
|
|
|
cr.rectangle(cornerRadius - offset, 0, offset, outerBorderWidth);
|
2011-02-08 21:12:10 -05:00
|
|
|
else
|
2011-02-21 13:04:40 -05:00
|
|
|
cr.rectangle(0, 0, offset, outerBorderWidth);
|
2011-02-08 21:12:10 -05:00
|
|
|
cr.fill();
|
|
|
|
|
2011-02-21 13:04:40 -05:00
|
|
|
offset = innerBorderWidth;
|
2011-02-08 21:12:10 -05:00
|
|
|
Clutter.cairo_set_source_color(cr, backgroundColor);
|
|
|
|
|
|
|
|
cr.save();
|
|
|
|
cr.translate(xOffsetDirection * offset, - offset);
|
|
|
|
cr.appendPath(savedPath);
|
|
|
|
cr.fill();
|
|
|
|
cr.restore();
|
|
|
|
},
|
|
|
|
|
2011-02-23 09:16:18 -05:00
|
|
|
relayout: function() {
|
2011-02-08 21:12:10 -05:00
|
|
|
let node = this.actor.get_theme_node();
|
|
|
|
|
|
|
|
let cornerRadius = node.get_length("-panel-corner-radius");
|
|
|
|
let innerBorderWidth = node.get_length('-panel-corner-inner-border-width');
|
|
|
|
|
|
|
|
this.actor.set_size(cornerRadius,
|
2011-02-21 13:04:40 -05:00
|
|
|
innerBorderWidth + cornerRadius);
|
2011-02-08 21:12:10 -05:00
|
|
|
if (this._side == St.Side.LEFT)
|
2011-02-21 13:06:07 -05:00
|
|
|
this.actor.set_position(Main.panel.actor.x,
|
2011-02-21 13:04:40 -05:00
|
|
|
Main.panel.actor.y + Main.panel.actor.height - innerBorderWidth);
|
2011-02-08 21:12:10 -05:00
|
|
|
else
|
2011-02-21 13:06:07 -05:00
|
|
|
this.actor.set_position(Main.panel.actor.x + Main.panel.actor.width - cornerRadius,
|
2011-02-21 13:04:40 -05:00
|
|
|
Main.panel.actor.y + Main.panel.actor.height - innerBorderWidth);
|
2011-02-08 21:12:10 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-02-23 05:22:49 -05:00
|
|
|
/**
|
|
|
|
* HotCorner:
|
|
|
|
*
|
|
|
|
* This class manages the "hot corner" that can toggle switching to
|
|
|
|
* overview.
|
|
|
|
*/
|
|
|
|
function HotCorner() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
HotCorner.prototype = {
|
|
|
|
_init : function() {
|
|
|
|
// We use this flag to mark the case where the user has entered the
|
|
|
|
// hot corner and has not left both the hot corner and a surrounding
|
|
|
|
// guard area (the "environs"). This avoids triggering the hot corner
|
|
|
|
// multiple times due to an accidental jitter.
|
|
|
|
this._entered = false;
|
|
|
|
|
|
|
|
this.actor = new Clutter.Group({ width: 3,
|
|
|
|
height: 3,
|
|
|
|
reactive: true });
|
|
|
|
|
|
|
|
this._corner = new Clutter.Rectangle({ width: 1,
|
|
|
|
height: 1,
|
|
|
|
opacity: 0,
|
|
|
|
reactive: true });
|
|
|
|
|
|
|
|
this.actor.add_actor(this._corner);
|
|
|
|
|
|
|
|
if (St.Widget.get_default_direction() == St.TextDirection.RTL) {
|
|
|
|
this._corner.set_position(this.actor.width - this._corner.width, 0);
|
|
|
|
this.actor.set_anchor_point_from_gravity(Clutter.Gravity.NORTH_EAST);
|
|
|
|
} else {
|
|
|
|
this._corner.set_position(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._activationTime = 0;
|
|
|
|
|
|
|
|
this.actor.connect('leave-event',
|
|
|
|
Lang.bind(this, this._onEnvironsLeft));
|
|
|
|
// Clicking on the hot corner environs should result in the same bahavior
|
|
|
|
// as clicking on the hot corner.
|
|
|
|
this.actor.connect('button-release-event',
|
|
|
|
Lang.bind(this, this._onCornerClicked));
|
|
|
|
|
|
|
|
// In addition to being triggered by the mouse enter event, the hot corner
|
|
|
|
// can be triggered by clicking on it. This is useful if the user wants to
|
|
|
|
// undo the effect of triggering the hot corner once in the hot corner.
|
|
|
|
this._corner.connect('enter-event',
|
|
|
|
Lang.bind(this, this._onCornerEntered));
|
|
|
|
this._corner.connect('button-release-event',
|
|
|
|
Lang.bind(this, this._onCornerClicked));
|
|
|
|
this._corner.connect('leave-event',
|
|
|
|
Lang.bind(this, this._onCornerLeft));
|
|
|
|
|
|
|
|
this._corner._delegate = this._corner;
|
|
|
|
this._corner.handleDragOver = Lang.bind(this,
|
|
|
|
function(source, actor, x, y, time) {
|
|
|
|
if (source == Main.xdndHandler) {
|
|
|
|
if(!Main.overview.visible && !Main.overview.animationInProgress) {
|
|
|
|
this.rippleAnimation();
|
|
|
|
Main.overview.showTemporarily();
|
|
|
|
Main.overview.beginItemDrag(actor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2011-02-23 08:35:45 -05:00
|
|
|
|
|
|
|
Main.chrome.addActor(this.actor, { visibleInOverview: true, affectsStruts: false });
|
2011-02-23 05:22:49 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function() {
|
|
|
|
this.actor.destroy();
|
|
|
|
},
|
|
|
|
|
|
|
|
_addRipple : function(delay, time, startScale, startOpacity, finalScale, finalOpacity) {
|
|
|
|
// We draw a ripple by using a source image and animating it scaling
|
|
|
|
// outwards and fading away. We want the ripples to move linearly
|
|
|
|
// or it looks unrealistic, but if the opacity of the ripple goes
|
|
|
|
// linearly to zero it fades away too quickly, so we use Tweener's
|
|
|
|
// 'onUpdate' to give a non-linear curve to the fade-away and make
|
|
|
|
// it more visible in the middle section.
|
|
|
|
|
|
|
|
let [x, y] = this._corner.get_transformed_position();
|
|
|
|
let ripple = new St.BoxLayout({ style_class: 'ripple-box',
|
|
|
|
opacity: 255 * Math.sqrt(startOpacity),
|
|
|
|
scale_x: startScale,
|
|
|
|
scale_y: startScale,
|
|
|
|
x: x,
|
|
|
|
y: y });
|
|
|
|
ripple._opacity = startOpacity;
|
|
|
|
Tweener.addTween(ripple, { _opacity: finalOpacity,
|
|
|
|
scale_x: finalScale,
|
|
|
|
scale_y: finalScale,
|
|
|
|
delay: delay,
|
|
|
|
time: time,
|
|
|
|
transition: 'linear',
|
|
|
|
onUpdate: function() { ripple.opacity = 255 * Math.sqrt(ripple._opacity); },
|
|
|
|
onComplete: function() { ripple.destroy(); } });
|
|
|
|
Main.uiGroup.add_actor(ripple);
|
|
|
|
},
|
|
|
|
|
|
|
|
rippleAnimation: function() {
|
|
|
|
// Show three concentric ripples expanding outwards; the exact
|
|
|
|
// parameters were found by trial and error, so don't look
|
|
|
|
// for them to make perfect sense mathematically
|
|
|
|
|
|
|
|
// delay time scale opacity => scale opacity
|
|
|
|
this._addRipple(0.0, 0.83, 0.25, 1.0, 1.5, 0.0);
|
|
|
|
this._addRipple(0.05, 1.0, 0.0, 0.7, 1.25, 0.0);
|
|
|
|
this._addRipple(0.35, 1.0, 0.0, 0.3, 1, 0.0);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onCornerEntered : function() {
|
|
|
|
if (!this._entered) {
|
|
|
|
this._entered = true;
|
|
|
|
if (!Main.overview.animationInProgress) {
|
|
|
|
this._activationTime = Date.now() / 1000;
|
|
|
|
|
|
|
|
this.rippleAnimation();
|
|
|
|
Main.overview.toggle();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onCornerClicked : function() {
|
|
|
|
if (!Main.overview.animationInProgress)
|
|
|
|
this.maybeToggleOverviewOnClick();
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onCornerLeft : function(actor, event) {
|
|
|
|
if (event.get_related() != this.actor)
|
|
|
|
this._entered = false;
|
|
|
|
// Consume event, otherwise this will confuse onEnvironsLeft
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onEnvironsLeft : function(actor, event) {
|
|
|
|
if (event.get_related() != this._corner)
|
|
|
|
this._entered = false;
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Toggles the overview unless this is the first click on the Activities button within the HOT_CORNER_ACTIVATION_TIMEOUT time
|
|
|
|
// of the hot corner being triggered. This check avoids opening and closing the overview if the user both triggered the hot corner
|
|
|
|
// and clicked the Activities button.
|
|
|
|
maybeToggleOverviewOnClick: function() {
|
|
|
|
if (this._activationTime == 0 || Date.now() / 1000 - this._activationTime > HOT_CORNER_ACTIVATION_TIMEOUT)
|
|
|
|
Main.overview.toggle();
|
|
|
|
this._activationTime = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-08 21:12:10 -05:00
|
|
|
|
2008-10-31 14:09:20 -04:00
|
|
|
function Panel() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
Panel.prototype = {
|
2010-05-05 10:03:48 -04:00
|
|
|
_init : function() {
|
2010-05-20 11:18:46 -04:00
|
|
|
this.actor = new St.BoxLayout({ style_class: 'menu-bar',
|
|
|
|
name: 'panel',
|
|
|
|
reactive: true });
|
2009-11-10 12:13:58 -05:00
|
|
|
this.actor._delegate = this;
|
|
|
|
|
2010-07-16 07:48:05 -04:00
|
|
|
Main.overview.connect('shown', Lang.bind(this, function () {
|
|
|
|
this.actor.add_style_class_name('in-overview');
|
|
|
|
}));
|
|
|
|
Main.overview.connect('hiding', Lang.bind(this, function () {
|
|
|
|
this.actor.remove_style_class_name('in-overview');
|
|
|
|
}));
|
|
|
|
|
2010-05-20 11:18:46 -04:00
|
|
|
this._menus = new PopupMenu.PopupMenuManager(this);
|
|
|
|
|
2009-11-17 17:46:20 -05:00
|
|
|
this._leftBox = new St.BoxLayout({ name: 'panelLeft' });
|
|
|
|
this._centerBox = new St.BoxLayout({ name: 'panelCenter' });
|
|
|
|
this._rightBox = new St.BoxLayout({ name: 'panelRight' });
|
2009-08-11 11:16:25 -04:00
|
|
|
|
2011-02-19 06:21:07 -05:00
|
|
|
// This will eventually be automatic, see
|
|
|
|
// https://bugzilla.gnome.org/show_bug.cgi?id=584662
|
|
|
|
if (St.Widget.get_default_direction() == St.TextDirection.RTL) {
|
|
|
|
this._leftBox.add_style_pseudo_class('rtl');
|
|
|
|
this._rightBox.add_style_pseudo_class('rtl');
|
|
|
|
}
|
|
|
|
|
2011-02-08 21:12:10 -05:00
|
|
|
this._leftCorner = new PanelCorner(St.Side.LEFT);
|
|
|
|
this._rightCorner = new PanelCorner(St.Side.RIGHT);
|
|
|
|
|
2009-08-11 11:16:25 -04:00
|
|
|
/* This box container ensures that the centerBox is positioned in the *absolute*
|
|
|
|
* center, but can be pushed aside if necessary. */
|
|
|
|
this._boxContainer = new Shell.GenericContainer();
|
2009-11-17 17:46:20 -05:00
|
|
|
this.actor.add(this._boxContainer, { expand: true });
|
2009-08-11 11:16:25 -04:00
|
|
|
this._boxContainer.add_actor(this._leftBox);
|
|
|
|
this._boxContainer.add_actor(this._centerBox);
|
|
|
|
this._boxContainer.add_actor(this._rightBox);
|
|
|
|
this._boxContainer.connect('get-preferred-width', Lang.bind(this, function(box, forHeight, alloc) {
|
|
|
|
let children = box.get_children();
|
|
|
|
for (let i = 0; i < children.length; i++) {
|
|
|
|
let [childMin, childNatural] = children[i].get_preferred_width(forHeight);
|
|
|
|
alloc.min_size += childMin;
|
|
|
|
alloc.natural_size += childNatural;
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
this._boxContainer.connect('get-preferred-height', Lang.bind(this, function(box, forWidth, alloc) {
|
|
|
|
let children = box.get_children();
|
|
|
|
for (let i = 0; i < children.length; i++) {
|
|
|
|
let [childMin, childNatural] = children[i].get_preferred_height(forWidth);
|
|
|
|
if (childMin > alloc.min_size)
|
|
|
|
alloc.min_size = childMin;
|
|
|
|
if (childNatural > alloc.natural_size)
|
|
|
|
alloc.natural_size = childNatural;
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
this._boxContainer.connect('allocate', Lang.bind(this, function(container, box, flags) {
|
|
|
|
let allocWidth = box.x2 - box.x1;
|
|
|
|
let allocHeight = box.y2 - box.y1;
|
|
|
|
let [leftMinWidth, leftNaturalWidth] = this._leftBox.get_preferred_width(-1);
|
|
|
|
let [centerMinWidth, centerNaturalWidth] = this._centerBox.get_preferred_width(-1);
|
|
|
|
let [rightMinWidth, rightNaturalWidth] = this._rightBox.get_preferred_width(-1);
|
|
|
|
|
2010-05-25 10:21:22 -04:00
|
|
|
let sideWidth, centerWidth;
|
|
|
|
centerWidth = centerNaturalWidth;
|
|
|
|
sideWidth = (allocWidth - centerWidth) / 2;
|
|
|
|
|
2009-08-11 11:16:25 -04:00
|
|
|
let childBox = new Clutter.ActorBox();
|
2010-06-18 19:02:50 -04:00
|
|
|
|
|
|
|
childBox.y1 = 0;
|
2010-04-27 09:46:19 -04:00
|
|
|
childBox.y2 = allocHeight;
|
2010-06-18 19:02:50 -04:00
|
|
|
if (this.actor.get_direction() == St.TextDirection.RTL) {
|
|
|
|
childBox.x1 = allocWidth - Math.min(Math.floor(sideWidth),
|
|
|
|
leftNaturalWidth);
|
|
|
|
childBox.x2 = allocWidth;
|
|
|
|
} else {
|
|
|
|
childBox.x1 = 0;
|
|
|
|
childBox.x2 = Math.min(Math.floor(sideWidth),
|
|
|
|
leftNaturalWidth);
|
|
|
|
}
|
2009-08-11 11:16:25 -04:00
|
|
|
this._leftBox.allocate(childBox, flags);
|
|
|
|
|
2010-05-25 10:21:22 -04:00
|
|
|
childBox.x1 = Math.ceil(sideWidth);
|
2010-04-27 09:46:19 -04:00
|
|
|
childBox.y1 = 0;
|
2010-05-25 10:21:22 -04:00
|
|
|
childBox.x2 = childBox.x1 + centerWidth;
|
2010-04-27 09:46:19 -04:00
|
|
|
childBox.y2 = allocHeight;
|
2009-08-11 11:16:25 -04:00
|
|
|
this._centerBox.allocate(childBox, flags);
|
|
|
|
|
2010-04-27 09:46:19 -04:00
|
|
|
childBox.y1 = 0;
|
|
|
|
childBox.y2 = allocHeight;
|
2010-06-18 19:02:50 -04:00
|
|
|
if (this.actor.get_direction() == St.TextDirection.RTL) {
|
|
|
|
childBox.x1 = 0;
|
|
|
|
childBox.x2 = Math.min(Math.floor(sideWidth),
|
|
|
|
rightNaturalWidth);
|
|
|
|
} else {
|
|
|
|
childBox.x1 = allocWidth - Math.min(Math.floor(sideWidth),
|
|
|
|
rightNaturalWidth);
|
|
|
|
childBox.x2 = allocWidth;
|
|
|
|
}
|
2009-08-11 11:16:25 -04:00
|
|
|
this._rightBox.allocate(childBox, flags);
|
|
|
|
}));
|
|
|
|
|
2009-10-09 00:30:10 -04:00
|
|
|
/* Button on the left side of the panel. */
|
|
|
|
/* Translators: If there is no suitable word for "Activities" in your language, you can use the word for "Overview". */
|
2009-11-16 14:16:22 -05:00
|
|
|
let label = new St.Label({ text: _("Activities") });
|
2011-01-25 16:22:00 -05:00
|
|
|
this.button = new St.Button({ name: 'panelActivities',
|
|
|
|
style_class: 'panel-button',
|
|
|
|
reactive: true,
|
|
|
|
can_focus: true });
|
2009-11-16 14:16:22 -05:00
|
|
|
this.button.set_child(label);
|
2011-01-05 09:47:27 -05:00
|
|
|
this.button._delegate = this.button;
|
|
|
|
this.button._xdndTimeOut = 0;
|
|
|
|
this.button.handleDragOver = Lang.bind(this,
|
|
|
|
function(source, actor, x, y, time) {
|
|
|
|
if (source == Main.xdndHandler) {
|
|
|
|
if (this.button._xdndTimeOut != 0)
|
|
|
|
Mainloop.source_remove(this.button._xdndTimeOut);
|
|
|
|
this.button._xdndTimeOut = Mainloop.timeout_add(BUTTON_DND_ACTIVATION_TIMEOUT,
|
|
|
|
Lang.bind(this,
|
|
|
|
function() {
|
|
|
|
this._xdndShowOverview(actor);
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
});
|
2009-11-17 17:46:20 -05:00
|
|
|
this._leftBox.add(this.button);
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2011-02-08 21:12:10 -05:00
|
|
|
// Synchronize the buttons pseudo classes with its corner
|
|
|
|
this.button.connect('style-changed', Lang.bind(this,
|
|
|
|
function(actor) {
|
|
|
|
let rtl = actor.get_direction() == St.TextDirection.RTL;
|
|
|
|
let corner = rtl ? this._rightCorner : this._leftCorner;
|
|
|
|
let pseudoClass = actor.get_style_pseudo_class();
|
|
|
|
corner.actor.set_style_pseudo_class(pseudoClass);
|
|
|
|
}));
|
|
|
|
|
2011-02-23 08:35:45 -05:00
|
|
|
this._hotCorner = null;
|
2009-08-07 16:45:35 -04:00
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
let appMenuButton = new AppMenuButton();
|
|
|
|
this._leftBox.add(appMenuButton.actor);
|
|
|
|
|
2010-05-20 11:18:46 -04:00
|
|
|
this._menus.addMenu(appMenuButton.menu);
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2009-08-11 11:16:25 -04:00
|
|
|
/* center */
|
2011-01-28 16:35:46 -05:00
|
|
|
this._dateMenu = new DateMenu.DateMenuButton();
|
|
|
|
this._centerBox.add(this._dateMenu.actor, { y_fill: true });
|
|
|
|
this._menus.addMenu(this._dateMenu.menu);
|
2009-09-30 10:02:08 -04:00
|
|
|
|
2009-08-11 11:16:25 -04:00
|
|
|
/* right */
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2011-01-28 17:51:04 -05:00
|
|
|
// System status applets live in statusBox, while legacy tray icons
|
2010-06-22 17:06:17 -04:00
|
|
|
// live in trayBox
|
2009-03-24 14:25:07 -04:00
|
|
|
// The trayBox is hidden when there are no tray icons.
|
2011-01-12 10:00:54 -05:00
|
|
|
this._trayBox = new St.BoxLayout({ name: 'legacyTray' });
|
|
|
|
this._statusBox = new St.BoxLayout({ name: 'statusTray' });
|
2009-05-13 11:54:09 -04:00
|
|
|
|
2011-01-12 10:00:54 -05:00
|
|
|
this._trayBox.hide();
|
|
|
|
this._rightBox.add(this._trayBox);
|
|
|
|
this._rightBox.add(this._statusBox);
|
2010-06-22 17:06:17 -04:00
|
|
|
|
2011-02-17 20:34:45 -05:00
|
|
|
this._statusmenu = new StatusMenu.StatusMenuButton();
|
2011-02-17 20:33:41 -05:00
|
|
|
this._statusmenu.actor.name = 'panelStatus';
|
2011-02-17 20:34:45 -05:00
|
|
|
this._rightBox.add(this._statusmenu.actor);
|
|
|
|
|
2011-02-08 21:12:10 -05:00
|
|
|
// Synchronize the buttons pseudo classes with its corner
|
|
|
|
this._statusmenu.actor.connect('style-changed', Lang.bind(this,
|
|
|
|
function(actor) {
|
|
|
|
let rtl = actor.get_direction() == St.TextDirection.RTL;
|
|
|
|
let corner = rtl ? this._leftCorner : this._rightCorner;
|
|
|
|
let pseudoClass = actor.get_style_pseudo_class();
|
|
|
|
corner.actor.set_style_pseudo_class(pseudoClass);
|
|
|
|
}));
|
|
|
|
|
2010-08-09 12:33:34 -04:00
|
|
|
Main.statusIconDispatcher.connect('status-icon-added', Lang.bind(this, this._onTrayIconAdded));
|
|
|
|
Main.statusIconDispatcher.connect('status-icon-removed', Lang.bind(this, this._onTrayIconRemoved));
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2009-08-11 07:46:10 -04:00
|
|
|
// TODO: decide what to do with the rest of the panel in the Overview mode (make it fade-out, become non-reactive, etc.)
|
|
|
|
// We get into the Overview mode on button-press-event as opposed to button-release-event because eventually we'll probably
|
|
|
|
// have the Overview act like a menu that allows the user to release the mouse on the activity the user wants
|
2008-12-01 14:51:43 -05:00
|
|
|
// to switch to.
|
2011-01-25 16:22:00 -05:00
|
|
|
this.button.connect('clicked', Lang.bind(this, function(b) {
|
2009-11-16 14:16:22 -05:00
|
|
|
if (!Main.overview.animationInProgress) {
|
2011-02-23 05:22:49 -05:00
|
|
|
this._hotCorner.maybeToggleOverviewOnClick();
|
2009-08-29 07:23:28 -04:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-06 16:55:29 -04:00
|
|
|
}));
|
2009-08-11 07:46:10 -04:00
|
|
|
// In addition to pressing the button, the Overview can be entered and exited by other means, such as
|
|
|
|
// pressing the System key, Alt+F1 or Esc. We want the button to be pressed in when the Overview is entered
|
2009-05-08 16:27:14 -04:00
|
|
|
// and to be released when it is exited regardless of how it was triggered.
|
2009-08-29 07:23:28 -04:00
|
|
|
Main.overview.connect('showing', Lang.bind(this, function() {
|
2011-01-25 16:22:00 -05:00
|
|
|
this.button.checked = true;
|
2009-08-29 07:23:28 -04:00
|
|
|
}));
|
|
|
|
Main.overview.connect('hiding', Lang.bind(this, function() {
|
2011-01-25 16:22:00 -05:00
|
|
|
this.button.checked = false;
|
2009-08-29 07:23:28 -04:00
|
|
|
}));
|
2008-11-28 15:12:20 -05:00
|
|
|
|
2009-11-11 13:11:34 -05:00
|
|
|
Main.chrome.addActor(this.actor, { visibleInOverview: true });
|
2011-02-08 21:12:10 -05:00
|
|
|
Main.chrome.addActor(this._leftCorner.actor, { visibleInOverview: true,
|
|
|
|
affectsStruts: false,
|
|
|
|
affectsInputRegion: false });
|
|
|
|
Main.chrome.addActor(this._rightCorner.actor, { visibleInOverview: true,
|
|
|
|
affectsStruts: false,
|
|
|
|
affectsInputRegion: false });
|
2008-12-01 14:51:43 -05:00
|
|
|
},
|
|
|
|
|
2011-01-05 09:47:27 -05:00
|
|
|
_xdndShowOverview: function (actor) {
|
|
|
|
let [x, y, mask] = global.get_pointer();
|
|
|
|
let pickedActor = global.stage.get_actor_at_pos(Clutter.PickMode.REACTIVE, x, y);
|
|
|
|
|
|
|
|
if (pickedActor != this.button) {
|
|
|
|
Mainloop.source_remove(this.button._xdndTimeOut);
|
|
|
|
this.button._xdndTimeOut = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!Main.overview.visible && !Main.overview.animationInProgress) {
|
|
|
|
Main.overview.showTemporarily();
|
|
|
|
Main.overview.beginItemDrag(actor);
|
|
|
|
}
|
|
|
|
|
|
|
|
Mainloop.source_remove(this.button._xdndTimeOut);
|
|
|
|
this.button._xdndTimeOut = 0;
|
|
|
|
},
|
|
|
|
|
2011-02-23 08:35:45 -05:00
|
|
|
|
|
|
|
// While there can be multiple hotcorners (one per monitor), the hot corner
|
|
|
|
// that is on top of the Activities button is special since it needs special
|
|
|
|
// coordination with clicking on that button
|
|
|
|
setHotCorner: function(corner) {
|
|
|
|
this._hotCorner = corner;
|
|
|
|
},
|
|
|
|
|
2010-07-24 07:57:53 -04:00
|
|
|
startStatusArea: function() {
|
|
|
|
for (let i = 0; i < STANDARD_TRAY_ICON_ORDER.length; i++) {
|
|
|
|
let role = STANDARD_TRAY_ICON_ORDER[i];
|
|
|
|
let constructor = STANDARD_TRAY_ICON_SHELL_IMPLEMENTATION[role];
|
|
|
|
if (!constructor) {
|
|
|
|
// This icon is not implemented (this is a bug)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let indicator = new constructor();
|
|
|
|
this._statusBox.add(indicator.actor);
|
|
|
|
this._menus.addMenu(indicator.menu);
|
|
|
|
}
|
2011-02-22 11:40:32 -05:00
|
|
|
|
|
|
|
// PopupMenuManager depends on menus being added in order for
|
|
|
|
// keyboard navigation
|
|
|
|
this._menus.addMenu(this._statusmenu.menu);
|
2010-07-24 07:57:53 -04:00
|
|
|
},
|
|
|
|
|
2009-07-02 00:52:21 -04:00
|
|
|
startupAnimation: function() {
|
|
|
|
this.actor.y = -this.actor.height;
|
|
|
|
Tweener.addTween(this.actor,
|
|
|
|
{ y: 0,
|
|
|
|
time: 0.2,
|
2010-05-13 15:46:04 -04:00
|
|
|
transition: 'easeOutQuad'
|
2009-07-02 00:52:21 -04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2011-02-23 12:56:51 -05:00
|
|
|
relayout: function() {
|
|
|
|
let primary = global.get_primary_monitor();
|
|
|
|
|
|
|
|
this.actor.set_position(primary.x, primary.y);
|
|
|
|
this.actor.set_size(primary.width, PANEL_HEIGHT);
|
2011-02-23 09:16:18 -05:00
|
|
|
|
|
|
|
this._leftCorner.relayout();
|
|
|
|
this._rightCorner.relayout();
|
2011-02-23 12:56:51 -05:00
|
|
|
},
|
|
|
|
|
2010-08-09 12:33:34 -04:00
|
|
|
_onTrayIconAdded: function(o, icon, role) {
|
2010-03-31 16:40:32 -04:00
|
|
|
icon.height = PANEL_ICON_SIZE;
|
|
|
|
|
2010-08-09 12:33:34 -04:00
|
|
|
if (STANDARD_TRAY_ICON_SHELL_IMPLEMENTATION[role]) {
|
|
|
|
// This icon is legacy, and replaced by a Shell version
|
|
|
|
// Hide it
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Figure out the index in our well-known order for this icon
|
|
|
|
let position = STANDARD_TRAY_ICON_ORDER.indexOf(role);
|
|
|
|
icon._rolePosition = position;
|
|
|
|
let children = this._trayBox.get_children();
|
|
|
|
let i;
|
|
|
|
// Walk children backwards, until we find one that isn't
|
|
|
|
// well-known, or one where we should follow
|
|
|
|
for (i = children.length - 1; i >= 0; i--) {
|
|
|
|
let rolePosition = children[i]._rolePosition;
|
|
|
|
if (!rolePosition || position > rolePosition) {
|
|
|
|
this._trayBox.insert_actor(icon, i + 1);
|
|
|
|
break;
|
2009-10-15 09:44:09 -04:00
|
|
|
}
|
|
|
|
}
|
2010-08-09 12:33:34 -04:00
|
|
|
if (i == -1) {
|
|
|
|
// If we didn't find a position, we must be first
|
|
|
|
this._trayBox.insert_actor(icon, 0);
|
|
|
|
}
|
2009-10-15 09:44:09 -04:00
|
|
|
|
|
|
|
// Make sure the trayBox is shown.
|
|
|
|
this._trayBox.show();
|
|
|
|
},
|
|
|
|
|
2010-08-09 12:33:34 -04:00
|
|
|
_onTrayIconRemoved: function(o, icon) {
|
2010-10-28 16:25:33 -04:00
|
|
|
if (icon.get_parent() != null)
|
|
|
|
this._trayBox.remove_actor(icon);
|
2009-08-01 22:11:37 -04:00
|
|
|
},
|
|
|
|
|
2008-10-31 14:09:20 -04:00
|
|
|
};
|