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
|
|
|
|
2010-05-12 17:07:41 -04:00
|
|
|
const Cairo = imports.cairo;
|
2008-10-31 14:09:20 -04:00
|
|
|
const Clutter = imports.gi.Clutter;
|
2009-05-13 11:54:09 -04:00
|
|
|
const Gtk = imports.gi.Gtk;
|
2009-05-07 09:54:21 -04:00
|
|
|
const Lang = imports.lang;
|
2008-11-21 08:54:25 -05:00
|
|
|
const Mainloop = imports.mainloop;
|
2008-11-19 18:04:53 -05:00
|
|
|
const Meta = imports.gi.Meta;
|
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-07-02 00:52:21 -04:00
|
|
|
const Tweener = imports.ui.tweener;
|
2009-08-11 11:32:58 -04:00
|
|
|
const Signals = imports.signals;
|
2010-05-10 09:46:54 -04:00
|
|
|
const DBus = imports.dbus;
|
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
|
|
|
|
2009-12-26 12:00:36 -05:00
|
|
|
const AppDisplay = imports.ui.appDisplay;
|
2009-09-30 10:02:08 -04:00
|
|
|
const Calendar = imports.ui.calendar;
|
2010-05-12 17:07:41 -04:00
|
|
|
const Overview = imports.ui.overview;
|
2008-11-09 13:01:59 -05:00
|
|
|
const Main = imports.ui.main;
|
2010-05-05 10:03:48 -04:00
|
|
|
const BoxPointer = imports.ui.boxpointer;
|
2008-10-31 19:09:46 -04:00
|
|
|
|
2009-07-13 12:49:06 -04:00
|
|
|
const PANEL_HEIGHT = 26;
|
|
|
|
|
2010-05-12 17:07:41 -04:00
|
|
|
const POPUP_ANIMATION_TIME = 0.1;
|
2009-08-11 11:16:25 -04:00
|
|
|
|
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
|
|
|
|
2010-03-15 09:50:05 -04:00
|
|
|
const STANDARD_TRAY_ICON_ORDER = ['keyboard', 'volume', 'bluetooth', 'network', 'battery'];
|
2009-10-15 09:44:09 -04:00
|
|
|
const STANDARD_TRAY_ICON_IMPLEMENTATIONS = {
|
|
|
|
'bluetooth-applet': 'bluetooth',
|
|
|
|
'gnome-volume-control-applet': 'volume',
|
|
|
|
'nm-applet': 'network',
|
|
|
|
'gnome-power-manager': 'battery'
|
|
|
|
};
|
|
|
|
|
2010-02-25 14:30:23 -05:00
|
|
|
const CLOCK_FORMAT_KEY = 'clock/format';
|
|
|
|
const CLOCK_CUSTOM_FORMAT_KEY = 'clock/custom_format';
|
|
|
|
const CLOCK_SHOW_DATE_KEY = 'clock/show_date';
|
|
|
|
const CLOCK_SHOW_SECONDS_KEY = 'clock/show_seconds';
|
|
|
|
|
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-18 13:14:38 -04:00
|
|
|
function PanelBaseMenuItem(reactive) {
|
|
|
|
this._init(reactive);
|
2010-05-05 10:03:48 -04:00
|
|
|
}
|
|
|
|
|
2010-05-18 13:14:38 -04:00
|
|
|
PanelBaseMenuItem.prototype = {
|
|
|
|
_init: function (reactive) {
|
2010-05-05 10:03:48 -04:00
|
|
|
this.actor = new St.Bin({ style_class: 'panel-menu-item',
|
2010-05-18 13:14:38 -04:00
|
|
|
reactive: reactive,
|
|
|
|
track_hover: reactive,
|
2010-05-05 10:03:48 -04:00
|
|
|
x_fill: true,
|
|
|
|
y_fill: true,
|
|
|
|
x_align: St.Align.START });
|
2010-05-18 13:15:19 -04:00
|
|
|
this.actor._delegate = this;
|
2010-05-18 13:23:41 -04:00
|
|
|
this.active = false;
|
2010-05-18 13:14:38 -04:00
|
|
|
|
|
|
|
if (reactive) {
|
|
|
|
this.actor.connect('button-release-event', Lang.bind(this, function (actor, event) {
|
|
|
|
this.emit('activate', event);
|
|
|
|
}));
|
2010-05-18 13:23:41 -04:00
|
|
|
this.actor.connect('notify::hover', Lang.bind(this, this._hoverChanged));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_hoverChanged: function (actor) {
|
|
|
|
this.setActive(actor.hover);
|
|
|
|
},
|
|
|
|
|
|
|
|
activate: function (event) {
|
|
|
|
this.emit('activate', event);
|
|
|
|
},
|
|
|
|
|
|
|
|
setActive: function (active) {
|
|
|
|
let activeChanged = active != this.active;
|
|
|
|
|
|
|
|
if (activeChanged) {
|
|
|
|
this.active = active;
|
|
|
|
if (active)
|
|
|
|
this.actor.add_style_pseudo_class('active');
|
|
|
|
else
|
|
|
|
this.actor.remove_style_pseudo_class('active');
|
|
|
|
this.emit('active-changed', active);
|
2010-05-18 13:14:38 -04:00
|
|
|
}
|
2010-05-05 10:03:48 -04:00
|
|
|
}
|
2010-05-18 13:16:24 -04:00
|
|
|
};
|
2010-05-18 13:14:38 -04:00
|
|
|
Signals.addSignalMethods(PanelBaseMenuItem.prototype);
|
2010-05-05 10:03:48 -04:00
|
|
|
|
2010-05-18 13:14:38 -04:00
|
|
|
function PanelMenuItem(text) {
|
2010-05-05 10:03:48 -04:00
|
|
|
this._init(text);
|
|
|
|
}
|
|
|
|
|
2010-05-18 13:14:38 -04:00
|
|
|
PanelMenuItem.prototype = {
|
|
|
|
__proto__: PanelBaseMenuItem.prototype,
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
_init: function (text) {
|
2010-05-18 13:14:38 -04:00
|
|
|
PanelBaseMenuItem.prototype._init.call(this, true);
|
|
|
|
|
|
|
|
this.label = new St.Label({ text: text });
|
|
|
|
this.actor.set_child(this.label);
|
2010-05-19 13:26:41 -04:00
|
|
|
}
|
2010-05-18 13:14:38 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
function PanelSeparatorMenuItem() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
PanelSeparatorMenuItem.prototype = {
|
|
|
|
__proto__: PanelBaseMenuItem.prototype,
|
|
|
|
|
|
|
|
_init: function () {
|
|
|
|
PanelBaseMenuItem.prototype._init.call(this, false);
|
|
|
|
|
|
|
|
this._drawingArea = new St.DrawingArea({ style_class: 'panel-separator-menu-item' });
|
|
|
|
this.actor.set_child(this._drawingArea);
|
|
|
|
this._drawingArea.connect('repaint', Lang.bind(this, this._onRepaint));
|
2010-05-12 17:07:41 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_onRepaint: function(area) {
|
|
|
|
let cr = area.get_context();
|
2010-05-18 13:14:38 -04:00
|
|
|
let themeNode = area.get_theme_node();
|
2010-05-12 17:07:41 -04:00
|
|
|
let [width, height] = area.get_surface_size();
|
|
|
|
let found, margin, gradientHeight;
|
|
|
|
[found, margin] = themeNode.get_length('-margin-horizontal', false);
|
|
|
|
[found, gradientHeight] = themeNode.get_length('-gradient-height', false);
|
2010-05-19 13:26:41 -04:00
|
|
|
let startColor = new Clutter.Color();
|
2010-05-12 17:07:41 -04:00
|
|
|
themeNode.get_color('-gradient-start', false, startColor);
|
2010-05-19 13:26:41 -04:00
|
|
|
let endColor = new Clutter.Color();
|
2010-05-12 17:07:41 -04:00
|
|
|
themeNode.get_color('-gradient-end', false, endColor);
|
|
|
|
|
|
|
|
let gradientWidth = (width - margin * 2);
|
|
|
|
let gradientOffset = (height - gradientHeight) / 2;
|
|
|
|
let pattern = new Cairo.LinearGradient(margin, gradientOffset, width - margin, gradientOffset + gradientHeight);
|
|
|
|
pattern.addColorStopRGBA(0, startColor.red / 255, startColor.green / 255, startColor.blue / 255, startColor.alpha / 255);
|
|
|
|
pattern.addColorStopRGBA(0.5, endColor.red / 255, endColor.green / 255, endColor.blue / 255, endColor.alpha / 0xFF);
|
|
|
|
pattern.addColorStopRGBA(1, startColor.red / 255, startColor.green / 255, startColor.blue / 255, startColor.alpha / 255);
|
|
|
|
cr.setSource(pattern);
|
|
|
|
cr.rectangle(margin, gradientOffset, gradientWidth, gradientHeight);
|
|
|
|
cr.fill();
|
2010-05-05 10:03:48 -04:00
|
|
|
}
|
2010-05-18 13:16:24 -04:00
|
|
|
};
|
2010-05-05 10:03:48 -04:00
|
|
|
|
2010-05-12 11:45:58 -04:00
|
|
|
function PanelImageMenuItem(text, iconName, alwaysShowImage) {
|
|
|
|
this._init(text, iconName, alwaysShowImage);
|
2010-05-05 10:03:48 -04:00
|
|
|
}
|
|
|
|
|
2010-05-12 11:45:58 -04:00
|
|
|
// We need to instantiate a GtkImageMenuItem so it
|
|
|
|
// hooks up its properties on the GtkSettings
|
|
|
|
var _gtkImageMenuItemCreated = false;
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
PanelImageMenuItem.prototype = {
|
2010-05-18 13:14:38 -04:00
|
|
|
__proto__: PanelBaseMenuItem.prototype,
|
|
|
|
|
2010-05-12 11:45:58 -04:00
|
|
|
_init: function (text, iconName, alwaysShowImage) {
|
2010-05-18 13:14:38 -04:00
|
|
|
PanelBaseMenuItem.prototype._init.call(this, true);
|
2010-05-12 11:45:58 -04:00
|
|
|
|
|
|
|
if (!_gtkImageMenuItemCreated) {
|
|
|
|
let menuItem = new Gtk.ImageMenuItem();
|
|
|
|
menuItem.destroy();
|
|
|
|
_gtkImageMenuItemCreated = true;
|
|
|
|
}
|
2010-05-18 13:14:38 -04:00
|
|
|
|
2010-05-12 11:45:58 -04:00
|
|
|
this._alwaysShowImage = alwaysShowImage;
|
|
|
|
this._iconName = iconName;
|
|
|
|
this._size = 16;
|
2010-05-18 13:14:38 -04:00
|
|
|
|
|
|
|
let box = new St.BoxLayout({ style_class: 'panel-image-menu-item' });
|
|
|
|
this.actor.set_child(box);
|
2010-05-12 11:45:58 -04:00
|
|
|
this._imageBin = new St.Bin({ width: this._size, height: this._size });
|
2010-05-18 13:14:38 -04:00
|
|
|
box.add(this._imageBin, { y_fill: false });
|
|
|
|
box.add(new St.Label({ text: text }), { expand: true });
|
|
|
|
|
2010-05-12 11:45:58 -04:00
|
|
|
if (!alwaysShowImage) {
|
|
|
|
let settings = Gtk.Settings.get_default();
|
|
|
|
settings.connect('notify::gtk-menu-images', Lang.bind(this, this._onMenuImagesChanged));
|
|
|
|
}
|
|
|
|
this._onMenuImagesChanged();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onMenuImagesChanged: function() {
|
|
|
|
let show;
|
|
|
|
if (this._alwaysShowImage) {
|
|
|
|
show = true;
|
|
|
|
} else {
|
|
|
|
let settings = Gtk.Settings.get_default();
|
|
|
|
show = settings.gtk_menu_images;
|
|
|
|
}
|
|
|
|
if (!show) {
|
2010-05-12 17:07:41 -04:00
|
|
|
this._imageBin.hide();
|
2010-05-12 11:45:58 -04:00
|
|
|
} else {
|
|
|
|
let img = St.TextureCache.get_default().load_icon_name(this._iconName, this._size);
|
|
|
|
this._imageBin.set_child(img);
|
2010-05-12 17:07:41 -04:00
|
|
|
this._imageBin.show();
|
2010-05-12 11:45:58 -04:00
|
|
|
}
|
2010-05-05 10:03:48 -04:00
|
|
|
}
|
2010-05-18 13:16:24 -04:00
|
|
|
};
|
2010-05-05 10:03:48 -04:00
|
|
|
|
2010-05-18 13:15:19 -04:00
|
|
|
function mod(a, b) {
|
|
|
|
return (a + b) % b;
|
|
|
|
}
|
|
|
|
|
|
|
|
function findNextInCycle(items, current, direction) {
|
|
|
|
let cur;
|
|
|
|
|
|
|
|
if (items.length == 0)
|
|
|
|
return current;
|
|
|
|
else if (items.length == 1)
|
|
|
|
return items[0];
|
|
|
|
|
|
|
|
if (current)
|
|
|
|
cur = items.indexOf(current);
|
|
|
|
else if (direction == 1)
|
|
|
|
cur = items.length - 1;
|
|
|
|
else
|
|
|
|
cur = 0;
|
|
|
|
|
|
|
|
return items[mod(cur + direction, items.length)];
|
|
|
|
}
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
function PanelMenu(sourceButton) {
|
|
|
|
this._init(sourceButton);
|
|
|
|
}
|
|
|
|
|
|
|
|
PanelMenu.prototype = {
|
|
|
|
_init: function(sourceButton) {
|
|
|
|
this._sourceButton = sourceButton;
|
2010-05-12 17:07:41 -04:00
|
|
|
this._boxPointer = new BoxPointer.BoxPointer(St.Side.TOP, { x_fill: true, y_fill: true, x_align: St.Align.START });
|
2010-05-05 10:03:48 -04:00
|
|
|
this.actor = this._boxPointer.actor;
|
|
|
|
this.actor.style_class = 'panel-menu-boxpointer';
|
|
|
|
this._box = new St.BoxLayout({ style_class: 'panel-menu-content',
|
|
|
|
vertical: true });
|
|
|
|
this._boxPointer.bin.set_child(this._box);
|
|
|
|
this.actor.add_style_class_name('panel-menu');
|
2010-05-18 13:15:19 -04:00
|
|
|
|
|
|
|
this._activeMenuItem = null;
|
2010-05-05 10:03:48 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
addAction: function(title, callback) {
|
|
|
|
var menuItem = new PanelMenuItem(title);
|
|
|
|
this.addMenuItem(menuItem);
|
|
|
|
menuItem.connect('activate', Lang.bind(this, function (menuItem, event) {
|
|
|
|
callback(event);
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
|
|
|
addMenuItem: function(menuItem) {
|
|
|
|
this._box.add(menuItem.actor);
|
2010-05-18 13:15:19 -04:00
|
|
|
menuItem.connect('active-changed', Lang.bind(this, function (menuItem, active) {
|
|
|
|
if (active && this._activeMenuItem != menuItem) {
|
|
|
|
if (this._activeMenuItem)
|
|
|
|
this._activeMenuItem.setActive(false);
|
|
|
|
this._activeMenuItem = menuItem;
|
|
|
|
} else if (!active && this._activeMenuItem == menuItem) {
|
|
|
|
this._activeMenuItem = null;
|
|
|
|
}
|
|
|
|
}));
|
2010-05-05 10:03:48 -04:00
|
|
|
menuItem.connect('activate', Lang.bind(this, function (menuItem, event) {
|
|
|
|
this.emit('activate');
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
|
|
|
addActor: function(actor) {
|
|
|
|
this._box.add(actor);
|
|
|
|
},
|
|
|
|
|
|
|
|
setArrowOrigin: function(origin) {
|
|
|
|
this._boxPointer.setArrowOrigin(origin);
|
2010-05-18 13:15:19 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
open: function() {
|
|
|
|
let panelActor = Main.panel.actor;
|
|
|
|
this.actor.lower(panelActor);
|
|
|
|
|
|
|
|
this.actor.show();
|
|
|
|
this.actor.opacity = 0;
|
|
|
|
this.actor.reactive = true;
|
|
|
|
Tweener.addTween(this.actor, { opacity: 255,
|
|
|
|
transition: "easeOutQuad",
|
|
|
|
time: POPUP_ANIMATION_TIME });
|
|
|
|
},
|
|
|
|
|
|
|
|
close: function() {
|
|
|
|
this.actor.reactive = false;
|
|
|
|
Tweener.addTween(this.actor, { opacity: 0,
|
|
|
|
transition: "easeOutQuad",
|
|
|
|
time: POPUP_ANIMATION_TIME,
|
|
|
|
onComplete: Lang.bind(this, function () { this.actor.hide(); })});
|
|
|
|
if (this._activeMenuItem)
|
|
|
|
this._activeMenuItem.setActive(false);
|
|
|
|
},
|
|
|
|
|
|
|
|
handleKeyPress: function(event) {
|
|
|
|
if (event.get_key_symbol() == Clutter.space ||
|
|
|
|
event.get_key_symbol() == Clutter.Return) {
|
|
|
|
if (this._activeMenuItem)
|
|
|
|
this._activeMenuItem.activate(event);
|
|
|
|
return true;
|
|
|
|
} else if (event.get_key_symbol() == Clutter.Down
|
|
|
|
|| event.get_key_symbol() == Clutter.Up) {
|
|
|
|
let items = this._box.get_children().filter(function (child) { return child.visible && child.reactive; });
|
|
|
|
let current = this._activeMenuItem ? this._activeMenuItem.actor : null;
|
|
|
|
let direction = event.get_key_symbol() == Clutter.Down ? 1 : -1;
|
|
|
|
|
|
|
|
let next = findNextInCycle(items, current, direction);
|
|
|
|
if (next) {
|
|
|
|
next._delegate.setActive(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2010-05-05 10:03:48 -04:00
|
|
|
}
|
2010-05-18 13:16:24 -04:00
|
|
|
};
|
2010-05-05 10:03:48 -04:00
|
|
|
Signals.addSignalMethods(PanelMenu.prototype);
|
|
|
|
|
|
|
|
function PanelMenuButton(menuAlignment) {
|
|
|
|
this._init(menuAlignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
PanelMenuButton.prototype = {
|
|
|
|
State: {
|
|
|
|
OPEN: 0,
|
|
|
|
TRANSITIONING: 1,
|
|
|
|
CLOSED: 2
|
|
|
|
},
|
|
|
|
|
|
|
|
_init: function(menuAlignment) {
|
|
|
|
this._menuAlignment = menuAlignment;
|
|
|
|
this.actor = new St.Bin({ style_class: 'panel-button',
|
|
|
|
reactive: true,
|
|
|
|
x_fill: true,
|
2010-05-08 18:25:49 -04:00
|
|
|
y_fill: false,
|
2010-05-05 10:03:48 -04:00
|
|
|
track_hover: true });
|
2010-05-18 13:15:19 -04:00
|
|
|
this.actor._delegate = this;
|
2010-05-05 10:03:48 -04:00
|
|
|
this.actor.connect('button-press-event', Lang.bind(this, this._onButtonPress));
|
|
|
|
this._state = this.State.CLOSED;
|
|
|
|
this.menu = new PanelMenu(this.actor);
|
|
|
|
this.menu.connect('activate', Lang.bind(this, this._onActivated));
|
|
|
|
Main.chrome.addActor(this.menu.actor, { visibleInOverview: true,
|
|
|
|
affectsStruts: false });
|
|
|
|
this.menu.actor.hide();
|
|
|
|
},
|
|
|
|
|
|
|
|
open: function() {
|
|
|
|
if (this._state != this.State.CLOSED)
|
|
|
|
return;
|
|
|
|
this._state = this.State.OPEN;
|
|
|
|
|
2010-05-18 13:15:19 -04:00
|
|
|
this.menu.open();
|
2010-05-05 10:03:48 -04:00
|
|
|
this._repositionMenu();
|
|
|
|
|
|
|
|
this.actor.add_style_pseudo_class('pressed');
|
|
|
|
this.emit('open-state-changed', true);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onActivated: function(button) {
|
|
|
|
this.emit('activate');
|
|
|
|
this.close();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onButtonPress: function(actor, event) {
|
|
|
|
this.toggle();
|
|
|
|
},
|
|
|
|
|
|
|
|
_repositionMenu: function() {
|
|
|
|
let primary = global.get_primary_monitor();
|
|
|
|
|
|
|
|
// Positioning for the source button
|
|
|
|
let [buttonX, buttonY] = this.actor.get_transformed_position();
|
|
|
|
let [buttonWidth, buttonHeight] = this.actor.get_transformed_size();
|
|
|
|
|
|
|
|
let [minWidth, minHeight, natWidth, natHeight] = this.menu.actor.get_preferred_size();
|
|
|
|
|
|
|
|
// Adjust X position for alignment
|
|
|
|
let stageX = buttonX;
|
|
|
|
switch (this._menuAlignment) {
|
|
|
|
case St.Align.END:
|
|
|
|
stageX -= (natWidth - buttonWidth);
|
|
|
|
break;
|
|
|
|
case St.Align.MIDDLE:
|
|
|
|
stageX -= Math.floor((natWidth - buttonWidth) / 2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure we fit on the x position
|
|
|
|
stageX = Math.min(stageX, primary.x + primary.width - natWidth);
|
|
|
|
stageX = Math.max(stageX, primary.x);
|
|
|
|
|
|
|
|
// Actually set the position
|
|
|
|
let panelActor = Main.panel.actor;
|
|
|
|
this.menu.actor.x = stageX;
|
|
|
|
this.menu.actor.y = Math.floor(panelActor.y + panelActor.height);
|
|
|
|
|
2010-05-19 13:50:39 -04:00
|
|
|
// And adjust the arrow
|
|
|
|
this.menu.setArrowOrigin((buttonX - stageX) + Math.floor(buttonWidth / 2));
|
2010-05-05 10:03:48 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
close: function() {
|
|
|
|
if (this._state != this.State.OPEN)
|
|
|
|
return;
|
|
|
|
this._state = this.State.CLOSED;
|
2010-05-18 13:15:19 -04:00
|
|
|
this.menu.close();
|
2010-05-05 10:03:48 -04:00
|
|
|
this.actor.remove_style_pseudo_class('pressed');
|
|
|
|
this.emit('open-state-changed', false);
|
|
|
|
},
|
|
|
|
|
|
|
|
toggle: function() {
|
|
|
|
if (this._state == this.State.OPEN)
|
|
|
|
this.close();
|
|
|
|
else
|
|
|
|
this.open();
|
|
|
|
}
|
2010-05-18 13:16:24 -04:00
|
|
|
};
|
2010-05-05 10:03:48 -04:00
|
|
|
Signals.addSignalMethods(PanelMenuButton.prototype);
|
|
|
|
|
|
|
|
|
|
|
|
/* Basic implementation of a menu container.
|
|
|
|
* Call _addMenu to add menu buttons.
|
|
|
|
*/
|
|
|
|
function PanelMenuBar() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
PanelMenuBar.prototype = {
|
|
|
|
_init: function() {
|
|
|
|
this.actor = new St.BoxLayout({ style_class: 'menu-bar',
|
|
|
|
reactive: true });
|
|
|
|
this.isMenuOpen = false;
|
|
|
|
|
|
|
|
// these are more "private"
|
|
|
|
this._eventCaptureId = 0;
|
|
|
|
this._activeMenuButton = null;
|
|
|
|
this._menus = [];
|
|
|
|
},
|
|
|
|
|
|
|
|
_addMenu: function(button) {
|
|
|
|
this._menus.push(button);
|
|
|
|
button.actor.connect('enter-event', Lang.bind(this, this._onMenuEnter, button));
|
|
|
|
button.actor.connect('leave-event', Lang.bind(this, this._onMenuLeave, button));
|
|
|
|
button.actor.connect('button-press-event', Lang.bind(this, this._onMenuPress, button));
|
|
|
|
button.connect('open-state-changed', Lang.bind(this, this._onMenuOpenState));
|
|
|
|
button.connect('activate', Lang.bind(this, this._onMenuActivated));
|
|
|
|
},
|
|
|
|
|
|
|
|
_onMenuOpenState: function(button, isOpen) {
|
|
|
|
if (!isOpen && button == this._activeMenuButton) {
|
|
|
|
this._activeMenuButton = null;
|
|
|
|
} else if (isOpen) {
|
|
|
|
this._activeMenuButton = button;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_onMenuEnter: function(actor, event, button) {
|
|
|
|
if (!this.isMenuOpen || button == this._activeMenuButton)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (this._activeMenuButton != null)
|
|
|
|
this._activeMenuButton.close();
|
|
|
|
button.open();
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onMenuLeave: function(actor, event, button) {
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onMenuPress: function(actor, event, button) {
|
|
|
|
if (this.isMenuOpen)
|
|
|
|
return false;
|
|
|
|
Main.pushModal(this.actor);
|
|
|
|
this._eventCaptureId = global.stage.connect('captured-event', Lang.bind(this, this._onEventCapture));
|
|
|
|
this.isMenuOpen = true;
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onMenuActivated: function(button) {
|
|
|
|
if (this.isMenuOpen)
|
|
|
|
this._closeMenu();
|
|
|
|
},
|
|
|
|
|
|
|
|
_containsActor: function(container, actor) {
|
|
|
|
let parent = actor;
|
|
|
|
while (parent != null) {
|
|
|
|
if (parent == container)
|
|
|
|
return true;
|
|
|
|
parent = parent.get_parent();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_eventIsOnActiveMenu: function(event) {
|
|
|
|
let src = event.get_source();
|
|
|
|
return this._activeMenuButton != null
|
|
|
|
&& (this._containsActor(this._activeMenuButton.actor, src) ||
|
|
|
|
this._containsActor(this._activeMenuButton.menu.actor, src));
|
|
|
|
},
|
|
|
|
|
|
|
|
_eventIsOnAnyMenuButton: function(event) {
|
|
|
|
let src = event.get_source();
|
|
|
|
for (let i = 0; i < this._menus.length; i++) {
|
|
|
|
let actor = this._menus[i].actor;
|
|
|
|
if (this._containsActor(actor, src))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onEventCapture: function(actor, event) {
|
|
|
|
if (!this.isMenuOpen)
|
|
|
|
return false;
|
|
|
|
let activeMenuContains = this._eventIsOnActiveMenu(event);
|
|
|
|
let eventType = event.type();
|
|
|
|
if (eventType == Clutter.EventType.BUTTON_RELEASE) {
|
|
|
|
if (activeMenuContains) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
if (this._activeMenuButton != null)
|
|
|
|
this._activeMenuButton.close();
|
|
|
|
this._closeMenu();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if ((eventType == Clutter.EventType.BUTTON_PRESS && !activeMenuContains)
|
|
|
|
|| (eventType == Clutter.EventType.KEY_PRESS && event.get_key_symbol() == Clutter.Escape)) {
|
|
|
|
if (this._activeMenuButton != null)
|
|
|
|
this._activeMenuButton.close();
|
|
|
|
this._closeMenu();
|
|
|
|
return true;
|
2010-05-18 13:15:19 -04:00
|
|
|
} else if (eventType == Clutter.EventType.KEY_PRESS
|
|
|
|
&& this._activeMenuButton != null
|
|
|
|
&& this._activeMenuButton.menu.handleKeyPress(event)) {
|
|
|
|
return true;
|
|
|
|
} else if (eventType == Clutter.EventType.KEY_PRESS
|
|
|
|
&& this._activeMenuButton != null
|
|
|
|
&& (event.get_key_symbol() == Clutter.Left
|
|
|
|
|| event.get_key_symbol() == Clutter.Right)) {
|
|
|
|
let direction = event.get_key_symbol() == Clutter.Right ? 1 : -1;
|
|
|
|
let next = findNextInCycle(this._menus, this._activeMenuButton, direction);
|
|
|
|
if (next != this._activeMenuButton) {
|
|
|
|
this._activeMenuButton.close();
|
|
|
|
next.open();
|
|
|
|
}
|
|
|
|
return true;
|
2010-05-05 10:03:48 -04:00
|
|
|
} else if (activeMenuContains || this._eventIsOnAnyMenuButton(event)) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-05-18 13:15:19 -04:00
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_closeMenu: function() {
|
|
|
|
global.stage.disconnect(this._eventCaptureId);
|
|
|
|
this._eventCaptureId = 0;
|
|
|
|
Main.popModal(this.actor);
|
|
|
|
this.isMenuOpen = false;
|
|
|
|
}
|
2010-05-18 13:16:24 -04:00
|
|
|
};
|
2010-05-05 10:03:48 -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 = {
|
|
|
|
__proto__: PanelMenuButton.prototype,
|
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
_init: function() {
|
2010-05-05 10:03:48 -04:00
|
|
|
PanelMenuButton.prototype._init.call(this, St.Align.START);
|
2009-09-11 17:23:23 -04:00
|
|
|
this._metaDisplay = global.screen.get_display();
|
2009-08-11 11:32:58 -04:00
|
|
|
|
|
|
|
this._focusedApp = null;
|
|
|
|
|
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' });
|
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-12 17:07:41 -04:00
|
|
|
this._quitMenu = new PanelMenuItem('');
|
|
|
|
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)
|
|
|
|
this.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
|
|
|
}));
|
|
|
|
|
2009-10-15 19:28:29 -04:00
|
|
|
let tracker = Shell.WindowTracker.get_default();
|
|
|
|
tracker.connect('notify::focus-app', Lang.bind(this, this._sync));
|
|
|
|
// For now just resync on all running state changes; this is mainly to handle
|
2009-08-27 02:22:25 -04:00
|
|
|
// cases where the focused window's application changes without the focus
|
|
|
|
// changing. An example case is how we map Firefox based on the window
|
|
|
|
// title which is a dynamic property.
|
2009-10-15 19:28:29 -04:00
|
|
|
tracker.connect('app-running-changed', Lang.bind(this, this._sync));
|
2009-08-27 02:22:25 -04:00
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
this._sync();
|
2010-05-12 17:30:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
show: function() {
|
|
|
|
if (this._visible)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.actor.show();
|
|
|
|
Tweener.addTween(this.actor,
|
|
|
|
{ opacity: 255,
|
|
|
|
time: Overview.ANIMATION_TIME,
|
|
|
|
transition: 'easeOutQuad',
|
|
|
|
onComplete: function() {
|
|
|
|
this._visible = true;
|
|
|
|
},
|
|
|
|
onCompleteScope: this });
|
|
|
|
},
|
|
|
|
|
|
|
|
hide: function() {
|
|
|
|
if (!this._visible)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Tweener.addTween(this.actor,
|
|
|
|
{ opacity: 0,
|
|
|
|
time: Overview.ANIMATION_TIME,
|
|
|
|
transition: 'easeOutQuad',
|
|
|
|
onComplete: function() {
|
|
|
|
this.actor.hide();
|
|
|
|
this._visible = false;
|
|
|
|
},
|
|
|
|
onCompleteScope: this });
|
2009-08-11 11:32:58 -04:00
|
|
|
},
|
|
|
|
|
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;
|
2010-05-05 10:03:48 -04:00
|
|
|
[minSizfe, 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);
|
2009-12-26 12:00:36 -05:00
|
|
|
},
|
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
_onQuit: function() {
|
|
|
|
if (this._focusedApp == null)
|
|
|
|
return;
|
|
|
|
this._focusedApp.request_quit();
|
|
|
|
},
|
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
_sync: function() {
|
2009-10-15 19:28:29 -04:00
|
|
|
let tracker = Shell.WindowTracker.get_default();
|
|
|
|
|
|
|
|
let focusedApp = tracker.focus_app;
|
Major ShellApp API cleanup, startup notification, window focus handling
This patch combines several high level changes which are conceptually
independent but in practice rather intertwined.
* Add a "state" property to ShellApp which reflects whether it's
stopped, starting, or started. This will allow us to later clean
up all the callers that are using ".get_windows().length > 0" as
a proxy for this property
* Replace shell_app_launch with shell_app_activate and shell_app_open_new_window
A lot of code was calling .launch, but it's signficantly clearer
if we call this ".open_new_window()", and later if we gain the ability
to call into an application's menu, we can implement this correctly rather
than trying to update all .launch callers.
* Because ShellApp now has a "starting" state, rebase panel.js on top of
this so that when we get a startup-notification sequence for an app
and transition it to starting, it becomes the focus app, and panel.js
cleanly just tracks the focus app, rather than bouncing between SN
sequences. This removes display of non-app startup sequences, which
I consider an acceptable action in light of the committed changes
to startup-notification and GTK+.
https://bugzilla.gnome.org/show_bug.cgi?id=614755
2010-04-03 14:07:44 -04:00
|
|
|
if (focusedApp == this._focusedApp)
|
|
|
|
return;
|
2009-08-11 11:32:58 -04:00
|
|
|
|
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-02-24 11:29:44 -05:00
|
|
|
|
|
|
|
this._focusedApp = focusedApp;
|
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
if (this._focusedApp != null) {
|
Major ShellApp API cleanup, startup notification, window focus handling
This patch combines several high level changes which are conceptually
independent but in practice rather intertwined.
* Add a "state" property to ShellApp which reflects whether it's
stopped, starting, or started. This will allow us to later clean
up all the callers that are using ".get_windows().length > 0" as
a proxy for this property
* Replace shell_app_launch with shell_app_activate and shell_app_open_new_window
A lot of code was calling .launch, but it's signficantly clearer
if we call this ".open_new_window()", and later if we gain the ability
to call into an application's menu, we can implement this correctly rather
than trying to update all .launch callers.
* Because ShellApp now has a "starting" state, rebase panel.js on top of
this so that when we get a startup-notification sequence for an app
and transition it to starting, it becomes the focus app, and panel.js
cleanly just tracks the focus app, rather than bouncing between SN
sequences. This removes display of non-app startup sequences, which
I consider an acceptable action in light of the committed changes
to startup-notification and GTK+.
https://bugzilla.gnome.org/show_bug.cgi?id=614755
2010-04-03 14:07:44 -04:00
|
|
|
let icon = this._focusedApp.get_faded_icon(AppDisplay.APPICON_SIZE);
|
2010-05-12 17:07:41 -04:00
|
|
|
let appName = this._focusedApp.get_name();
|
|
|
|
this._label.setText(appName);
|
2010-06-08 11:11:15 -04:00
|
|
|
this._quitMenu.label.set_text(_("Quit %s").format(appName));
|
2010-03-12 15:57:01 -05:00
|
|
|
this._iconBox.set_child(icon);
|
2009-08-11 11:32:58 -04:00
|
|
|
this._iconBox.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2010-05-08 18:25:49 -04:00
|
|
|
function ClockButton() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
ClockButton.prototype = {
|
|
|
|
__proto__: PanelMenuButton.prototype,
|
|
|
|
|
|
|
|
_init: function() {
|
|
|
|
PanelMenuButton.prototype._init.call(this, St.Align.START);
|
2010-06-08 11:11:15 -04:00
|
|
|
this.menu.addAction(_("Preferences"), Lang.bind(this, this._onPrefs));
|
2010-05-08 18:25:49 -04:00
|
|
|
|
|
|
|
this._clock = new St.Label();
|
|
|
|
this.actor.set_child(this._clock);
|
|
|
|
|
|
|
|
this._calendarState = this.State.CLOSED;
|
|
|
|
this._calendarPopup = null;
|
|
|
|
|
|
|
|
let gconf = Shell.GConf.get_default();
|
|
|
|
gconf.connect('changed', Lang.bind(this, this._updateClock));
|
|
|
|
|
|
|
|
// Start the clock
|
|
|
|
this._updateClock();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onButtonPress: function(actor, event) {
|
|
|
|
let button = event.get_button();
|
|
|
|
if (button == 3 && this._calendarState != this.State.OPEN)
|
|
|
|
this.toggle();
|
|
|
|
else
|
|
|
|
this._toggleCalendar();
|
|
|
|
},
|
|
|
|
|
|
|
|
closeCalendar: function() {
|
|
|
|
if (this._calendarState == this.State.CLOSED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this._calendarState = this.State.CLOSED;
|
|
|
|
this._calendarPopup.hide();
|
|
|
|
|
|
|
|
// closing the calendar should toggle off the menubar as well
|
|
|
|
this.emit('open-state-changed', false);
|
|
|
|
this.actor.remove_style_pseudo_class('pressed');
|
|
|
|
},
|
|
|
|
|
|
|
|
openCalendar: function() {
|
|
|
|
this._calendarState = this.State.OPEN;
|
|
|
|
this._calendarPopup.show();
|
|
|
|
|
|
|
|
this.actor.add_style_pseudo_class('pressed');
|
|
|
|
},
|
|
|
|
|
|
|
|
close: function() {
|
|
|
|
if (this._calendarState == this.State.OPEN)
|
|
|
|
return;
|
|
|
|
|
|
|
|
PanelMenuButton.prototype.close.call(this);
|
|
|
|
},
|
|
|
|
|
|
|
|
open: function() {
|
|
|
|
if (this._calendarState == this.State.OPEN) {
|
|
|
|
// trick the menubar into assuming an open menu so it'll
|
|
|
|
// pass button events on to us
|
|
|
|
this.emit('open-state-changed', true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PanelMenuButton.prototype.open.call(this);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onPrefs: function() {
|
|
|
|
let args = ['gnome-shell-clock-preferences'];
|
|
|
|
let p = new Shell.Process({ args: args });
|
|
|
|
|
|
|
|
p.run();
|
|
|
|
},
|
|
|
|
|
|
|
|
_toggleCalendar: function() {
|
|
|
|
if (this._state == this.State.OPEN) {
|
|
|
|
this.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._calendarPopup == null) {
|
|
|
|
this._calendarPopup = new CalendarPopup();
|
|
|
|
this._calendarPopup.actor.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._calendarState == this.State.CLOSED) {
|
|
|
|
this.openCalendar();
|
|
|
|
} else {
|
|
|
|
this.closeCalendar();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateClock: function() {
|
|
|
|
let gconf = Shell.GConf.get_default();
|
|
|
|
let format = gconf.get_string(CLOCK_FORMAT_KEY);
|
|
|
|
let showDate = gconf.get_boolean(CLOCK_SHOW_DATE_KEY);
|
|
|
|
let showSeconds = gconf.get_boolean(CLOCK_SHOW_SECONDS_KEY);
|
|
|
|
|
|
|
|
let clockFormat;
|
|
|
|
switch (format) {
|
|
|
|
case 'unix':
|
|
|
|
// force updates every second
|
|
|
|
showSeconds = true;
|
|
|
|
clockFormat = '%s';
|
|
|
|
break;
|
|
|
|
case 'custom':
|
|
|
|
// force updates every second
|
|
|
|
showSeconds = true;
|
|
|
|
clockFormat = gconf.get_string(CLOCK_CUSTOM_FORMAT_KEY);
|
|
|
|
break;
|
|
|
|
case '24-hour':
|
|
|
|
if (showDate)
|
|
|
|
/* Translators: This is the time format with date used
|
|
|
|
in 24-hour mode. */
|
|
|
|
clockFormat = showSeconds ? _("%a %b %e, %R:%S")
|
|
|
|
: _("%a %b %e, %R");
|
|
|
|
else
|
|
|
|
/* Translators: This is the time format without date used
|
|
|
|
in 24-hour mode. */
|
|
|
|
clockFormat = showSeconds ? _("%a %R:%S")
|
|
|
|
: _("%a %R");
|
|
|
|
break;
|
|
|
|
case '12-hour':
|
|
|
|
default:
|
|
|
|
if (showDate)
|
|
|
|
/* Translators: This is a time format with date used
|
|
|
|
for AM/PM. */
|
|
|
|
clockFormat = showSeconds ? _("%a %b %e, %l:%M:%S %p")
|
|
|
|
: _("%a %b %e, %l:%M %p");
|
|
|
|
else
|
|
|
|
/* Translators: This is a time format without date used
|
|
|
|
for AM/PM. */
|
|
|
|
clockFormat = showSeconds ? _("%a %l:%M:%S %p")
|
|
|
|
: _("%a %l:%M %p");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
let displayDate = new Date();
|
|
|
|
let msecRemaining;
|
|
|
|
if (showSeconds) {
|
|
|
|
msecRemaining = 1000 - displayDate.getMilliseconds();
|
|
|
|
if (msecRemaining < 50) {
|
|
|
|
displayDate.setSeconds(displayDate.getSeconds() + 1);
|
|
|
|
msecRemaining += 1000;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
msecRemaining = 60000 - (1000 * displayDate.getSeconds() +
|
|
|
|
displayDate.getMilliseconds());
|
|
|
|
if (msecRemaining < 500) {
|
|
|
|
displayDate.setMinutes(displayDate.getMinutes() + 1);
|
|
|
|
msecRemaining += 60000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this._clock.set_text(displayDate.toLocaleFormat(clockFormat));
|
|
|
|
Mainloop.timeout_add(msecRemaining, Lang.bind(this, this._updateClock));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-10-31 14:09:20 -04:00
|
|
|
function Panel() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
Panel.prototype = {
|
2010-05-05 10:03:48 -04:00
|
|
|
__proto__: PanelMenuBar.prototype,
|
2009-08-09 19:48:54 -04:00
|
|
|
|
2010-05-05 10:03:48 -04:00
|
|
|
_init : function() {
|
|
|
|
PanelMenuBar.prototype._init.call(this);
|
|
|
|
this.actor.name = 'panel';
|
2009-11-10 12:13:58 -05:00
|
|
|
this.actor._delegate = 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
|
|
|
|
|
|
|
/* 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-04-27 09:46:19 -04:00
|
|
|
childBox.x1 = 0;
|
|
|
|
childBox.y1 = 0;
|
2010-05-25 10:21:22 -04:00
|
|
|
childBox.x2 = childBox.x1 + Math.floor(sideWidth);
|
2010-04-27 09:46:19 -04:00
|
|
|
childBox.y2 = allocHeight;
|
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-05-25 10:21:22 -04:00
|
|
|
childBox.x1 = allocWidth - Math.min(Math.floor(sideWidth), rightNaturalWidth);
|
2010-04-27 09:46:19 -04:00
|
|
|
childBox.y1 = 0;
|
|
|
|
childBox.x2 = allocWidth;
|
|
|
|
childBox.y2 = allocHeight;
|
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") });
|
2009-11-17 17:46:20 -05:00
|
|
|
this.button = new St.Clickable({ name: 'panelActivities',
|
|
|
|
style_class: 'panel-button',
|
|
|
|
reactive: true });
|
2009-11-16 14:16:22 -05:00
|
|
|
this.button.set_child(label);
|
2009-08-11 11:16:25 -04:00
|
|
|
|
2009-11-17 17:46:20 -05:00
|
|
|
this._leftBox.add(this.button);
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2009-08-18 14:59:53 -04:00
|
|
|
// 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._hotCornerEntered = false;
|
|
|
|
|
2009-11-17 17:46:20 -05:00
|
|
|
this._hotCornerEnvirons = new Clutter.Rectangle({ x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: 3,
|
2009-08-18 14:59:53 -04:00
|
|
|
height: 3,
|
|
|
|
opacity: 0,
|
|
|
|
reactive: true });
|
|
|
|
|
2009-11-17 17:46:20 -05:00
|
|
|
this._hotCorner = new Clutter.Rectangle({ x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: 1,
|
2009-08-21 15:56:07 -04:00
|
|
|
height: 1,
|
|
|
|
opacity: 0,
|
|
|
|
reactive: true });
|
2009-08-07 16:45:35 -04:00
|
|
|
|
2009-10-06 16:55:29 -04:00
|
|
|
this._hotCornerActivationTime = 0;
|
|
|
|
|
2009-08-18 14:59:53 -04:00
|
|
|
this._hotCornerEnvirons.connect('leave-event',
|
|
|
|
Lang.bind(this, this._onHotCornerEnvironsLeft));
|
|
|
|
// Clicking on the hot corner environs should result in the same bahavior
|
|
|
|
// as clicking on the hot corner.
|
|
|
|
this._hotCornerEnvirons.connect('button-release-event',
|
|
|
|
Lang.bind(this, this._onHotCornerClicked));
|
|
|
|
|
2009-08-07 16:45:35 -04:00
|
|
|
// 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
|
2009-08-07 18:22:05 -04:00
|
|
|
// undo the effect of triggering the hot corner once in the hot corner.
|
2009-08-21 15:56:07 -04:00
|
|
|
this._hotCorner.connect('enter-event',
|
|
|
|
Lang.bind(this, this._onHotCornerEntered));
|
|
|
|
this._hotCorner.connect('button-release-event',
|
|
|
|
Lang.bind(this, this._onHotCornerClicked));
|
|
|
|
this._hotCorner.connect('leave-event',
|
|
|
|
Lang.bind(this, this._onHotCornerLeft));
|
2009-08-07 16:45:35 -04:00
|
|
|
|
2009-11-17 17:46:20 -05:00
|
|
|
this._leftBox.add(this._hotCornerEnvirons);
|
|
|
|
this._leftBox.add(this._hotCorner);
|
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);
|
|
|
|
|
|
|
|
this._addMenu(appMenuButton);
|
2009-08-11 11:32:58 -04:00
|
|
|
|
2009-08-11 11:16:25 -04:00
|
|
|
/* center */
|
2009-02-04 13:45:38 -05:00
|
|
|
|
2010-05-08 18:25:49 -04:00
|
|
|
this._clockButton = new ClockButton();
|
|
|
|
this._centerBox.add(this._clockButton.actor, { y_fill: true });
|
2009-09-30 10:02:08 -04:00
|
|
|
|
2010-05-08 18:25:49 -04:00
|
|
|
this._addMenu(this._clockButton);
|
2009-08-11 11:16:25 -04:00
|
|
|
|
|
|
|
/* right */
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2009-03-24 14:25:07 -04:00
|
|
|
// The tray icons live in trayBox within trayContainer.
|
|
|
|
// The trayBox is hidden when there are no tray icons.
|
2010-03-31 16:40:32 -04:00
|
|
|
let trayContainer = new St.Bin({ y_align: St.Align.MIDDLE });
|
2009-11-17 17:46:20 -05:00
|
|
|
this._rightBox.add(trayContainer);
|
2010-03-31 16:40:32 -04:00
|
|
|
let trayBox = new St.BoxLayout({ name: 'statusTray' });
|
2009-08-01 22:11:37 -04:00
|
|
|
this._trayBox = trayBox;
|
2009-05-13 11:54:09 -04:00
|
|
|
|
2009-03-24 14:25:07 -04:00
|
|
|
trayBox.hide();
|
2010-03-31 16:40:32 -04:00
|
|
|
trayContainer.add_actor(trayBox);
|
2009-03-24 14:25:07 -04:00
|
|
|
|
2010-03-31 16:40:32 -04:00
|
|
|
this._traymanager = new Shell.TrayManager();
|
2009-10-15 09:44:09 -04:00
|
|
|
this._traymanager.connect('tray-icon-added', Lang.bind(this, this._onTrayIconAdded));
|
2008-12-01 14:51:43 -05:00
|
|
|
this._traymanager.connect('tray-icon-removed',
|
2009-08-01 22:11:37 -04:00
|
|
|
Lang.bind(this, function(o, icon) {
|
2009-03-24 14:25:07 -04:00
|
|
|
trayBox.remove_actor(icon);
|
|
|
|
|
|
|
|
if (trayBox.get_children().length == 0)
|
|
|
|
trayBox.hide();
|
2009-08-01 22:11:37 -04:00
|
|
|
this._recomputeTraySize();
|
|
|
|
}));
|
2008-12-01 14:51:43 -05:00
|
|
|
this._traymanager.manage_stage(global.stage);
|
|
|
|
|
2010-05-10 09:46:54 -04:00
|
|
|
// We need to do this here to avoid a circular import with
|
|
|
|
// prototype dependencies.
|
|
|
|
let StatusMenu = imports.ui.statusMenu;
|
|
|
|
this._statusmenu = new StatusMenu.StatusMenuButton();
|
|
|
|
this._addMenu(this._statusmenu);
|
|
|
|
this._rightBox.add(this._statusmenu.actor);
|
2009-08-11 11:16:25 -04: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.
|
2009-11-17 17:46:20 -05:00
|
|
|
this.button.connect('clicked', Lang.bind(this, function(b, event) {
|
2009-11-16 14:16:22 -05:00
|
|
|
if (!Main.overview.animationInProgress) {
|
2009-10-06 16:55:29 -04:00
|
|
|
this._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() {
|
2009-11-16 14:16:22 -05:00
|
|
|
this.button.active = true;
|
2009-08-29 07:23:28 -04:00
|
|
|
}));
|
|
|
|
Main.overview.connect('hiding', Lang.bind(this, function() {
|
2009-11-16 14:16:22 -05:00
|
|
|
this.button.active = 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 });
|
2008-12-01 14:51:43 -05:00
|
|
|
},
|
|
|
|
|
2010-01-19 12:59:29 -05:00
|
|
|
hideCalendar: function() {
|
2010-05-08 18:25:49 -04:00
|
|
|
this._clockButton.closeCalendar();
|
2010-01-19 12:59:29 -05: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
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2009-10-15 09:44:09 -04:00
|
|
|
_onTrayIconAdded: function(o, icon, wmClass) {
|
2010-03-31 16:40:32 -04:00
|
|
|
icon.height = PANEL_ICON_SIZE;
|
|
|
|
|
2009-10-15 09:44:09 -04:00
|
|
|
let role = STANDARD_TRAY_ICON_IMPLEMENTATIONS[wmClass];
|
|
|
|
if (!role) {
|
|
|
|
// Unknown icons go first in undefined order
|
2010-03-31 16:40:32 -04:00
|
|
|
this._trayBox.insert_actor(icon, 0);
|
2009-10-15 09:44:09 -04:00
|
|
|
} else {
|
|
|
|
icon._role = role;
|
|
|
|
// 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) {
|
2010-03-31 16:40:32 -04:00
|
|
|
this._trayBox.insert_actor(icon, i + 1);
|
2009-10-15 09:44:09 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == -1) {
|
|
|
|
// If we didn't find a position, we must be first
|
2010-03-31 16:40:32 -04:00
|
|
|
this._trayBox.insert_actor(icon, 0);
|
2009-10-15 09:44:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the trayBox is shown.
|
|
|
|
this._trayBox.show();
|
|
|
|
this._recomputeTraySize();
|
|
|
|
},
|
|
|
|
|
2009-08-01 22:11:37 -04:00
|
|
|
// By default, tray icons have a spacing of TRAY_SPACING. However this
|
|
|
|
// starts to fail if we have too many as can sadly happen; just jump down
|
|
|
|
// to a spacing of 8 if we're over 6.
|
|
|
|
// http://bugzilla.gnome.org/show_bug.cgi?id=590495
|
|
|
|
_recomputeTraySize: function () {
|
|
|
|
if (this._trayBox.get_children().length > 6)
|
2010-03-31 16:40:32 -04:00
|
|
|
this._trayBox.add_style_pseudo_class('compact');
|
2009-08-01 22:11:37 -04:00
|
|
|
else
|
2010-03-31 16:40:32 -04:00
|
|
|
this._trayBox.remove_style_pseudo_class('compact');
|
2009-08-01 22:11:37 -04:00
|
|
|
},
|
|
|
|
|
2010-01-13 21:48:12 -05:00
|
|
|
_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._hotCorner.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(); } });
|
2010-05-06 17:18:10 -04:00
|
|
|
Main.uiGroup.add_actor(ripple);
|
2010-01-13 21:48:12 -05:00
|
|
|
},
|
|
|
|
|
2009-08-18 14:59:53 -04:00
|
|
|
_onHotCornerEntered : function() {
|
2010-05-05 10:03:48 -04:00
|
|
|
if (this.isMenuOpen)
|
|
|
|
return false;
|
2009-08-18 14:59:53 -04:00
|
|
|
if (!this._hotCornerEntered) {
|
|
|
|
this._hotCornerEntered = true;
|
|
|
|
if (!Main.overview.animationInProgress) {
|
2009-10-06 16:55:29 -04:00
|
|
|
this._hotCornerActivationTime = Date.now() / 1000;
|
2010-01-13 21:48:12 -05:00
|
|
|
|
|
|
|
// 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);
|
2009-08-18 14:59:53 -04:00
|
|
|
Main.overview.toggle();
|
|
|
|
}
|
2009-08-07 18:22:05 -04:00
|
|
|
}
|
2009-08-07 16:45:35 -04:00
|
|
|
return false;
|
2009-08-18 14:59:53 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_onHotCornerClicked : function() {
|
2010-05-05 10:03:48 -04:00
|
|
|
if (this.isMenuOpen)
|
|
|
|
return false;
|
2009-08-18 14:59:53 -04:00
|
|
|
if (!Main.overview.animationInProgress) {
|
2009-10-06 16:55:29 -04:00
|
|
|
this._maybeToggleOverviewOnClick();
|
2009-08-18 14:59:53 -04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onHotCornerLeft : function(actor, event) {
|
2009-09-08 16:58:57 -04:00
|
|
|
if (event.get_related() != this._hotCornerEnvirons) {
|
2009-08-18 14:59:53 -04:00
|
|
|
this._hotCornerEntered = false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onHotCornerEnvironsLeft : function(actor, event) {
|
2009-09-08 16:58:57 -04:00
|
|
|
if (event.get_related() != this._hotCorner) {
|
2009-08-18 14:59:53 -04:00
|
|
|
this._hotCornerEntered = false;
|
|
|
|
}
|
|
|
|
return false;
|
2009-10-06 16:55:29 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
// 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._hotCornerActivationTime == 0 || Date.now() / 1000 - this._hotCornerActivationTime > HOT_CORNER_ACTIVATION_TIMEOUT)
|
|
|
|
Main.overview.toggle();
|
|
|
|
this._hotCornerActivationTime = 0;
|
2009-08-18 14:59:53 -04:00
|
|
|
}
|
2008-10-31 14:09:20 -04:00
|
|
|
};
|
2009-09-30 10:02:08 -04:00
|
|
|
|
|
|
|
function CalendarPopup() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
CalendarPopup.prototype = {
|
|
|
|
_init: function() {
|
|
|
|
let panelActor = Main.panel.actor;
|
|
|
|
|
2010-05-08 12:16:54 -04:00
|
|
|
this.actor = new St.Bin({ name: 'calendarPopup' });
|
2009-09-30 10:02:08 -04:00
|
|
|
|
|
|
|
this.calendar = new Calendar.Calendar();
|
2010-05-08 12:16:54 -04:00
|
|
|
this.actor.set_child(this.calendar.actor);
|
2009-09-30 10:02:08 -04:00
|
|
|
|
2009-11-11 13:11:34 -05:00
|
|
|
Main.chrome.addActor(this.actor, { visibleInOverview: true,
|
|
|
|
affectsStruts: false });
|
2009-09-30 10:02:08 -04:00
|
|
|
this.actor.y = (panelActor.y + panelActor.height - this.actor.height);
|
2010-05-27 03:31:46 -04:00
|
|
|
this.calendar.actor.connect('notify::width', Lang.bind(this, this._centerPopup));
|
2009-09-30 10:02:08 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
show: function() {
|
|
|
|
let panelActor = Main.panel.actor;
|
|
|
|
|
|
|
|
// Reset the calendar to today's date
|
|
|
|
this.calendar.setDate(new Date());
|
|
|
|
|
2010-05-27 03:31:46 -04:00
|
|
|
this._centerPopup();
|
2009-09-30 10:02:08 -04:00
|
|
|
this.actor.lower(panelActor);
|
|
|
|
this.actor.show();
|
|
|
|
Tweener.addTween(this.actor,
|
|
|
|
{ y: panelActor.y + panelActor.height,
|
|
|
|
time: 0.2,
|
2010-05-13 15:46:04 -04:00
|
|
|
transition: 'easeOutQuad'
|
2009-09-30 10:02:08 -04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
hide: function() {
|
|
|
|
let panelActor = Main.panel.actor;
|
|
|
|
|
|
|
|
Tweener.addTween(this.actor,
|
|
|
|
{ y: panelActor.y + panelActor.height - this.actor.height,
|
|
|
|
time: 0.2,
|
2010-05-13 15:46:04 -04:00
|
|
|
transition: 'easeOutQuad',
|
2009-09-30 10:02:08 -04:00
|
|
|
onComplete: function() { this.actor.hide(); },
|
|
|
|
onCompleteScope: this
|
|
|
|
});
|
2010-05-27 03:31:46 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_centerPopup: function() {
|
|
|
|
let panelActor = Main.panel.actor;
|
|
|
|
this.actor.x = Math.round(panelActor.x + (panelActor.width - this.actor.width) / 2);
|
2009-09-30 10:02:08 -04:00
|
|
|
}
|
|
|
|
};
|