diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-11-11 18:47:33 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-11-11 18:47:33 +0100 |
commit | f1a056923fce6dd0ebd778d381794d3090a62e8c (patch) | |
tree | bdec089a7e8046bec17d23c64d5c4ee4a356a1a0 /src/screensaver.vala | |
parent | 0b098a24e80acb1bd7ffeed90c6c821f8420b84a (diff) | |
parent | ab6556e393162fff0e0e0c80a9fff689b4e2ca05 (diff) |
Update upstream source from tag 'upstream/3.26.2'
Update to upstream version '3.26.2'
with Debian dir f1471e23cdedd43d9950b3078b7120e6c8510a8f
Diffstat (limited to 'src/screensaver.vala')
-rw-r--r-- | src/screensaver.vala | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/screensaver.vala b/src/screensaver.vala new file mode 100644 index 0000000..ef2dfb8 --- /dev/null +++ b/src/screensaver.vala @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2017 Stéphane Fillion + * Authors: Stéphane Fillion <stphanef3724@gmail.com> + * + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. See http://www.gnu.org/copyleft/gpl.html the full text of the + * license. + */ + +[DBus (name = "org.freedesktop.ScreenSaver")] +public interface FreedesktopScreensaver : Object +{ + public static FreedesktopScreensaver get_proxy () throws IOError + { + return Bus.get_proxy_sync (BusType.SESSION, "org.freedesktop.ScreenSaver", "/org/freedesktop/ScreenSaver"); + } + + [DBus (name = "Inhibit")] + public abstract uint32 inhibit (string application_name, string reason_for_inhibit) throws IOError; + + [DBus (name = "UnInhibit")] + public abstract void uninhibit (uint32 cookie) throws IOError; +} |