forked from piggz/libwatchfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
org.nemomobile.voicecall.VoiceCallManager.xml
53 lines (52 loc) · 1.89 KB
/
org.nemomobile.voicecall.VoiceCallManager.xml
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
<!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.nemomobile.voicecall.VoiceCallManager">
<property name="providers" type="as" access="read"/>
<property name="voiceCalls" type="as" access="read"/>
<property name="activeVoiceCall" type="s" access="read"/>
<property name="audioMode" type="s" access="readwrite"/>
<property name="isAudioRouted" type="b" access="readwrite"/>
<property name="isMicrophoneMuted" type="b" access="readwrite"/>
<property name="isSpeakerMuted" type="b" access="readwrite"/>
<property name="totalOutgoingCallDuration" type="i" access="read"/>
<property name="totalIncomingCallDuration" type="i" access="read"/>
<signal name="error">
<arg name="message" type="s" direction="out"/>
</signal>
<signal name="providersChanged">
</signal>
<signal name="voiceCallsChanged">
</signal>
<signal name="activeVoiceCallChanged">
</signal>
<signal name="audioModeChanged">
</signal>
<signal name="audioRoutedChanged">
</signal>
<signal name="microphoneMutedChanged">
</signal>
<signal name="speakerMutedChanged">
</signal>
<signal name="totalOutgoingCallDurationChanged">
</signal>
<signal name="totalIncomingCallDurationChanged">
</signal>
<method name="dial">
<arg type="b" direction="out"/>
<arg name="provider" type="s" direction="in"/>
<arg name="msisdn" type="s" direction="in"/>
</method>
<method name="silenceRingtone">
</method>
<method name="startDtmfTone">
<arg type="b" direction="out"/>
<arg name="tone" type="s" direction="in"/>
</method>
<method name="stopDtmfTone">
<arg type="b" direction="out"/>
</method>
<method name="resetCallDurationCounters">
</method>
</interface>
</node>