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
|
|
|
|
2009-02-02 18:02:16 -05:00
|
|
|
const Big = imports.gi.Big;
|
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;
|
|
|
|
const Shell = imports.gi.Shell;
|
2009-07-02 00:52:21 -04:00
|
|
|
const Tweener = imports.ui.tweener;
|
2008-10-31 14:09:20 -04:00
|
|
|
|
2008-11-19 18:04:53 -05:00
|
|
|
const Button = imports.ui.button;
|
2008-11-09 13:01:59 -05:00
|
|
|
const Main = imports.ui.main;
|
2008-10-31 19:09:46 -04:00
|
|
|
|
2009-07-13 12:49:06 -04:00
|
|
|
const PANEL_HEIGHT = 26;
|
2009-06-03 22:24:59 -04:00
|
|
|
const TRAY_HEIGHT = PANEL_HEIGHT - 1;
|
2009-07-13 12:49:06 -04:00
|
|
|
|
|
|
|
const PANEL_BACKGROUND_COLOR = new Clutter.Color();
|
|
|
|
PANEL_BACKGROUND_COLOR.from_pixel(0x000000ff);
|
|
|
|
const PANEL_FOREGROUND_COLOR = new Clutter.Color();
|
|
|
|
PANEL_FOREGROUND_COLOR.from_pixel(0xffffffff);
|
|
|
|
|
2009-03-24 14:25:07 -04:00
|
|
|
const TRANSPARENT_COLOR = new Clutter.Color();
|
|
|
|
TRANSPARENT_COLOR.from_pixel(0x00000000);
|
|
|
|
|
2009-07-13 12:49:06 -04:00
|
|
|
// Don't make the mouse hover effect visible to the user for a menu feel.
|
2009-02-04 13:45:38 -05:00
|
|
|
const PANEL_BUTTON_COLOR = new Clutter.Color();
|
2009-07-13 12:49:06 -04:00
|
|
|
PANEL_BUTTON_COLOR.from_pixel(0x00000000);
|
|
|
|
|
|
|
|
// Lighten pressed buttons; darkening has no effect on a black background.
|
2008-11-14 19:44:11 -05:00
|
|
|
const PRESSED_BUTTON_BACKGROUND_COLOR = new Clutter.Color();
|
2009-07-13 12:49:06 -04:00
|
|
|
PRESSED_BUTTON_BACKGROUND_COLOR.from_pixel(0x324c6ffa);
|
|
|
|
|
|
|
|
const DEFAULT_FONT = 'Sans 16px';
|
2009-03-24 14:25:07 -04:00
|
|
|
|
2009-06-03 22:24:59 -04:00
|
|
|
const TRAY_PADDING = 0;
|
2009-08-01 22:11:37 -04:00
|
|
|
// See comments around _recomputeTraySize
|
2009-07-13 12:49:06 -04:00
|
|
|
const TRAY_SPACING = 14;
|
2009-08-01 22:11:37 -04:00
|
|
|
const TRAY_SPACING_MIN = 8;
|
2009-05-13 11:54:09 -04:00
|
|
|
|
|
|
|
// Used for the tray icon container with gtk pre-2.16, which doesn't
|
|
|
|
// fully support tray icon transparency
|
2009-03-24 14:25:07 -04:00
|
|
|
const TRAY_BACKGROUND_COLOR = new Clutter.Color();
|
|
|
|
TRAY_BACKGROUND_COLOR.from_pixel(0xefefefff);
|
|
|
|
const TRAY_BORDER_COLOR = new Clutter.Color();
|
|
|
|
TRAY_BORDER_COLOR.from_pixel(0x00000033);
|
|
|
|
const TRAY_CORNER_RADIUS = 5;
|
2009-06-03 22:24:59 -04:00
|
|
|
const TRAY_BORDER_WIDTH = 0;
|
2008-10-31 14:09:20 -04:00
|
|
|
|
|
|
|
function Panel() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
Panel.prototype = {
|
2008-12-01 14:51:43 -05:00
|
|
|
_init : function() {
|
|
|
|
let global = Shell.Global.get();
|
|
|
|
|
2009-03-24 14:25:07 -04:00
|
|
|
// Put the background under the panel within a group.
|
2009-03-26 18:01:07 -04:00
|
|
|
this.actor = new Clutter.Group();
|
2009-03-24 14:25:07 -04:00
|
|
|
|
2009-07-13 12:49:06 -04:00
|
|
|
// backBox contains the panel background and the clock.
|
|
|
|
let backBox = new Big.Box({ width: global.screen_width,
|
|
|
|
height: PANEL_HEIGHT,
|
|
|
|
backgroundColor: PANEL_BACKGROUND_COLOR,
|
|
|
|
x_align: Big.BoxAlignment.CENTER });
|
2009-03-26 18:01:07 -04:00
|
|
|
this.actor.add_actor(backBox);
|
2009-03-24 14:25:07 -04:00
|
|
|
|
|
|
|
let box = new Big.Box({ x: 0,
|
|
|
|
y: 0,
|
|
|
|
height: PANEL_HEIGHT,
|
|
|
|
width: global.screen_width,
|
|
|
|
orientation: Big.BoxOrientation.HORIZONTAL,
|
|
|
|
spacing: 4 });
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2009-07-13 12:49:06 -04:00
|
|
|
this.button = new Button.Button("Activities", PANEL_BUTTON_COLOR, PRESSED_BUTTON_BACKGROUND_COLOR, PANEL_FOREGROUND_COLOR, true, null, PANEL_HEIGHT, DEFAULT_FONT);
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2009-03-24 14:25:07 -04:00
|
|
|
box.append(this.button.button, Big.BoxPackFlags.NONE);
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2009-02-04 13:45:38 -05:00
|
|
|
let statusbox = new Big.Box();
|
2009-05-07 09:54:21 -04:00
|
|
|
let statusmenu = this._statusmenu = new Shell.StatusMenu();
|
2009-07-13 12:49:06 -04:00
|
|
|
statusmenu.get_icon().hide();
|
|
|
|
statusmenu.get_name().fontName = DEFAULT_FONT;
|
|
|
|
statusmenu.get_name().color = PANEL_FOREGROUND_COLOR;
|
2009-02-04 13:45:38 -05:00
|
|
|
statusbox.append(this._statusmenu, Big.BoxPackFlags.NONE);
|
2009-07-13 12:49:06 -04:00
|
|
|
let statusbutton = new Button.Button(statusbox,
|
|
|
|
PANEL_BUTTON_COLOR,
|
|
|
|
PRESSED_BUTTON_BACKGROUND_COLOR,
|
|
|
|
PANEL_FOREGROUND_COLOR,
|
2009-02-04 13:45:38 -05:00
|
|
|
true, null, PANEL_HEIGHT);
|
|
|
|
statusbutton.button.connect('button-press-event', function (b, e) {
|
2009-05-07 09:54:21 -04:00
|
|
|
statusmenu.toggle(e);
|
2009-02-04 13:45:38 -05:00
|
|
|
return false;
|
|
|
|
});
|
2009-03-24 14:25:07 -04:00
|
|
|
box.append(statusbutton.button, Big.BoxPackFlags.END);
|
2009-02-04 13:45:38 -05:00
|
|
|
// We get a deactivated event when the popup disappears
|
|
|
|
this._statusmenu.connect('deactivated', function (sm) {
|
|
|
|
statusbutton.release();
|
|
|
|
});
|
|
|
|
|
2009-07-13 12:49:06 -04:00
|
|
|
this._clock = new Clutter.Text({ font_name: DEFAULT_FONT,
|
|
|
|
color: PANEL_FOREGROUND_COLOR,
|
2009-02-23 14:42:00 -05:00
|
|
|
text: "" });
|
2009-07-13 08:44:54 -04:00
|
|
|
let clockbox = new Big.Box({ y_align: Big.BoxAlignment.CENTER,
|
2009-03-24 14:25:07 -04:00
|
|
|
padding_left: 4,
|
2009-01-27 15:29:37 -05:00
|
|
|
padding_right: 4 });
|
|
|
|
clockbox.append(this._clock, Big.BoxPackFlags.NONE);
|
2009-07-13 12:49:06 -04:00
|
|
|
backBox.append(clockbox, Big.BoxPackFlags.EXPAND);
|
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.
|
|
|
|
let trayContainer = new Big.Box({ orientation: Big.BoxOrientation.VERTICAL,
|
2009-06-03 22:24:59 -04:00
|
|
|
y_align: Big.BoxAlignment.START });
|
2009-03-24 14:25:07 -04:00
|
|
|
box.append(trayContainer, Big.BoxPackFlags.END);
|
|
|
|
let trayBox = new Big.Box({ orientation: Big.BoxOrientation.HORIZONTAL,
|
|
|
|
height: TRAY_HEIGHT,
|
|
|
|
padding: TRAY_PADDING,
|
|
|
|
spacing: TRAY_SPACING });
|
2009-08-01 22:11:37 -04:00
|
|
|
this._trayBox = trayBox;
|
2009-05-13 11:54:09 -04:00
|
|
|
|
|
|
|
// gtk+ < 2.16 doesn't have fully-working icon transparency,
|
|
|
|
// so we want trayBox to be opaque in that case (the icons
|
|
|
|
// will at least pick up its background color).
|
|
|
|
if (Gtk.MAJOR_VERSION == 2 && Gtk.MINOR_VERSION < 16) {
|
|
|
|
trayBox.background_color = TRAY_BACKGROUND_COLOR;
|
|
|
|
trayBox.corner_radius = TRAY_CORNER_RADIUS;
|
|
|
|
trayBox.border = TRAY_BORDER_WIDTH;
|
|
|
|
trayBox.border_color = TRAY_BORDER_COLOR;
|
|
|
|
}
|
|
|
|
|
2009-03-24 14:25:07 -04:00
|
|
|
trayBox.hide();
|
|
|
|
trayContainer.append(trayBox, Big.BoxPackFlags.NONE);
|
|
|
|
|
|
|
|
this._traymanager = new Shell.TrayManager({ bg_color: TRAY_BACKGROUND_COLOR });
|
2008-12-01 14:51:43 -05:00
|
|
|
this._traymanager.connect('tray-icon-added',
|
2009-08-01 22:11:37 -04:00
|
|
|
Lang.bind(this, function(o, icon) {
|
2009-03-24 14:25:07 -04:00
|
|
|
trayBox.append(icon, Big.BoxPackFlags.NONE);
|
|
|
|
|
|
|
|
// Make sure the trayBox is shown.
|
|
|
|
trayBox.show();
|
2009-08-01 22:11:37 -04:00
|
|
|
this._recomputeTraySize();
|
|
|
|
}));
|
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);
|
|
|
|
|
|
|
|
// TODO: decide what to do with the rest of the panel in the overlay mode (make it fade-out, become non-reactive, etc.)
|
|
|
|
// We get into the overlay mode on button-press-event as opposed to button-release-event because eventually we'll probably
|
|
|
|
// have the overlay act like a menu that allows the user to release the mouse on the activity the user wants
|
|
|
|
// to switch to.
|
|
|
|
this.button.button.connect('button-press-event',
|
2009-05-07 09:47:48 -04:00
|
|
|
Lang.bind(Main.overlay, Main.overlay.toggle));
|
2009-05-08 16:27:14 -04:00
|
|
|
// In addition to pressing the button, the overlay 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 overlay is entered
|
|
|
|
// and to be released when it is exited regardless of how it was triggered.
|
|
|
|
Main.overlay.connect('showing', Lang.bind(this.button, this.button.pressIn));
|
2009-05-07 09:47:48 -04:00
|
|
|
Main.overlay.connect('hiding', Lang.bind(this.button, this.button.release));
|
2008-11-28 15:12:20 -05:00
|
|
|
|
2009-03-26 18:01:07 -04:00
|
|
|
this.actor.add_actor(box);
|
2009-03-24 14:25:07 -04:00
|
|
|
|
2009-05-06 14:36:50 -04:00
|
|
|
Main.chrome.addActor(this.actor, box);
|
|
|
|
Main.chrome.setVisibleInOverlay(this.actor, true);
|
2008-12-01 14:51:43 -05:00
|
|
|
|
2008-12-01 14:59:59 -05:00
|
|
|
// Start the clock
|
2008-12-01 14:51:43 -05:00
|
|
|
this._updateClock();
|
|
|
|
},
|
|
|
|
|
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,
|
|
|
|
transition: "easeOutQuad"
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
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)
|
|
|
|
this._trayBox.spacing = TRAY_SPACING_MIN;
|
|
|
|
else
|
|
|
|
this._trayBox.spacing = TRAY_SPACING;
|
|
|
|
},
|
|
|
|
|
2008-12-01 14:51:43 -05:00
|
|
|
_updateClock: function() {
|
2009-05-02 18:33:13 -04:00
|
|
|
let displayDate = new Date();
|
|
|
|
let msecRemaining = 60000 - (1000 * displayDate.getSeconds() +
|
|
|
|
displayDate.getMilliseconds());
|
|
|
|
if (msecRemaining < 500) {
|
|
|
|
displayDate.setMinutes(displayDate.getMinutes() + 1);
|
|
|
|
msecRemaining += 60000;
|
2008-12-01 14:59:59 -05:00
|
|
|
}
|
2009-07-13 12:49:06 -04:00
|
|
|
this._clock.set_text(displayDate.toLocaleFormat("%a %l:%M %p"));
|
2009-05-07 09:54:21 -04:00
|
|
|
Mainloop.timeout_add(msecRemaining, Lang.bind(this, this._updateClock));
|
|
|
|
return false;
|
2008-12-01 14:51:43 -05:00
|
|
|
}
|
2008-10-31 14:09:20 -04:00
|
|
|
};
|