2011-09-28 13:16:26 +00:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2019-01-31 14:07:06 +00:00
|
|
|
/* exported PresenceStatus, Presence, Inhibitor, SessionManager */
|
2010-04-29 17:13:20 +00:00
|
|
|
|
2011-08-16 12:24:39 +00:00
|
|
|
const Gio = imports.gi.Gio;
|
2010-04-29 17:13:20 +00:00
|
|
|
|
2018-09-06 00:55:20 +00:00
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
|
|
|
const PresenceIface = loadInterfaceXML('org.gnome.SessionManager.Presence');
|
2010-04-29 17:13:20 +00:00
|
|
|
|
2017-07-18 17:47:27 +00:00
|
|
|
var PresenceStatus = {
|
2010-04-29 17:13:20 +00:00
|
|
|
AVAILABLE: 0,
|
|
|
|
INVISIBLE: 1,
|
|
|
|
BUSY: 2,
|
2019-08-20 21:43:54 +00:00
|
|
|
IDLE: 3,
|
2010-04-29 17:13:20 +00:00
|
|
|
};
|
|
|
|
|
2011-08-16 12:24:39 +00:00
|
|
|
var PresenceProxy = Gio.DBusProxy.makeProxyWrapper(PresenceIface);
|
|
|
|
function Presence(initCallback, cancellable) {
|
|
|
|
return new PresenceProxy(Gio.DBus.session, 'org.gnome.SessionManager',
|
|
|
|
'/org/gnome/SessionManager/Presence', initCallback, cancellable);
|
2010-04-29 17:13:20 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 15:30:15 +00:00
|
|
|
// Note inhibitors are immutable objects, so they don't
|
|
|
|
// change at runtime (changes always come in the form
|
|
|
|
// of new inhibitors)
|
2018-09-06 00:55:20 +00:00
|
|
|
const InhibitorIface = loadInterfaceXML('org.gnome.SessionManager.Inhibitor');
|
2011-08-16 12:24:39 +00:00
|
|
|
var InhibitorProxy = Gio.DBusProxy.makeProxyWrapper(InhibitorIface);
|
|
|
|
function Inhibitor(objectPath, initCallback, cancellable) {
|
|
|
|
return new InhibitorProxy(Gio.DBus.session, 'org.gnome.SessionManager', objectPath, initCallback, cancellable);
|
2011-01-06 15:30:15 +00:00
|
|
|
}
|
|
|
|
|
2011-03-12 20:34:01 +00:00
|
|
|
// Not the full interface, only the methods we use
|
2018-09-06 00:55:20 +00:00
|
|
|
const SessionManagerIface = loadInterfaceXML('org.gnome.SessionManager');
|
2011-08-16 12:24:39 +00:00
|
|
|
var SessionManagerProxy = Gio.DBusProxy.makeProxyWrapper(SessionManagerIface);
|
|
|
|
function SessionManager(initCallback, cancellable) {
|
|
|
|
return new SessionManagerProxy(Gio.DBus.session, 'org.gnome.SessionManager', '/org/gnome/SessionManager', initCallback, cancellable);
|
2011-03-12 20:34:01 +00:00
|
|
|
}
|