diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2015-05-22 12:20:27 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2015-05-22 12:20:27 -0500 |
commit | b87700142a5fdcfe08d64b2712b1d964dcfbb087 (patch) | |
tree | 3f9420f36cb9fe30d16d5d7dd89f168f78630742 /src/com.canonical.powerd.xml | |
parent | a7c68256d91b3652a7101c2fa54e4115044df1e7 (diff) | |
parent | 3c2d328731ce6e776192af28e1e17fcef6dda29c (diff) | |
download | ayatana-indicator-power-b87700142a5fdcfe08d64b2712b1d964dcfbb087.tar.gz ayatana-indicator-power-b87700142a5fdcfe08d64b2712b1d964dcfbb087.tar.bz2 ayatana-indicator-power-b87700142a5fdcfe08d64b2712b1d964dcfbb087.zip |
when powerd adjusts the system brightness, adjust the brightness slider appropriately.
Diffstat (limited to 'src/com.canonical.powerd.xml')
-rw-r--r-- | src/com.canonical.powerd.xml | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/src/com.canonical.powerd.xml b/src/com.canonical.powerd.xml new file mode 100644 index 0000000..b5b4ac4 --- /dev/null +++ b/src/com.canonical.powerd.xml @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8"?> +<node name="/"> + <interface name="com.canonical.powerd"> + <!-- Properties --> + + <property name="brightness" type="i" access="readwrite"> + </property> + + + <!-- Functions --> + <method name="requestSysState"> + <arg type="s" name="name" direction="in" /> + <arg type="i" name="state" direction="in" /> + <arg type="s" name="cookie" direction="out" /> + </method> + + <method name="clearSysState"> + <arg type="s" name="cookie" direction="in" /> + </method> + + <method name="requestWakeup"> + <arg type="s" name="name" direction="in" /> + <arg type="t" name="time" direction="in" /> + <arg type="s" name="cookie" direction="out" /> + </method> + + <method name="enableProximityHandling"> + <arg type="s" name="name" direction="in" /> + </method> + + <method name="disableProximityHandling"> + <arg type="s" name="name" direction="in" /> + </method> + + <method name="clearWakeup"> + <arg type="s" name="cookie" direction="in" /> + </method> + + <method name="registerClient"> + <arg type="s" name="name" direction="in" /> + </method> + + <method name="unregisterClient"> + <arg type="s" name="name" direction="in" /> + </method> + + <method name="ackStateChange"> + <arg type="i" name="state" direction="in" /> + </method> + + <!-- User settings --> + <method name="userAutobrightnessEnable"> + <arg type="b" name="enable" direction="in" /> + </method> + + <method name="getBrightnessParams"> + <!-- Returns min, max, and default brighness and whether or not + autobrightness is supported, in that order --> + <arg type="(iiiib)" name="params" direction="out" /> + </method> + + <method name="setUserBrightness"> + <arg type="i" name="brightness" direction="in" /> + </method> + + <!-- for debug/testing --> + <method name="listSysRequests"> + <arg type="a(ssi)" name="requestList" direction="out" /> + </method> + + <method name="getSysRequestStats"> + <arg type="a(ssuttt)" name="requestStats" direction="out" /> + </method> + + <!-- Signals --> + <signal name="SysPowerStateChange"> + <arg type="i" name="sysState" direction="out" /> + </signal> + + <signal name="Wakeup"> + </signal> + + </interface> +</node> |