summaryrefslogtreecommitdiffstats
path: root/impatience/extension.js
blob: 8b54d3d3da6614a1228369e085eae30392fe50e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const St = imports.gi.St;
const Gio = imports.gi.Gio;
const DEFAULT_SPEED = 0.75;
const ExtensionUtils = imports.misc.extensionUtils;
const Extension = ExtensionUtils.getCurrentExtension();
const Settings = Extension.imports.settings;

function LOG(m){
	global.log("[impatience] " + m);
};
function Ext() {
	this._init.apply(this, arguments);
};
var noop = function() {};

Ext.prototype = {};
Ext.prototype._init = function() {
	this.enabled = false;
	this.original_speed = St.Settings.get().slow_down_factor;
	this.modified_speed = DEFAULT_SPEED;
	this.unbind = noop;
};

Ext.prototype.enable = function() {
	var self = this;
	this.enabled = true;
	var pref = (new Settings.Prefs()).SPEED;
	LOG("enabled");
	var binding = pref.changed(function() {
		self.set_speed(pref.get());
	});
	this.unbind = function() {
		pref.disconnect(binding);
		self.unbind = noop;
	};
	this.set_speed(pref.get());
};

Ext.prototype.disable = function() {
	this.enabled = false;
	this.unbind();
	St.Settings.get().slow_down_factor = this.original_speed;
};

Ext.prototype.set_speed = function(new_speed) {
	if(!this.enabled) {
		LOG("NOT setting new speed, since the extension is disabled.");
		return;
	}
	if(new_speed !== undefined) {
		this.modified_speed = new_speed;
	}
	LOG("setting new speed: " + this.modified_speed);
	St.Settings.get().slow_down_factor = this.modified_speed;
};

function init() {
	return new Ext();
};