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
|
<?xml version="1.0" encoding="UTF-8" ?>
<!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.gnome.Nautilus.FileOperations2">
<annotation name="org.gtk.GDBus.C.Name" value="Nautilus2Gen" />
<method name="CopyURIs">
<arg type="as" name="sources" direction="in" />
<arg type="s" name="destination" direction="in" />
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<method name="MoveURIs">
<arg type="as" name="sources" direction="in" />
<arg type="s" name="destination" direction="in" />
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<method name="EmptyTrash">
<arg type="b" name="ask_confirmation" direction="in" />
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<method name="TrashURIs">
<arg type="as" name="uris" direction="in" />
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<method name="DeleteURIs">
<arg type="as" name="uris" direction="in"/>
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<method name="CreateFolder">
<arg type="s" name="parent_uri" direction="in" />
<arg type="s" name="new_folder_name" direction="in" />
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<method name="RenameURI">
<arg type="s" name="uri" direction="in" />
<arg type="s" name="new_name" direction="in" />
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<method name="Undo">
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<method name="Redo">
<arg type="a{sv}" name="platform_data" direction="in" />
</method>
<property name="UndoStatus" type="i" access="read" />
</interface>
</node>
|