2011-09-28 09:16:26 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2019-01-31 09:07:06 -05:00
|
|
|
/* exported DateMenuButton */
|
2011-01-28 16:35:46 -05:00
|
|
|
|
2019-07-31 19:24:13 -04:00
|
|
|
const { Clutter, Gio, GLib, GnomeDesktop,
|
2019-02-08 22:21:36 -05:00
|
|
|
GObject, GWeather, Shell, St } = imports.gi;
|
2011-01-28 16:35:46 -05:00
|
|
|
|
|
|
|
const Util = imports.misc.util;
|
|
|
|
const Main = imports.ui.main;
|
|
|
|
const PanelMenu = imports.ui.panelMenu;
|
|
|
|
const Calendar = imports.ui.calendar;
|
2017-02-24 07:15:39 -05:00
|
|
|
const Weather = imports.misc.weather;
|
2015-08-13 18:57:49 -04:00
|
|
|
const System = imports.system;
|
2011-01-28 16:35:46 -05:00
|
|
|
|
2019-07-31 19:24:13 -04:00
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
2018-12-13 08:45:22 -05:00
|
|
|
const MAX_FORECASTS = 5;
|
|
|
|
|
2019-07-31 19:24:13 -04:00
|
|
|
const ClocksIntegrationIface = loadInterfaceXML('org.gnome.Shell.ClocksIntegration');
|
|
|
|
const ClocksProxy = Gio.DBusProxy.makeProxyWrapper(ClocksIntegrationIface);
|
|
|
|
|
2015-02-13 10:25:21 -05:00
|
|
|
function _isToday(date) {
|
|
|
|
let now = new Date();
|
|
|
|
return now.getYear() == date.getYear() &&
|
|
|
|
now.getMonth() == date.getMonth() &&
|
|
|
|
now.getDate() == date.getDate();
|
|
|
|
}
|
|
|
|
|
2017-10-30 21:19:44 -04:00
|
|
|
var TodayButton = class TodayButton {
|
|
|
|
constructor(calendar) {
|
2014-12-05 10:03:59 -05:00
|
|
|
// Having the ability to go to the current date if the user is already
|
|
|
|
// on the current date can be confusing. So don't make the button reactive
|
|
|
|
// until the selected date changes.
|
2019-02-12 09:02:09 -05:00
|
|
|
this.actor = new St.Button({
|
|
|
|
style_class: 'datemenu-today-button',
|
|
|
|
x_align: St.Align.START,
|
|
|
|
x_expand: true,
|
|
|
|
can_focus: true,
|
|
|
|
reactive: false,
|
|
|
|
});
|
2017-10-30 20:38:18 -04:00
|
|
|
this.actor.connect('clicked', () => {
|
|
|
|
this._calendar.setDate(new Date(), false);
|
|
|
|
});
|
2014-12-05 10:03:59 -05:00
|
|
|
|
|
|
|
let hbox = new St.BoxLayout({ vertical: true });
|
|
|
|
this.actor.add_actor(hbox);
|
|
|
|
|
|
|
|
this._dayLabel = new St.Label({ style_class: 'day-label',
|
|
|
|
x_align: Clutter.ActorAlign.START });
|
|
|
|
hbox.add_actor(this._dayLabel);
|
|
|
|
|
|
|
|
this._dateLabel = new St.Label({ style_class: 'date-label' });
|
|
|
|
hbox.add_actor(this._dateLabel);
|
|
|
|
|
|
|
|
this._calendar = calendar;
|
2017-10-30 20:38:18 -04:00
|
|
|
this._calendar.connect('selected-date-changed', (calendar, date) => {
|
|
|
|
// Make the button reactive only if the selected date is not the
|
|
|
|
// current date.
|
2019-01-28 20:18:52 -05:00
|
|
|
this.actor.reactive = !_isToday(date);
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2014-12-05 10:03:59 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
setDate(date) {
|
2014-12-05 10:03:59 -05:00
|
|
|
this._dayLabel.set_text(date.toLocaleFormat('%A'));
|
|
|
|
|
|
|
|
/* Translators: This is the date format to use when the calendar popup is
|
2018-10-15 10:43:36 -04:00
|
|
|
* shown - it is shown just below the time in the top bar (e.g.,
|
|
|
|
* "Tue 9:29 AM"). The string itself should become a full date, e.g.,
|
|
|
|
* "February 17 2015".
|
2014-12-05 10:03:59 -05:00
|
|
|
*/
|
2018-10-15 10:50:02 -04:00
|
|
|
let dateFormat = Shell.util_translate_time_string (N_("%B %-d %Y"));
|
2014-12-05 10:03:59 -05:00
|
|
|
this._dateLabel.set_text(date.toLocaleFormat(dateFormat));
|
|
|
|
|
|
|
|
/* Translators: This is the accessible name of the date button shown
|
|
|
|
* below the time in the shell; it should combine the weekday and the
|
|
|
|
* date, e.g. "Tuesday February 17 2015".
|
|
|
|
*/
|
2017-02-09 21:12:59 -05:00
|
|
|
dateFormat = Shell.util_translate_time_string (N_("%A %B %e %Y"));
|
2014-12-05 10:03:59 -05:00
|
|
|
this.actor.accessible_name = date.toLocaleFormat(dateFormat);
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
};
|
2015-02-06 18:47:27 -05:00
|
|
|
|
2017-10-30 21:19:44 -04:00
|
|
|
var WorldClocksSection = class WorldClocksSection {
|
|
|
|
constructor() {
|
2015-02-06 18:47:27 -05:00
|
|
|
this._clock = new GnomeDesktop.WallClock();
|
|
|
|
this._clockNotifyId = 0;
|
|
|
|
|
|
|
|
this._locations = [];
|
|
|
|
|
|
|
|
this.actor = new St.Button({ style_class: 'world-clocks-button',
|
|
|
|
x_fill: true,
|
|
|
|
can_focus: true });
|
2017-10-30 20:38:18 -04:00
|
|
|
this.actor.connect('clicked', () => {
|
2019-07-31 19:24:13 -04:00
|
|
|
if (this._clocksApp)
|
|
|
|
this._clocksApp.activate();
|
2015-02-06 18:47:27 -05:00
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
Main.overview.hide();
|
|
|
|
Main.panel.closeCalendar();
|
|
|
|
});
|
2015-02-06 18:47:27 -05:00
|
|
|
|
|
|
|
let layout = new Clutter.GridLayout({ orientation: Clutter.Orientation.VERTICAL });
|
|
|
|
this._grid = new St.Widget({ style_class: 'world-clocks-grid',
|
|
|
|
layout_manager: layout });
|
|
|
|
layout.hookup_style(this._grid);
|
|
|
|
|
|
|
|
this.actor.child = this._grid;
|
|
|
|
|
2019-07-31 19:24:13 -04:00
|
|
|
this._clocksApp = null;
|
|
|
|
this._clocksProxy = new ClocksProxy(
|
|
|
|
Gio.DBus.session,
|
|
|
|
'org.gnome.clocks',
|
|
|
|
'/org/gnome/clocks',
|
|
|
|
this._onProxyReady.bind(this),
|
|
|
|
null /* cancellable */,
|
|
|
|
Gio.DBusProxyFlags.DO_NOT_AUTO_START | Gio.DBusProxyFlags.GET_INVALIDATED_PROPERTIES);
|
|
|
|
|
|
|
|
this._settings = new Gio.Settings({
|
|
|
|
schema_id: 'org.gnome.shell.world-clocks'
|
|
|
|
});
|
|
|
|
this._settings.connect('changed', this._clocksChanged.bind(this));
|
|
|
|
this._clocksChanged();
|
|
|
|
|
|
|
|
this._appSystem = Shell.AppSystem.get_default();
|
|
|
|
this._appSystem.connect('installed-changed',
|
|
|
|
this._sync.bind(this));
|
2015-02-06 18:47:27 -05:00
|
|
|
this._sync();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2015-02-06 18:47:27 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_sync() {
|
2019-07-31 19:24:13 -04:00
|
|
|
this._clocksApp = this._appSystem.lookup_app('org.gnome.clocks.desktop');
|
|
|
|
this.actor.visible = this._clocksApp != null;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2015-02-06 18:47:27 -05:00
|
|
|
|
2019-07-31 19:24:13 -04:00
|
|
|
_clocksChanged() {
|
2015-02-06 18:47:27 -05:00
|
|
|
this._grid.destroy_all_children();
|
|
|
|
this._locations = [];
|
|
|
|
|
|
|
|
let world = GWeather.Location.get_world();
|
2019-07-31 19:24:13 -04:00
|
|
|
let clocks = this._settings.get_value('locations').deep_unpack();
|
2015-02-06 18:47:27 -05:00
|
|
|
for (let i = 0; i < clocks.length; i++) {
|
2019-07-31 19:24:13 -04:00
|
|
|
let l = world.deserialize(clocks[i]);
|
2019-04-28 06:33:41 -04:00
|
|
|
if (l && l.get_timezone() != null)
|
2017-12-04 08:30:01 -05:00
|
|
|
this._locations.push({ location: l });
|
2015-02-06 18:47:27 -05:00
|
|
|
}
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
this._locations.sort((a, b) => {
|
2015-02-06 18:47:27 -05:00
|
|
|
return a.location.get_timezone().get_offset() -
|
|
|
|
b.location.get_timezone().get_offset();
|
|
|
|
});
|
|
|
|
|
|
|
|
let layout = this._grid.layout_manager;
|
2019-08-19 15:33:15 -04:00
|
|
|
let title = (this._locations.length == 0)
|
|
|
|
? _("Add world clocks…")
|
|
|
|
: _("World Clocks");
|
2015-02-06 18:47:27 -05:00
|
|
|
let header = new St.Label({ style_class: 'world-clocks-header',
|
|
|
|
x_align: Clutter.ActorAlign.START,
|
|
|
|
text: title });
|
|
|
|
layout.attach(header, 0, 0, 2, 1);
|
2015-03-03 17:22:02 -05:00
|
|
|
this.actor.label_actor = header;
|
2015-02-06 18:47:27 -05:00
|
|
|
|
2019-04-11 05:36:33 -04:00
|
|
|
let localOffset = GLib.DateTime.new_now_local().get_utc_offset();
|
|
|
|
|
2015-02-06 18:47:27 -05:00
|
|
|
for (let i = 0; i < this._locations.length; i++) {
|
|
|
|
let l = this._locations[i].location;
|
|
|
|
|
2019-04-11 20:10:04 -04:00
|
|
|
let name = l.get_city_name() || l.get_name();
|
2015-02-06 18:47:27 -05:00
|
|
|
let label = new St.Label({ style_class: 'world-clocks-city',
|
2018-03-25 12:39:37 -04:00
|
|
|
text: name,
|
2015-02-06 18:47:27 -05:00
|
|
|
x_align: Clutter.ActorAlign.START,
|
2018-12-13 11:44:28 -05:00
|
|
|
y_align: Clutter.ActorAlign.CENTER,
|
2015-02-06 18:47:27 -05:00
|
|
|
x_expand: true });
|
|
|
|
|
2018-12-13 11:44:28 -05:00
|
|
|
let time = new St.Label({ style_class: 'world-clocks-time' });
|
|
|
|
|
2019-04-11 05:36:33 -04:00
|
|
|
let otherOffset = this._getTimeAtLocation(l).get_utc_offset();
|
|
|
|
let offset = (otherOffset - localOffset) / GLib.TIME_SPAN_HOUR;
|
2018-12-13 11:44:28 -05:00
|
|
|
let fmt = (Math.trunc(offset) == offset) ? '%s%.0f' : '%s%.1f';
|
|
|
|
let prefix = (offset >= 0) ? '+' : '-';
|
|
|
|
let tz = new St.Label({ style_class: 'world-clocks-timezone',
|
|
|
|
text: fmt.format(prefix, Math.abs(offset)),
|
|
|
|
x_align: Clutter.ActorAlign.END,
|
|
|
|
y_align: Clutter.ActorAlign.CENTER });
|
2015-02-06 18:47:27 -05:00
|
|
|
|
|
|
|
if (this._grid.text_direction == Clutter.TextDirection.RTL) {
|
2018-12-13 11:44:28 -05:00
|
|
|
layout.attach(tz, 0, i + 1, 1, 1);
|
|
|
|
layout.attach(time, 1, i + 1, 1, 1);
|
|
|
|
layout.attach(label, 2, i + 1, 1, 1);
|
2015-02-06 18:47:27 -05:00
|
|
|
} else {
|
|
|
|
layout.attach(label, 0, i + 1, 1, 1);
|
|
|
|
layout.attach(time, 1, i + 1, 1, 1);
|
2018-12-13 11:44:28 -05:00
|
|
|
layout.attach(tz, 2, i + 1, 1, 1);
|
2015-02-06 18:47:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
this._locations[i].actor = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._grid.get_n_children() > 1) {
|
|
|
|
if (!this._clockNotifyId)
|
|
|
|
this._clockNotifyId =
|
2017-12-01 19:27:35 -05:00
|
|
|
this._clock.connect('notify::clock', this._updateLabels.bind(this));
|
2015-02-06 18:47:27 -05:00
|
|
|
this._updateLabels();
|
|
|
|
} else {
|
|
|
|
if (this._clockNotifyId)
|
|
|
|
this._clock.disconnect(this._clockNotifyId);
|
|
|
|
this._clockNotifyId = 0;
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2015-02-06 18:47:27 -05:00
|
|
|
|
2019-04-11 05:36:33 -04:00
|
|
|
_getTimeAtLocation(location) {
|
|
|
|
let tz = GLib.TimeZone.new(location.get_timezone().get_tzid());
|
|
|
|
return GLib.DateTime.new_now(tz);
|
|
|
|
}
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_updateLabels() {
|
2015-02-06 18:47:27 -05:00
|
|
|
for (let i = 0; i < this._locations.length; i++) {
|
|
|
|
let l = this._locations[i];
|
2019-04-11 05:36:33 -04:00
|
|
|
let now = this._getTimeAtLocation(l.location);
|
2015-02-25 14:26:08 -05:00
|
|
|
l.actor.text = Util.formatTime(now, { timeOnly: true });
|
2015-02-06 18:47:27 -05:00
|
|
|
}
|
|
|
|
}
|
2019-07-31 19:24:13 -04:00
|
|
|
|
|
|
|
_onProxyReady(proxy, error) {
|
|
|
|
if (error) {
|
|
|
|
log(`Failed to create GNOME Clocks proxy: ${error}`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._clocksProxy.connect('g-properties-changed',
|
|
|
|
this._onClocksPropertiesChanged.bind(this));
|
|
|
|
this._onClocksPropertiesChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
_onClocksPropertiesChanged() {
|
|
|
|
if (this._clocksProxy.g_name_owner == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this._settings.set_value('locations',
|
|
|
|
new GLib.Variant('av', this._clocksProxy.Locations));
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
};
|
2015-02-06 18:47:27 -05:00
|
|
|
|
2017-10-30 21:19:44 -04:00
|
|
|
var WeatherSection = class WeatherSection {
|
|
|
|
constructor() {
|
2017-02-24 07:15:39 -05:00
|
|
|
this._weatherClient = new Weather.WeatherClient();
|
|
|
|
|
|
|
|
this.actor = new St.Button({ style_class: 'weather-button',
|
|
|
|
x_fill: true,
|
|
|
|
can_focus: true });
|
|
|
|
this.actor.connect('clicked', () => {
|
|
|
|
this._weatherClient.activateApp();
|
|
|
|
|
|
|
|
Main.overview.hide();
|
|
|
|
Main.panel.closeCalendar();
|
|
|
|
});
|
|
|
|
this.actor.connect('notify::mapped', () => {
|
|
|
|
if (this.actor.mapped)
|
|
|
|
this._weatherClient.update();
|
|
|
|
});
|
|
|
|
|
|
|
|
let box = new St.BoxLayout({ style_class: 'weather-box',
|
2019-01-29 14:36:54 -05:00
|
|
|
vertical: true });
|
2017-02-24 07:15:39 -05:00
|
|
|
|
|
|
|
this.actor.child = box;
|
|
|
|
|
2019-01-11 11:42:22 -05:00
|
|
|
let titleBox = new St.BoxLayout();
|
|
|
|
titleBox.add_child(new St.Label({ style_class: 'weather-header',
|
|
|
|
x_align: Clutter.ActorAlign.START,
|
|
|
|
x_expand: true,
|
|
|
|
text: _("Weather") }));
|
|
|
|
box.add_child(titleBox);
|
|
|
|
|
|
|
|
this._titleLocation = new St.Label({ style_class: 'weather-header location',
|
|
|
|
x_align: Clutter.ActorAlign.END });
|
|
|
|
titleBox.add_child(this._titleLocation);
|
2017-02-24 07:15:39 -05:00
|
|
|
|
2018-12-13 08:45:22 -05:00
|
|
|
let layout = new Clutter.GridLayout({ orientation: Clutter.Orientation.VERTICAL });
|
|
|
|
this._forecastGrid = new St.Widget({ style_class: 'weather-grid',
|
|
|
|
layout_manager: layout });
|
|
|
|
layout.hookup_style(this._forecastGrid);
|
|
|
|
box.add_child(this._forecastGrid);
|
2017-02-24 07:15:39 -05:00
|
|
|
|
2017-12-01 19:27:35 -05:00
|
|
|
this._weatherClient.connect('changed', this._sync.bind(this));
|
2017-02-24 07:15:39 -05:00
|
|
|
this._sync();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2017-02-24 07:15:39 -05:00
|
|
|
|
2018-12-13 08:45:22 -05:00
|
|
|
_getInfos() {
|
2017-02-24 07:15:39 -05:00
|
|
|
let info = this._weatherClient.info;
|
|
|
|
let forecasts = info.get_forecast_list();
|
|
|
|
|
|
|
|
let current = info;
|
2017-02-25 12:25:07 -05:00
|
|
|
let infos = [info];
|
2017-02-24 07:15:39 -05:00
|
|
|
for (let i = 0; i < forecasts.length; i++) {
|
2019-01-31 09:08:00 -05:00
|
|
|
let [ok_, timestamp] = forecasts[i].get_value_update();
|
2018-12-13 08:45:22 -05:00
|
|
|
let datetime = new Date(timestamp * 1000);
|
|
|
|
if (!_isToday(datetime))
|
2017-02-24 07:15:39 -05:00
|
|
|
continue; // Ignore forecasts from other days
|
|
|
|
|
2019-01-31 09:08:00 -05:00
|
|
|
[ok_, timestamp] = current.get_value_update();
|
2018-12-13 08:45:22 -05:00
|
|
|
let currenttime = new Date(timestamp * 1000);
|
|
|
|
if (currenttime.getHours() == datetime.getHours())
|
|
|
|
continue; // Enforce a minimum interval of 1h
|
2017-02-24 07:15:39 -05:00
|
|
|
|
|
|
|
current = forecasts[i];
|
2018-12-13 08:45:22 -05:00
|
|
|
if (infos.push(current) == MAX_FORECASTS)
|
|
|
|
break; // Use a maximum of five forecasts
|
2017-02-24 07:15:39 -05:00
|
|
|
}
|
2018-12-13 08:45:22 -05:00
|
|
|
return infos;
|
|
|
|
}
|
2017-02-24 07:15:39 -05:00
|
|
|
|
2018-12-13 08:45:22 -05:00
|
|
|
_addForecasts() {
|
|
|
|
let layout = this._forecastGrid.layout_manager;
|
|
|
|
|
|
|
|
let infos = this._getInfos();
|
|
|
|
if (this._forecastGrid.text_direction == Clutter.TextDirection.RTL)
|
|
|
|
infos.reverse();
|
|
|
|
|
|
|
|
let col = 0;
|
|
|
|
infos.forEach(fc => {
|
2019-01-31 09:08:00 -05:00
|
|
|
let [ok_, timestamp] = fc.get_value_update();
|
2018-12-13 08:45:22 -05:00
|
|
|
let timeStr = Util.formatTime(new Date(timestamp * 1000), {
|
|
|
|
timeOnly: true
|
|
|
|
});
|
|
|
|
|
|
|
|
let icon = new St.Icon({ style_class: 'weather-forecast-icon',
|
|
|
|
icon_name: fc.get_symbolic_icon_name(),
|
|
|
|
x_align: Clutter.ActorAlign.CENTER,
|
|
|
|
x_expand: true });
|
|
|
|
let temp = new St.Label({ style_class: 'weather-forecast-temp',
|
|
|
|
text: fc.get_temp_summary(),
|
|
|
|
x_align: Clutter.ActorAlign.CENTER });
|
|
|
|
let time = new St.Label({ style_class: 'weather-forecast-time',
|
|
|
|
text: timeStr,
|
|
|
|
x_align: Clutter.ActorAlign.CENTER });
|
|
|
|
|
|
|
|
layout.attach(icon, col, 0, 1, 1);
|
|
|
|
layout.attach(temp, col, 1, 1, 1);
|
|
|
|
layout.attach(time, col, 2, 1, 1);
|
|
|
|
col++;
|
2017-02-25 12:25:07 -05:00
|
|
|
});
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2017-02-24 07:15:39 -05:00
|
|
|
|
2018-12-13 08:45:22 -05:00
|
|
|
_setStatusLabel(text) {
|
|
|
|
let layout = this._forecastGrid.layout_manager;
|
|
|
|
let label = new St.Label({ text });
|
|
|
|
layout.attach(label, 0, 0, 1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
_updateForecasts() {
|
|
|
|
this._forecastGrid.destroy_all_children();
|
|
|
|
|
|
|
|
if (!this._weatherClient.hasLocation) {
|
|
|
|
this._setStatusLabel(_("Select a location…"));
|
|
|
|
return;
|
|
|
|
}
|
2017-03-19 09:42:35 -04:00
|
|
|
|
2019-01-11 11:42:22 -05:00
|
|
|
let info = this._weatherClient.info;
|
|
|
|
this._titleLocation.text = info.get_location().get_name();
|
|
|
|
|
2018-12-13 08:45:22 -05:00
|
|
|
if (this._weatherClient.loading) {
|
|
|
|
this._setStatusLabel(_("Loading…"));
|
|
|
|
return;
|
|
|
|
}
|
2017-02-24 07:15:39 -05:00
|
|
|
|
2018-12-13 08:45:22 -05:00
|
|
|
if (info.is_valid()) {
|
|
|
|
this._addForecasts();
|
|
|
|
return;
|
|
|
|
}
|
2017-02-24 07:15:39 -05:00
|
|
|
|
|
|
|
if (info.network_error())
|
2018-12-13 08:45:22 -05:00
|
|
|
this._setStatusLabel(_("Go online for weather information"));
|
|
|
|
else
|
|
|
|
this._setStatusLabel(_("Weather information is currently unavailable"));
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2017-02-24 07:15:39 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_sync() {
|
2017-02-24 07:15:39 -05:00
|
|
|
this.actor.visible = this._weatherClient.available;
|
|
|
|
|
|
|
|
if (!this.actor.visible)
|
|
|
|
return;
|
|
|
|
|
2019-01-11 11:42:22 -05:00
|
|
|
this._titleLocation.visible = this._weatherClient.hasLocation;
|
|
|
|
|
2018-12-13 08:45:22 -05:00
|
|
|
this._updateForecasts();
|
2017-02-24 07:15:39 -05:00
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
};
|
2017-02-24 07:15:39 -05:00
|
|
|
|
2017-10-30 21:19:44 -04:00
|
|
|
var MessagesIndicator = class MessagesIndicator {
|
|
|
|
constructor() {
|
2017-09-12 06:33:37 -04:00
|
|
|
this.actor = new St.Icon({ icon_name: 'message-indicator-symbolic',
|
|
|
|
icon_size: 16,
|
|
|
|
visible: false, y_expand: true,
|
|
|
|
y_align: Clutter.ActorAlign.CENTER });
|
2015-02-13 21:17:16 -05:00
|
|
|
|
|
|
|
this._sources = [];
|
|
|
|
|
2017-12-01 19:27:35 -05:00
|
|
|
Main.messageTray.connect('source-added', this._onSourceAdded.bind(this));
|
|
|
|
Main.messageTray.connect('source-removed', this._onSourceRemoved.bind(this));
|
|
|
|
Main.messageTray.connect('queue-changed', this._updateCount.bind(this));
|
2015-02-13 21:17:16 -05:00
|
|
|
|
|
|
|
let sources = Main.messageTray.getSources();
|
2019-01-27 19:42:00 -05:00
|
|
|
sources.forEach(source => this._onSourceAdded(null, source));
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2015-02-13 21:17:16 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onSourceAdded(tray, source) {
|
2017-12-01 19:27:35 -05:00
|
|
|
source.connect('count-updated', this._updateCount.bind(this));
|
2015-02-13 21:17:16 -05:00
|
|
|
this._sources.push(source);
|
|
|
|
this._updateCount();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2015-02-13 21:17:16 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onSourceRemoved(tray, source) {
|
2015-02-13 21:17:16 -05:00
|
|
|
this._sources.splice(this._sources.indexOf(source), 1);
|
|
|
|
this._updateCount();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2015-02-13 21:17:16 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_updateCount() {
|
2015-02-13 21:17:16 -05:00
|
|
|
let count = 0;
|
2019-08-19 16:20:35 -04:00
|
|
|
this._sources.forEach(source => (count += source.unseenCount));
|
2015-02-13 21:17:16 -05:00
|
|
|
count -= Main.messageTray.queueCount;
|
|
|
|
|
|
|
|
this.actor.visible = (count > 0);
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
};
|
2015-02-13 21:17:16 -05:00
|
|
|
|
2017-10-30 21:23:39 -04:00
|
|
|
var IndicatorPad = GObject.registerClass(
|
|
|
|
class IndicatorPad extends St.Widget {
|
2017-10-30 20:03:21 -04:00
|
|
|
_init(actor) {
|
2015-02-13 21:17:16 -05:00
|
|
|
this._source = actor;
|
2019-01-27 19:42:00 -05:00
|
|
|
this._source.connect('notify::visible', () => this.queue_relayout());
|
|
|
|
this._source.connect('notify::size', () => this.queue_relayout());
|
2017-10-30 21:23:39 -04:00
|
|
|
super._init();
|
|
|
|
}
|
2015-02-13 21:17:16 -05:00
|
|
|
|
2019-01-31 16:07:38 -05:00
|
|
|
vfunc_get_preferred_width(forHeight) {
|
2015-02-13 21:17:16 -05:00
|
|
|
if (this._source.visible)
|
|
|
|
return this._source.get_preferred_width(forHeight);
|
|
|
|
return [0, 0];
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2015-02-13 21:17:16 -05:00
|
|
|
|
2019-01-31 16:07:38 -05:00
|
|
|
vfunc_get_preferred_height(forWidth) {
|
2015-02-13 21:17:16 -05:00
|
|
|
if (this._source.visible)
|
|
|
|
return this._source.get_preferred_height(forWidth);
|
|
|
|
return [0, 0];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-10-30 21:23:39 -04:00
|
|
|
var FreezableBinLayout = GObject.registerClass(
|
|
|
|
class FreezableBinLayout extends Clutter.BinLayout {
|
2017-10-30 20:03:21 -04:00
|
|
|
_init() {
|
2017-10-30 21:23:39 -04:00
|
|
|
super._init();
|
2015-02-13 10:25:21 -05:00
|
|
|
|
|
|
|
this._frozen = false;
|
|
|
|
this._savedWidth = [NaN, NaN];
|
|
|
|
this._savedHeight = [NaN, NaN];
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2015-02-13 10:25:21 -05:00
|
|
|
|
|
|
|
set frozen(v) {
|
|
|
|
if (this._frozen == v)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this._frozen = v;
|
|
|
|
if (!this._frozen)
|
|
|
|
this.layout_changed();
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2015-02-13 10:25:21 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
vfunc_get_preferred_width(container, forHeight) {
|
2015-02-13 10:25:21 -05:00
|
|
|
if (!this._frozen || this._savedWidth.some(isNaN))
|
2017-10-30 21:23:39 -04:00
|
|
|
return super.vfunc_get_preferred_width(container, forHeight);
|
2015-02-13 10:25:21 -05:00
|
|
|
return this._savedWidth;
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2015-02-13 10:25:21 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
vfunc_get_preferred_height(container, forWidth) {
|
2015-02-13 10:25:21 -05:00
|
|
|
if (!this._frozen || this._savedHeight.some(isNaN))
|
2017-10-30 21:23:39 -04:00
|
|
|
return super.vfunc_get_preferred_height(container, forWidth);
|
2015-02-13 10:25:21 -05:00
|
|
|
return this._savedHeight;
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2017-02-26 08:37:51 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
vfunc_allocate(container, allocation, flags) {
|
2017-10-30 21:23:39 -04:00
|
|
|
super.vfunc_allocate(container, allocation, flags);
|
2017-02-26 08:37:51 -05:00
|
|
|
|
|
|
|
let [width, height] = allocation.get_size();
|
|
|
|
this._savedWidth = [width, width];
|
|
|
|
this._savedHeight = [height, height];
|
2015-02-13 10:25:21 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-10-30 21:23:39 -04:00
|
|
|
var CalendarColumnLayout = GObject.registerClass(
|
|
|
|
class CalendarColumnLayout extends Clutter.BoxLayout {
|
2017-10-30 20:03:21 -04:00
|
|
|
_init(actor) {
|
2017-10-30 21:23:39 -04:00
|
|
|
super._init({ orientation: Clutter.Orientation.VERTICAL });
|
2017-02-24 08:56:47 -05:00
|
|
|
this._calActor = actor;
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2017-02-24 08:56:47 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
vfunc_get_preferred_width(container, forHeight) {
|
2017-02-24 08:56:47 -05:00
|
|
|
if (!this._calActor || this._calActor.get_parent() != container)
|
2017-10-30 21:23:39 -04:00
|
|
|
return super.vfunc_get_preferred_width(container, forHeight);
|
2017-02-24 08:56:47 -05:00
|
|
|
return this._calActor.get_preferred_width(forHeight);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-10-30 21:23:39 -04:00
|
|
|
var DateMenuButton = GObject.registerClass(
|
|
|
|
class DateMenuButton extends PanelMenu.Button {
|
2017-10-30 20:03:21 -04:00
|
|
|
_init() {
|
2011-01-28 16:35:46 -05:00
|
|
|
let hbox;
|
|
|
|
let vbox;
|
|
|
|
|
2015-01-29 23:56:28 -05:00
|
|
|
let menuAlignment = 0.5;
|
2012-02-13 20:37:28 -05:00
|
|
|
if (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL)
|
2011-02-18 18:09:01 -05:00
|
|
|
menuAlignment = 1.0 - menuAlignment;
|
2017-10-30 21:23:39 -04:00
|
|
|
super._init(menuAlignment);
|
2011-01-28 16:35:46 -05:00
|
|
|
|
2013-08-03 08:30:46 -04:00
|
|
|
this._clockDisplay = new St.Label({ y_align: Clutter.ActorAlign.CENTER });
|
2015-02-13 21:17:16 -05:00
|
|
|
this._indicator = new MessagesIndicator();
|
|
|
|
|
|
|
|
let box = new St.BoxLayout();
|
|
|
|
box.add_actor(new IndicatorPad(this._indicator.actor));
|
|
|
|
box.add_actor(this._clockDisplay);
|
|
|
|
box.add_actor(this._indicator.actor);
|
|
|
|
|
2019-04-09 19:17:51 -04:00
|
|
|
this.label_actor = this._clockDisplay;
|
|
|
|
this.add_actor(box);
|
|
|
|
this.add_style_class_name ('clock-display');
|
2015-02-13 21:17:16 -05:00
|
|
|
|
2015-02-13 10:25:21 -05:00
|
|
|
let layout = new FreezableBinLayout();
|
|
|
|
let bin = new St.Widget({ layout_manager: layout });
|
2017-06-17 12:14:20 -04:00
|
|
|
// For some minimal compatibility with PopupMenuItem
|
|
|
|
bin._delegate = this;
|
2015-02-13 10:25:21 -05:00
|
|
|
this.menu.box.add_child(bin);
|
|
|
|
|
2013-07-15 20:00:41 -04:00
|
|
|
hbox = new St.BoxLayout({ name: 'calendarArea' });
|
2015-02-13 10:25:21 -05:00
|
|
|
bin.add_actor(hbox);
|
2011-01-28 16:35:46 -05:00
|
|
|
|
2015-01-29 23:56:28 -05:00
|
|
|
this._calendar = new Calendar.Calendar();
|
|
|
|
this._calendar.connect('selected-date-changed',
|
2017-10-30 20:38:18 -04:00
|
|
|
(calendar, date) => {
|
2015-02-13 10:25:21 -05:00
|
|
|
layout.frozen = !_isToday(date);
|
2014-12-11 12:29:17 -05:00
|
|
|
this._messageList.setDate(date);
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2015-01-29 23:56:28 -05:00
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
this.menu.connect('open-state-changed', (menu, isOpen) => {
|
2015-02-13 17:53:18 -05:00
|
|
|
// Whenever the menu is opened, select today
|
2015-01-29 23:56:28 -05:00
|
|
|
if (isOpen) {
|
|
|
|
let now = new Date();
|
|
|
|
this._calendar.setDate(now);
|
2014-12-05 10:03:59 -05:00
|
|
|
this._date.setDate(now);
|
2015-03-02 03:30:20 -05:00
|
|
|
this._messageList.setDate(now);
|
2015-01-29 23:56:28 -05:00
|
|
|
}
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2015-01-29 23:56:28 -05:00
|
|
|
|
2011-01-28 16:35:46 -05:00
|
|
|
// Fill up the first column
|
2016-02-15 06:02:31 -05:00
|
|
|
this._messageList = new Calendar.CalendarMessageList();
|
2014-12-11 12:29:17 -05:00
|
|
|
hbox.add(this._messageList.actor, { expand: true, y_fill: false, y_align: St.Align.START });
|
2011-01-28 16:35:46 -05:00
|
|
|
|
2015-01-29 23:56:28 -05:00
|
|
|
// Fill up the second column
|
2017-02-24 08:56:47 -05:00
|
|
|
let boxLayout = new CalendarColumnLayout(this._calendar.actor);
|
|
|
|
vbox = new St.Widget({ style_class: 'datemenu-calendar-column',
|
|
|
|
layout_manager: boxLayout });
|
|
|
|
boxLayout.hookup_style(vbox);
|
2011-01-28 16:35:46 -05:00
|
|
|
hbox.add(vbox);
|
|
|
|
|
2014-12-05 10:03:59 -05:00
|
|
|
this._date = new TodayButton(this._calendar);
|
|
|
|
vbox.add_actor(this._date.actor);
|
2011-01-28 16:35:46 -05:00
|
|
|
|
2017-02-24 08:56:47 -05:00
|
|
|
vbox.add_actor(this._calendar.actor);
|
2011-01-28 16:35:46 -05:00
|
|
|
|
2015-03-02 19:27:43 -05:00
|
|
|
this._displaysSection = new St.ScrollView({ style_class: 'datemenu-displays-section vfade',
|
|
|
|
x_expand: true, x_fill: true,
|
|
|
|
overlay_scrollbars: true });
|
2018-11-27 07:45:36 -05:00
|
|
|
this._displaysSection.set_policy(St.PolicyType.NEVER, St.PolicyType.AUTOMATIC);
|
2015-03-02 19:27:43 -05:00
|
|
|
vbox.add_actor(this._displaysSection);
|
2012-12-21 16:54:20 -05:00
|
|
|
|
2015-02-06 18:47:27 -05:00
|
|
|
let displaysBox = new St.BoxLayout({ vertical: true,
|
|
|
|
style_class: 'datemenu-displays-box' });
|
2015-03-02 19:27:43 -05:00
|
|
|
this._displaysSection.add_actor(displaysBox);
|
2012-12-15 05:30:03 -05:00
|
|
|
|
2015-02-06 18:47:27 -05:00
|
|
|
this._clocksItem = new WorldClocksSection();
|
|
|
|
displaysBox.add(this._clocksItem.actor, { x_fill: true });
|
2012-12-15 05:30:03 -05:00
|
|
|
|
2017-02-24 07:15:39 -05:00
|
|
|
this._weatherItem = new WeatherSection();
|
|
|
|
displaysBox.add(this._weatherItem.actor, { x_fill: true });
|
2011-01-28 16:35:46 -05:00
|
|
|
|
|
|
|
// Done with hbox for calendar and event list
|
|
|
|
|
2011-08-21 03:31:16 -04:00
|
|
|
this._clock = new GnomeDesktop.WallClock();
|
2014-10-01 17:28:14 -04:00
|
|
|
this._clock.bind_property('clock', this._clockDisplay, 'text', GObject.BindingFlags.SYNC_CREATE);
|
2017-12-01 19:27:35 -05:00
|
|
|
this._clock.connect('notify::timezone', this._updateTimeZone.bind(this));
|
2012-09-01 08:42:53 -04:00
|
|
|
|
2017-12-01 19:27:35 -05:00
|
|
|
Main.sessionMode.connect('updated', this._sessionUpdated.bind(this));
|
2012-09-01 08:42:53 -04:00
|
|
|
this._sessionUpdated();
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2012-09-01 08:42:53 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_getEventSource() {
|
2012-03-21 03:59:39 -04:00
|
|
|
return new Calendar.DBusEventSource();
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2012-03-21 03:59:39 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_setEventSource(eventSource) {
|
2013-03-04 11:04:28 -05:00
|
|
|
if (this._eventSource)
|
|
|
|
this._eventSource.destroy();
|
|
|
|
|
2012-09-01 08:42:53 -04:00
|
|
|
this._calendar.setEventSource(eventSource);
|
2014-12-11 12:29:17 -05:00
|
|
|
this._messageList.setEventSource(eventSource);
|
2013-03-04 11:04:28 -05:00
|
|
|
|
|
|
|
this._eventSource = eventSource;
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2012-09-01 08:42:53 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_updateTimeZone() {
|
2015-08-13 18:57:49 -04:00
|
|
|
// SpiderMonkey caches the time zone so we must explicitly clear it
|
|
|
|
// before we can update the calendar, see
|
|
|
|
// https://bugzilla.gnome.org/show_bug.cgi?id=678507
|
|
|
|
System.clearDateCaches();
|
|
|
|
|
|
|
|
this._calendar.updateTimeZone();
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2015-08-13 18:57:49 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_sessionUpdated() {
|
2012-09-01 08:42:53 -04:00
|
|
|
let eventSource;
|
|
|
|
let showEvents = Main.sessionMode.showCalendarEvents;
|
|
|
|
if (showEvents) {
|
2012-03-21 03:59:39 -04:00
|
|
|
eventSource = this._getEventSource();
|
2012-09-01 08:42:53 -04:00
|
|
|
} else {
|
2013-03-04 11:04:28 -05:00
|
|
|
eventSource = new Calendar.EmptyEventSource();
|
2012-09-01 08:42:53 -04:00
|
|
|
}
|
|
|
|
this._setEventSource(eventSource);
|
2015-03-02 19:27:43 -05:00
|
|
|
|
|
|
|
// Displays are not actually expected to launch Settings when activated
|
|
|
|
// but the corresponding app (clocks, weather); however we can consider
|
|
|
|
// that display-specific settings, so re-use "allowSettings" here ...
|
|
|
|
this._displaysSection.visible = Main.sessionMode.allowSettings;
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2011-11-20 09:38:48 -05:00
|
|
|
});
|