blob: ef2dfb847b6bc21bc374472270d8d24c880d4f53 (
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
|
/*
* 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;
}
|