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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
<!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="com.cutefish.Theme">
<method name="setDarkMode">
<arg name="darkMode" type="b" direction="in"/>
</method>
<method name="setDarkModeDimsWallpaer">
<arg name="darkModeDimsWallpaer" type="b" direction="in"/>
</method>
<method name="setSystemFont">
<arg name="fontFamily" type="s" direction="in"/>
</method>
<method name="setSystemFixedFont">
<arg name="fontFamily" type="s" direction="in"/>
</method>
<method name="setSystemFontPointSize">
<arg name="fontSize" type="d" direction="in"/>
</method>
<method name="setDevicePixelRatio">
<arg name="ratio" type="d" direction="in"/>
</method>
<method name="setWallpaper">
<arg name="path" type="s" direction="in"/>
</method>
<method name="setAccentColor">
<arg name="accentColor" type="i" direction="in"/>
</method>
<method name="setBackgroundColor">
<arg name="color" type="s" direction="in"/>
</method>
<method name="setBackgroundType">
<arg name="type" type="i" direction="in"/>
</method>
<method name="setCursorTheme">
<arg name="type" type="s" direction="in"/>
</method>
<method name="setCursorSize">
<arg name="type" type="i" direction="in"/>
</method>
<method name="setIconTheme">
<arg name="type" type="s" direction="in"/>
</method>
<method name="applyXResources"></method>
<method name="updateFontConfig"></method>
<property name="isDarkMode" type="b" access="read"/>
<property name="darkModeDimsWallpaer" type="b" access="read"/>
<property name="systemFont" type="s" access="read"/>
<property name="systemFixedFont" type="s" access="read"/>
<property name="systemFontPointSize" type="d" access="read"/>
<property name="devicePixelRatio" type="d" access="read"/>
<property name="wallpaper" type="s" access="read"/>
<property name="accentColor" type="i" access="read"/>
<property name="backgroundType" type="i" access="read"/>
<property name="backgroundColor" type="s" access="read"/>
<property name="cursorTheme" type="s" access="read"/>
<property name="cursorSize" type="i" access="read"/>
<property name="iconTheme" type="s" access="read"/>
<signal name="darkModeChanged">
<arg type="b"/>
</signal>
<signal name="wallpaperChanged">
<arg type="s"/>
</signal>
<signal name="darkModeDimsWallpaerChanged">
</signal>
<signal name="accentColorChanged">
<arg type="i"/>
</signal>
<signal name="backgroundTypeChanged"></signal>
<signal name="backgroundColorChanged"></signal>
<signal name="cursorThemeChanged"></signal>
<signal name="cursorSizeChanged"></signal>
<signal name="iconThemeChanged"></signal>
<signal name="systemFontPointSizeChanged"></signal>
<signal name="systemFontChanged"></signal>
</interface>
</node>
|