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
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node xmlns:dox="http://www.ayatana.org/dbus/dox.dtd">
<dox:d><![CDATA[
@mainpage
An interface to the phone application.
]]></dox:d>
<interface name="com.canonical.PhoneApp" xmlns:dox="http://www.ayatana.org/dbus/dox.dtd">
<dox:d>
An interface to the phone application.
</dox:d>
<method name="ShowMessages">
<dox:d><![CDATA[
Request to open the messages tab.
]]></dox:d>
<arg name="number" type="s" direction="in"/>
</method>
<method name="ShowMessage">
<dox:d><![CDATA[
Request to open the messages tab and show the given message.
]]></dox:d>
<arg name="messageId" type="s" direction="in"/>
</method>
<method name="NewMessage">
<dox:d><![CDATA[
Request to open the messages tab to send a new message.
]]></dox:d>
</method>
<method name="SendMessage">
<dox:d><![CDATA[
Request to send a message to a contact.
]]></dox:d>
<arg name="number" type="s" direction="in"/>
<arg name="message" type="s" direction="in"/>
</method>
<method name="ShowVoicemail">
<dox:d><![CDATA[
Request to open the voicemail tab.
]]></dox:d>
</method>
<method name="CallNumber">
<dox:d><![CDATA[
Request to call the phone number.
]]></dox:d>
<arg name="number" type="s" direction="in"/>
</method>
<method name="SendAppMessage">
<dox:d><![CDATA[
Send a message to the running application.
]]></dox:d>
<arg name="message" type="s" direction="in"/>
</method>
</interface>
</node>
|