summaryrefslogtreecommitdiff
path: root/extensions/Logger.xml
blob: 0dead83de9d99d51e26c50f37893f7ea7787242b (plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" ?>
<node name="/Logger"
  xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
  <tp:copyright>Copyright © 2009-2011 Collabora Ltd.</tp:copyright>
  <tp:license xmlns="http://www.w3.org/1999/xhtml">
    <p>This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.</p>

<p>This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.</p>

<p>You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</p>
  </tp:license>
  <interface name="org.freedesktop.Telepathy.Logger.DRAFT"
    tp:causes-havoc="experimental">
    <tp:added version="0.3">(as a draft)</tp:added>

    <tp:docstring>
      An interface for requesting information from the Telepathy Logger
      service.
    </tp:docstring>

    <method name="GetFavouriteContacts"
            tp:name-for-bindings="Get_Favourite_Contacts">
      <arg direction="out" name="Favourite_Contacts" type="a(oas)">
        <tp:docstring>
        The favourite contacts, as an array of TpAccounts and their contact
        identifiers.
        </tp:docstring>
      </arg>

      <tp:docstring>
        Returns the favourite contacts.
      </tp:docstring>
    </method>

    <method name="AddFavouriteContact"
            tp:name-for-bindings="Add_Favourite_Contact">
      <arg direction="in" name="Account" type="o" tp:type="Account">
        <tp:docstring>
        The object path for the TpAccount to which the contact belongs
        </tp:docstring>
      </arg>

      <arg direction="in" name="Identifier" type="s">
        <tp:docstring>
        The favourite contact's identifier
        </tp:docstring>
      </arg>

      <tp:docstring>
        Add a contact's designation as a favourite. This method may not be
        called until the service is ready. See the <tp:dbus-ref
        namespace="org.freedesktop.Telepathy.Logger.DRAFT">FavouriteContactsReady</tp:dbus-ref> signal and <tp:dbus-ref
        namespace="org.freedesktop.Telepathy.Logger.DRAFT">FavouriteContactsIsReady</tp:dbus-ref> property.
      </tp:docstring>
    </method>

    <method name="RemoveFavouriteContact"
            tp:name-for-bindings="Remove_Favourite_Contact">
      <arg direction="in" name="Account" type="o" tp:type="Account">
        <tp:docstring>
        The object path for the TpAccount to which the contact belongs
        </tp:docstring>
      </arg>

      <arg direction="in" name="Identifier" type="s">
        <tp:docstring>
        The favourite contact's identifier
        </tp:docstring>
      </arg>

      <tp:docstring>
        Remove a contact's designation as a favourite. This method may not be
        called until the service is ready. See the <tp:dbus-ref
        namespace="org.freedesktop.Telepathy.Logger.DRAFT">FavouriteContactsReady</tp:dbus-ref> signal and <tp:dbus-ref
        namespace="org.freedesktop.Telepathy.Logger.DRAFT">FavouriteContactsIsReady</tp:dbus-ref> property.
      </tp:docstring>
    </method>

    <signal name="FavouriteContactsChanged"
      tp:name-for-bindings="Favourite_Contacts_Changed">
      <tp:docstring>
        The set of favourite contacts has changed.
      </tp:docstring>

      <arg name="Account" type="o" tp:type="Account">
        <tp:docstring>
          An account associated with the contact.
        </tp:docstring>
      </arg>

      <arg name="Added" type="as">
        <tp:docstring>
        List of contact identifiers of contacts which are now favourites.
        </tp:docstring>
      </arg>

      <arg name="Removed" type="as">
        <tp:docstring>
        List of contact identifiers of contacts which are no longer favourites.
        </tp:docstring>
      </arg>
    </signal>

  </interface>
</node>
<!-- vim:set sw=2 sts=2 et ft=xml: -->