blob: a6ada0e511fcaf2812968f8407a1864a026bb92b (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Introspection 0.1//EN"
"http://www.freedesktop.org/software/dbus/introspection.dtd">
<!--
Copyright © 2011 Christian Persch
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope conf it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<node>
<interface name="org.gnome.Terminal.Factory0">
<annotation name="org.gtk.GDBus.C.Name" value="Factory" />
<method name="CreateInstance">
<arg type="a{sv}" name="options" direction="in" />
<arg type="o" name="receiver" direction="out" />
</method>
</interface>
<interface name="org.gnome.Terminal.Terminal0">
<annotation name="org.gtk.GDBus.C.Name" value="Receiver" />
<method name="Exec">
<annotation name="org.gtk.GDBus.C.UnixFD" value="true" />
<arg type="a{sv}" name="options" direction="in" />
<arg type="aay" name="arguments" direction="in">
<annotation name="org.gtk.GDBus.C.ForceGVariant" value="true" />
</arg>
</method>
<signal name="ChildExited">
<arg type="i" name="exit_code" direction="in" />
</signal>
</interface>
</node>
|