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 26 27 28 29 30 31
|
<!DOCTYPE node PUBLIC
'-//freedesktop//DTD D-BUS Object Introspection 1.0//EN'
'http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd'>
<node>
<interface name="org.gnome.Mutter.ColorManager">
<method name="CalibrateMonitor">
<arg name="connector" type="s" direction="in" />
<arg name="session" type="o" direction="out" />
</method>
</interface>
<interface name="org.gnome.Mutter.ColorManager.Calibration">
<method name="SetCrtcGammaLut">
<arg name="red" direction="in" type="aq" />
<arg name="green" direction="in" type="aq" />
<arg name="blue" direction="in" type="aq" />
</method>
<method name="Stop"/>
<property name="GammaLutSize" type="u" access="read" />
<signal name="Stopped" />
</interface>
</node>
|