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 Indicator */
|
2010-07-24 07:57:53 -04:00
|
|
|
|
2020-04-03 14:27:34 -04:00
|
|
|
const { Gio, GLib, GnomeBluetooth, GObject } = imports.gi;
|
2010-07-24 07:57:53 -04:00
|
|
|
|
|
|
|
const Main = imports.ui.main;
|
|
|
|
const PanelMenu = imports.ui.panelMenu;
|
|
|
|
const PopupMenu = imports.ui.popupMenu;
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
2013-11-26 08:06:41 -05:00
|
|
|
const BUS_NAME = 'org.gnome.SettingsDaemon.Rfkill';
|
|
|
|
const OBJECT_PATH = '/org/gnome/SettingsDaemon/Rfkill';
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
const RfkillManagerInterface = loadInterfaceXML('org.gnome.SettingsDaemon.Rfkill');
|
2013-11-26 08:06:41 -05:00
|
|
|
const RfkillManagerProxy = Gio.DBusProxy.makeProxyWrapper(RfkillManagerInterface);
|
|
|
|
|
2014-11-13 04:58:35 -05:00
|
|
|
const HAD_BLUETOOTH_DEVICES_SETUP = 'had-bluetooth-devices-setup';
|
|
|
|
|
2019-10-28 14:35:33 -04:00
|
|
|
var Indicator = GObject.registerClass(
|
|
|
|
class Indicator extends PanelMenu.SystemIndicator {
|
2019-07-16 05:24:13 -04:00
|
|
|
_init() {
|
|
|
|
super._init();
|
2013-06-06 17:27:25 -04:00
|
|
|
|
2013-07-19 06:05:47 -04:00
|
|
|
this._indicator = this._addIndicator();
|
|
|
|
this._indicator.icon_name = 'bluetooth-active-symbolic';
|
2014-11-13 04:58:35 -05:00
|
|
|
this._hadSetupDevices = global.settings.get_boolean(HAD_BLUETOOTH_DEVICES_SETUP);
|
2010-07-24 07:57:53 -04:00
|
|
|
|
2013-11-26 08:06:41 -05:00
|
|
|
this._proxy = new RfkillManagerProxy(Gio.DBus.session, BUS_NAME, OBJECT_PATH,
|
2017-10-30 20:38:18 -04:00
|
|
|
(proxy, error) => {
|
2013-11-26 08:06:41 -05:00
|
|
|
if (error) {
|
|
|
|
log(error.message);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-28 15:47:37 -05:00
|
|
|
|
|
|
|
this._sync();
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2020-04-03 14:27:34 -04:00
|
|
|
this._proxy.connect('g-properties-changed', this._queueSync.bind(this));
|
2013-11-26 08:06:41 -05:00
|
|
|
|
2014-11-13 04:58:35 -05:00
|
|
|
this._item = new PopupMenu.PopupSubMenuMenuItem(_("Bluetooth"), true);
|
2013-07-15 13:51:42 -04:00
|
|
|
this._item.icon.icon_name = 'bluetooth-active-symbolic';
|
2014-11-13 04:58:35 -05:00
|
|
|
|
|
|
|
this._toggleItem = new PopupMenu.PopupMenuItem('');
|
2017-10-30 20:38:18 -04:00
|
|
|
this._toggleItem.connect('activate', () => {
|
2014-11-13 04:58:35 -05:00
|
|
|
this._proxy.BluetoothAirplaneMode = !this._proxy.BluetoothAirplaneMode;
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2014-11-13 04:58:35 -05:00
|
|
|
this._item.menu.addMenuItem(this._toggleItem);
|
|
|
|
|
2013-07-15 13:51:42 -04:00
|
|
|
this._item.menu.addSettingsAction(_("Bluetooth Settings"), 'gnome-bluetooth-panel.desktop');
|
2013-09-21 12:57:41 -04:00
|
|
|
this.menu.addMenuItem(this._item);
|
2010-07-24 07:57:53 -04:00
|
|
|
|
2020-04-03 14:27:34 -04:00
|
|
|
this._syncId = 0;
|
2020-04-03 14:44:41 -04:00
|
|
|
this._adapter = null;
|
2020-04-03 14:27:34 -04:00
|
|
|
|
2013-11-26 08:46:13 -05:00
|
|
|
this._client = new GnomeBluetooth.Client();
|
|
|
|
this._model = this._client.get_model();
|
2020-04-03 14:27:34 -04:00
|
|
|
this._model.connect('row-deleted', this._queueSync.bind(this));
|
|
|
|
this._model.connect('row-changed', this._queueSync.bind(this));
|
2017-12-01 19:27:35 -05:00
|
|
|
this._model.connect('row-inserted', this._sync.bind(this));
|
|
|
|
Main.sessionMode.connect('updated', this._sync.bind(this));
|
2013-07-15 13:51:42 -04:00
|
|
|
this._sync();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2010-07-24 07:57:53 -04:00
|
|
|
|
2020-04-03 14:44:41 -04:00
|
|
|
_setHadSetupDevices(value) {
|
|
|
|
if (this._hadSetupDevices === value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this._hadSetupDevices = value;
|
|
|
|
global.settings.set_boolean(
|
|
|
|
HAD_BLUETOOTH_DEVICES_SETUP, this._hadSetupDevices);
|
|
|
|
}
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_getDefaultAdapter() {
|
2013-11-26 08:46:13 -05:00
|
|
|
let [ret, iter] = this._model.get_iter_first();
|
|
|
|
while (ret) {
|
|
|
|
let isDefault = this._model.get_value(iter,
|
|
|
|
GnomeBluetooth.Column.DEFAULT);
|
2014-11-13 04:58:35 -05:00
|
|
|
let isPowered = this._model.get_value(iter,
|
|
|
|
GnomeBluetooth.Column.POWERED);
|
|
|
|
if (isDefault && isPowered)
|
2013-11-26 08:46:13 -05:00
|
|
|
return iter;
|
|
|
|
ret = this._model.iter_next(iter);
|
|
|
|
}
|
|
|
|
return null;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-11-26 08:46:13 -05:00
|
|
|
|
2020-03-30 04:48:06 -04:00
|
|
|
_getDeviceInfos(adapter) {
|
2013-11-26 08:46:13 -05:00
|
|
|
if (!adapter)
|
2020-03-30 04:48:06 -04:00
|
|
|
return [];
|
2013-11-26 08:46:13 -05:00
|
|
|
|
2020-03-30 04:48:06 -04:00
|
|
|
let deviceInfos = [];
|
2013-11-26 08:46:13 -05:00
|
|
|
let [ret, iter] = this._model.iter_children(adapter);
|
|
|
|
while (ret) {
|
2020-03-30 04:48:06 -04:00
|
|
|
const isPaired = this._model.get_value(iter,
|
|
|
|
GnomeBluetooth.Column.PAIRED);
|
|
|
|
const isTrusted = this._model.get_value(iter,
|
|
|
|
GnomeBluetooth.Column.TRUSTED);
|
|
|
|
|
2020-04-02 06:42:41 -04:00
|
|
|
if (isPaired || isTrusted) {
|
|
|
|
deviceInfos.push({
|
|
|
|
connected: this._model.get_value(iter,
|
|
|
|
GnomeBluetooth.Column.CONNECTED),
|
|
|
|
name: this._model.get_value(iter,
|
|
|
|
GnomeBluetooth.Column.ALIAS),
|
|
|
|
});
|
|
|
|
}
|
2020-03-30 04:48:06 -04:00
|
|
|
|
2013-11-26 08:46:13 -05:00
|
|
|
ret = this._model.iter_next(iter);
|
|
|
|
}
|
2014-11-13 04:58:35 -05:00
|
|
|
|
2020-03-30 04:48:06 -04:00
|
|
|
return deviceInfos;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-11-26 08:46:13 -05:00
|
|
|
|
2020-04-03 14:27:34 -04:00
|
|
|
_queueSync() {
|
|
|
|
if (this._syncId)
|
|
|
|
return;
|
|
|
|
this._syncId = GLib.idle_add(GLib.PRIORITY_DEFAULT, () => {
|
|
|
|
this._syncId = 0;
|
|
|
|
this._sync();
|
|
|
|
return GLib.SOURCE_REMOVE;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_sync() {
|
2020-03-30 04:48:06 -04:00
|
|
|
let adapter = this._getDefaultAdapter();
|
|
|
|
let devices = this._getDeviceInfos(adapter);
|
|
|
|
const connectedDevices = devices.filter(dev => dev.connected);
|
|
|
|
const nConnectedDevices = connectedDevices.length;
|
|
|
|
|
2020-04-03 14:44:41 -04:00
|
|
|
if (adapter && this._adapter)
|
|
|
|
this._setHadSetupDevices(devices.length > 0);
|
|
|
|
this._adapter = adapter;
|
|
|
|
|
2014-03-15 03:53:54 -04:00
|
|
|
let sensitive = !Main.sessionMode.isLocked && !Main.sessionMode.isGreeter;
|
2010-07-24 07:57:53 -04:00
|
|
|
|
2014-03-15 03:53:54 -04:00
|
|
|
this.menu.setSensitive(sensitive);
|
2014-11-13 04:58:35 -05:00
|
|
|
this._indicator.visible = nConnectedDevices > 0;
|
2010-07-24 07:57:53 -04:00
|
|
|
|
2014-11-13 04:58:35 -05:00
|
|
|
// Remember if there were setup devices and show the menu
|
|
|
|
// if we've seen setup devices and we're not hard blocked
|
2020-04-03 08:34:21 -04:00
|
|
|
if (this._hadSetupDevices)
|
2019-04-12 17:00:49 -04:00
|
|
|
this._item.visible = !this._proxy.BluetoothHardwareAirplaneMode;
|
2014-11-13 04:58:35 -05:00
|
|
|
else
|
2019-04-12 17:00:49 -04:00
|
|
|
this._item.visible = this._proxy.BluetoothHasAirplaneMode && !this._proxy.BluetoothAirplaneMode;
|
2014-11-13 04:58:35 -05:00
|
|
|
|
2020-03-28 14:56:20 -04:00
|
|
|
if (nConnectedDevices > 1)
|
2015-08-06 05:19:37 -04:00
|
|
|
/* Translators: this is the number of connected bluetooth devices */
|
2020-03-28 14:56:20 -04:00
|
|
|
this._item.label.text = ngettext('%d Connected", "%d Connected', nConnectedDevices).format(nConnectedDevices);
|
|
|
|
else if (nConnectedDevices === 1)
|
|
|
|
this._item.label.text = connectedDevices[0].name;
|
2020-03-30 04:48:06 -04:00
|
|
|
else if (adapter === null)
|
2020-03-28 14:56:20 -04:00
|
|
|
this._item.label.text = _('Bluetooth Off');
|
2014-01-28 15:47:37 -05:00
|
|
|
else
|
2020-03-28 14:56:20 -04:00
|
|
|
this._item.label.text = _('Bluetooth On');
|
2014-11-13 04:58:35 -05:00
|
|
|
|
2020-03-28 14:56:20 -04:00
|
|
|
this._toggleItem.label.text = this._proxy.BluetoothAirplaneMode ? _('Turn On') : _('Turn Off');
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2019-07-16 05:24:13 -04:00
|
|
|
});
|