2013-05-22 00:33:09 +00:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
/* Olaf Leidinger <oleid@mescharet.de>
|
|
|
|
Thomas Liebetraut <thomas@tommie-lie.de>
|
|
|
|
*/
|
|
|
|
|
2013-10-31 09:46:02 +00:00
|
|
|
const Gio = imports.gi.Gio;
|
|
|
|
const Lang = imports.lang;
|
|
|
|
const Gettext = imports.gettext;
|
2013-05-22 00:33:09 +00:00
|
|
|
const ExtensionUtils = imports.misc.extensionUtils;
|
2013-10-31 09:46:02 +00:00
|
|
|
const Me = ExtensionUtils.getCurrentExtension();
|
|
|
|
const Config = imports.misc.config;
|
2013-05-22 00:33:09 +00:00
|
|
|
|
|
|
|
const TEATIME_STEEP_TIMES_KEY = 'steep-times';
|
2013-11-01 22:58:00 +00:00
|
|
|
const TEATIME_FULLSCREEN_NOTIFICATION_KEY = 'fullscreen-notification';
|
2014-02-18 22:29:48 +00:00
|
|
|
const TEATIME_GRAPHICAL_COUNTDOWN_KEY = 'graphical-countdown';
|
2013-05-22 00:33:09 +00:00
|
|
|
|
2013-10-31 09:46:02 +00:00
|
|
|
function initTranslations(domain) {
|
|
|
|
let extension = ExtensionUtils.getCurrentExtension();
|
|
|
|
|
|
|
|
domain = domain || extension.metadata['gettext-domain'];
|
|
|
|
|
|
|
|
Gettext.textdomain(domain);
|
|
|
|
// check if this extension was built with "make zip-file", and thus
|
|
|
|
// has the locale files in a subfolder
|
|
|
|
// otherwise assume that extension has been installed in the
|
|
|
|
// same prefix as gnome-shell
|
|
|
|
let localeDir = extension.dir.get_child('locale');
|
|
|
|
if (localeDir.query_exists(null))
|
|
|
|
Gettext.bindtextdomain(domain, localeDir.get_path());
|
|
|
|
else
|
|
|
|
Gettext.bindtextdomain(domain, Config.LOCALEDIR);
|
2013-10-31 09:25:41 +00:00
|
|
|
}
|
|
|
|
|
2013-10-31 09:46:02 +00:00
|
|
|
|
2013-05-22 00:33:09 +00:00
|
|
|
function getSettings(schema) {
|
|
|
|
let extension = ExtensionUtils.getCurrentExtension();
|
|
|
|
|
|
|
|
schema = schema || extension.metadata['settings-schema'];
|
|
|
|
|
|
|
|
const GioSSS = Gio.SettingsSchemaSource;
|
|
|
|
|
|
|
|
// check if this extension was built with "make zip-file", and thus
|
|
|
|
// has the schema files in a subfolder
|
|
|
|
// otherwise assume that extension has been installed in the
|
|
|
|
// same prefix as gnome-shell (and therefore schemas are available
|
|
|
|
// in the standard folders)
|
|
|
|
let schemaDir = extension.dir.get_child('schemas');
|
|
|
|
let schemaSource;
|
|
|
|
if (schemaDir.query_exists(null)) {
|
|
|
|
schemaSource = GioSSS.new_from_directory(schemaDir.get_path(),
|
|
|
|
GioSSS.get_default(),
|
|
|
|
false);
|
|
|
|
} else {
|
|
|
|
schemaSource = GioSSS.get_default();
|
|
|
|
}
|
|
|
|
|
|
|
|
let schemaObj = schemaSource.lookup(schema, true);
|
|
|
|
if (!schemaObj)
|
|
|
|
throw new Error('Schema ' + schema + ' could not be found for extension '
|
|
|
|
+ extension.metadata.uuid + '. Please check your installation.');
|
|
|
|
|
|
|
|
return new Gio.Settings({ settings_schema: schemaObj });
|
|
|
|
}
|
|
|
|
|
2014-02-18 23:23:57 +00:00
|
|
|
function formatTime(sec_num) {
|
|
|
|
/* toLocaleFormat would be nicer, however it doesn't work with
|
|
|
|
Debian Wheezy and some later gnome versions */
|
2013-05-22 00:33:09 +00:00
|
|
|
|
2014-02-18 23:23:57 +00:00
|
|
|
// based on code from
|
|
|
|
// http://stackoverflow.com/questions/6312993/javascript-seconds-to-time-with-format-hhmmss
|
2013-05-22 00:33:09 +00:00
|
|
|
|
2014-02-18 23:23:57 +00:00
|
|
|
let hours = Math.floor(sec_num / 3600);
|
|
|
|
let minutes = Math.floor((sec_num - (hours * 3600)) / 60);
|
2014-02-18 23:36:14 +00:00
|
|
|
let seconds = Math.round(sec_num - (hours * 3600) - (minutes * 60));
|
2014-02-18 23:23:57 +00:00
|
|
|
|
|
|
|
if (hours < 10) {hours = "0"+hours;}
|
|
|
|
if (minutes < 10) {minutes = "0"+minutes;}
|
|
|
|
if (seconds < 10) {seconds = "0"+seconds;}
|
|
|
|
|
|
|
|
return (( hours == "00") ? "" : hours+':') + minutes + ':' + seconds;
|
2013-05-22 00:33:09 +00:00
|
|
|
}
|