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
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
<interface name="org.ayatana.indicator.datetime.AlarmProperties">
<property name="DefaultSound" type="s" access="readwrite">
<doc:doc>
<doc:description>
<doc:para>The default alarm sound's filename.</doc:para>
</doc:description>
</doc:doc>
</property>
<property name="HapticFeedback" type="s" access="readwrite">
<doc:doc>
<doc:description>
<doc:para>What kind of haptic feedback, if any, to trigger with an alarm.</doc:para>
<doc:para>Two modes are currently supported: 'pulse', 'none'.</doc:para>
</doc:description>
</doc:doc>
</property>
<property name="DefaultVolume" type="i" access="readwrite">
<doc:doc>
<doc:description>
<doc:para>How loudly to play alarm sounds. [Range: 1-100]</doc:para>
</doc:description>
</doc:doc>
</property>
<property name="Duration" type="i" access="readwrite">
<doc:doc>
<doc:description>
<doc:para>How long an alarm's sound should be looped.</doc:para>
</doc:description>
</doc:doc>
</property>
<property name="SnoozeDuration" type="i" access="readwrite">
<doc:doc>
<doc:description>
<doc:para>How many minutes to wait when the Snooze button is pressed. [Range: 1-15]</doc:para>
</doc:description>
</doc:doc>
</property>
</interface>
</node>
|