]> git.0d.be Git - empathy.git/commitdiff
generate GDBus API for the chat manager
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 6 Feb 2014 10:41:52 +0000 (11:41 +0100)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 12 Feb 2014 07:55:12 +0000 (08:55 +0100)
Plan is to get rid of our own code gen system in next.

https://bugzilla.gnome.org/show_bug.cgi?id=723766

src/.gitignore
src/Chat_Manager.xml [new file with mode: 0644]
src/Makefile.am

index 52be330ef4e54d4ca2f5480cfd6de79126113a41..2be662ac6e6cc6a151c3a677ef9a789630bd5122 100644 (file)
@@ -8,3 +8,5 @@ empathy-chat
 empathy-chat-resources.c
 empathy-chat-resources.h
 src-marshal.*
 empathy-chat-resources.c
 empathy-chat-resources.h
 src-marshal.*
+chat-manager-interface.c
+chat-manager-interface.h
diff --git a/src/Chat_Manager.xml b/src/Chat_Manager.xml
new file mode 100644 (file)
index 0000000..15ea951
--- /dev/null
@@ -0,0 +1,36 @@
+<?xml version="1.0" ?>
+<node name="/Chat_Manager"
+  xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
+  <tp:copyright>Copyright (C) 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.gnome.Empathy.ChatManager">
+
+    <method name="UndoClosedChat" tp:name-for-bindings="Undo_Closed_Chat">
+      <arg direction="in" type="x" name="User_Time">
+        <tp:docstring>
+          The user action time for the event.
+        </tp:docstring>
+      </arg>
+      <tp:docstring>
+        Ask the chat manager to undo closing a tab. If there is no tab
+        to be opened then return successfully.
+      </tp:docstring>
+    </method>
+
+  </interface>
+</node>
+<!-- vim:set sw=2 sts=2 et ft=xml: -->
index e7644774e3be78846adfacef9d0e3f6ddc8eca0f..6f96880a60f1063ffaf104b0c0dc333d877501e4 100644 (file)
@@ -203,8 +203,18 @@ dist_man_MANS =                    \
        empathy.1 \
        empathy-accounts.1
 
        empathy.1 \
        empathy-accounts.1
 
+chat-manager-interface.c: chat-manager-interface.h
+chat-manager-interface.h: Makefile.am Chat_Manager.xml
+       gdbus-codegen \
+               --interface-prefix org.gnome.Empathy. \
+               --c-namespace EmpathyGen \
+               --generate-c-code chat-manager-interface \
+               Chat_Manager.xml
+
 BUILT_SOURCES = \
        $(nodist_empathy_chat_SOURCES) \
 BUILT_SOURCES = \
        $(nodist_empathy_chat_SOURCES) \
+       chat-manager-interface.c \
+       chat-manager-interface.h \
        $(NULL)
 
 CLEANFILES = $(BUILT_SOURCES)
        $(NULL)
 
 CLEANFILES = $(BUILT_SOURCES)