summaryrefslogtreecommitdiff
path: root/thunar/thunar-dbus-service-infos.xml
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis@xfce.org>2009-08-21 17:47:20 +0200
committerJannis Pohlmann <jannis@xfce.org>2009-08-21 17:47:20 +0200
commit1f5eed407c762bf7ca118e377f91c6cb1e63eb31 (patch)
treed0c1b60db807e336b28ccaf8edc6d2bfeff68e76 /thunar/thunar-dbus-service-infos.xml
parent116819a0d9f258df20c76cd336723628a3b5798b (diff)
downloadthunar-1f5eed407c762bf7ca118e377f91c6cb1e63eb31.tar.gz
Merge the migration-to-gio branch into master.
I'm 100% sure I can implement all ThunarVFS thumbnailers on top of tumbler in time for the Xfce 4.8 release. Same about the volume monitor backend for GIO to avoid a GVfs dependency. So why not merge the GIO branch now? Not much to say about this merge. It replaces ThunarVFS with GIO inside Thunar and Thunarx, something I've been working on over the past few months. It currently requires GVfs for volume monitoring and also (optionally) depends on tumbler for thumbnail generation. Enjoy. All .po files are going to be updated in the next commit. Conflicts: ChangeLog INSTALL acinclude.m4 configure.in.in plugins/thunar-wallpaper/twp-provider.c po-doc/ChangeLog po/ChangeLog po/LINGUAS thunar-vfs/thunar-vfs-1.pc.in thunar-vfs/thunar-vfs-thumb.c thunar/thunar-templates-action.c
Diffstat (limited to 'thunar/thunar-dbus-service-infos.xml')
-rw-r--r--thunar/thunar-dbus-service-infos.xml16
1 files changed, 11 insertions, 5 deletions
diff --git a/thunar/thunar-dbus-service-infos.xml b/thunar/thunar-dbus-service-infos.xml
index a45211d4..c2c01c74 100644
--- a/thunar/thunar-dbus-service-infos.xml
+++ b/thunar/thunar-dbus-service-infos.xml
@@ -105,9 +105,9 @@
<!--
Launch (uri : STRING, display : STRING) : VOID
- uri : either a file:-URI or an absolute path.
- display : the screen on which to launch the file or ""
- to use the default screen of the file manager.
+ uri : either a file:-URI or an absolute path.
+ display : the screen on which to launch the file or ""
+ to use the default screen of the file manager.
-->
<method name="Launch">
<arg direction="in" name="uri" type="s" />
@@ -219,7 +219,7 @@
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="thunar_dbus_service" />
<!--
- BulkRename (working-directory : STRING, filenames : ARRAY OF STRING, standalone : BOOLEAN, display : STRING) : VOID
+ BulkRename (working-directory : STRING, filenames : ARRAY OF STRING, standalone : BOOLEAN, display : STRING, startup-id : STRING) : VOID
working-directory : the default directory for the "Add Files" dialog of the
bulk rename window. May also be the empty string, in
@@ -239,16 +239,19 @@
bunch of selected files will be renamed.
display : the screen on which to launch the filenames or ""
to use the default screen of the file manager.
+ startup-id : the DESKTOP_STARTUP_ID environment variable for properly
+ handling startup notification and focus stealing.
-->
<method name="BulkRename">
<arg direction="in" name="working-directory" type="s" />
<arg direction="in" name="filenames" type="as" />
<arg direction="in" name="standalone" type="b" />
<arg direction="in" name="display" type="s" />
+ <arg direction="in" name="startup-id" type="s" />
</method>
<!--
- LaunchFiles (working-directory : STRING, filenames : ARRAY OF STRING, display : STRING) : VOID
+ LaunchFiles (working-directory : STRING, filenames : ARRAY OF STRING, display : STRING, startup-id : STRING) : VOID
working-directory : the directory, relative to which filenames should
be interpreted.
@@ -257,11 +260,14 @@
to the working-directory.
display : the screen on which to launch the filenames or ""
to use the default screen of the file manager.
+ startup-id : the DESKTOP_STARTUP_ID environment variable for properly
+ handling startup notification and focus stealing.
-->
<method name="LaunchFiles">
<arg direction="in" name="working-directory" type="s" />
<arg direction="in" name="filenames" type="as" />
<arg direction="in" name="display" type="s" />
+ <arg direction="in" name="startup-id" type="s" />
</method>
<!--