2008-10-31 14:09:20 -04:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; -*- */
|
|
|
|
|
|
|
|
const Mainloop = imports.mainloop;
|
|
|
|
|
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
|
|
|
2008-10-31 19:09:46 -04:00
|
|
|
// The mutual import here causes things to break in weird ways,
|
|
|
|
// (http://bugzilla.gnome.org/show_bug.cgi?id=558741)
|
|
|
|
// So we do a local import below
|
|
|
|
// const Main = imports.ui.main;
|
|
|
|
|
2008-10-31 14:09:20 -04:00
|
|
|
const PANEL_HEIGHT = 32;
|
|
|
|
const PANEL_BACKGROUND_COLOR = new Clutter.Color();
|
|
|
|
PANEL_BACKGROUND_COLOR.from_pixel(0xeeddccff);
|
|
|
|
|
|
|
|
function Panel() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
|
|
|
|
Panel.prototype = {
|
|
|
|
_init : function() {
|
|
|
|
let global = Shell.global_get();
|
|
|
|
|
|
|
|
this._group = new Clutter.Group();
|
|
|
|
|
|
|
|
let background = new Clutter.Rectangle({ color: PANEL_BACKGROUND_COLOR,
|
|
|
|
reactive: true,
|
2008-11-01 23:00:45 -04:00
|
|
|
width: global.screen_width+2,
|
|
|
|
height: PANEL_HEIGHT+1,
|
|
|
|
border_width: 1});
|
|
|
|
background.set_position(-1, -1)
|
2008-10-31 14:09:20 -04:00
|
|
|
this._group.add_actor(background);
|
|
|
|
|
|
|
|
let message = new Clutter.Label({ font_name: "Sans Bold 16px",
|
|
|
|
text: "Activities",
|
|
|
|
reactive: true });
|
|
|
|
message.set_position(5, 5);
|
|
|
|
this._group.add_actor(message);
|
|
|
|
|
|
|
|
this._clock = new Clutter.Label({ font_name: "Sans Bold 16px",
|
|
|
|
text: "" });
|
|
|
|
this._clock.set_anchor_point_from_gravity(Clutter.Gravity.NORTH_EAST);
|
|
|
|
this._clock.set_position(global.screen_width - 5, 5);
|
|
|
|
this._group.add_actor(this._clock);
|
|
|
|
|
|
|
|
message.connect('button-press-event',
|
|
|
|
function(o, event) {
|
2008-10-31 19:09:46 -04:00
|
|
|
// See comment above
|
|
|
|
let Main = imports.ui.main;
|
|
|
|
|
|
|
|
if (Main.overlay.visible)
|
|
|
|
Main.hide_overlay();
|
|
|
|
else
|
|
|
|
Main.show_overlay();
|
|
|
|
|
2008-10-31 14:09:20 -04:00
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
global.stage.add_actor(this._group);
|
|
|
|
|
|
|
|
this._updateClock();
|
|
|
|
this._startClock();
|
|
|
|
},
|
|
|
|
|
|
|
|
_startClock: function() {
|
|
|
|
let me = this;
|
2008-10-31 14:12:03 -04:00
|
|
|
Mainloop.timeout_add_seconds(60,
|
2008-10-31 14:09:20 -04:00
|
|
|
function() {
|
|
|
|
me._updateClock();
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateClock: function() {
|
2008-10-31 14:12:03 -04:00
|
|
|
this._clock.set_text(new Date().toLocaleFormat("%H:%M"));
|
2008-10-31 14:09:20 -04:00
|
|
|
this._clock.set_anchor_point_from_gravity(Clutter.Gravity.NORTH_EAST);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|