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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
|
<?xml version="1.0"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
[
<!ENTITY ThunarxFileInfo SYSTEM "xml/thunarx-file-info.xml">
<!ENTITY ThunarxMenu SYSTEM "xml/thunarx-menu.xml">
<!ENTITY ThunarxMenuItem SYSTEM "xml/thunarx-menu-item.xml">
<!ENTITY ThunarxMenuProvider SYSTEM "xml/thunarx-menu-provider.xml">
<!ENTITY ThunarxPreferencesProvider SYSTEM "xml/thunarx-preferences-provider.xml">
<!ENTITY ThunarxPropertyPage SYSTEM "xml/thunarx-property-page.xml">
<!ENTITY ThunarxPropertyPageProvider SYSTEM "xml/thunarx-property-page-provider.xml">
<!ENTITY ThunarxProviderFactory SYSTEM "xml/thunarx-provider-factory.xml">
<!ENTITY ThunarxProviderPlugin SYSTEM "xml/thunarx-provider-plugin.xml">
<!ENTITY ThunarxRenamer SYSTEM "xml/thunarx-renamer.xml">
<!ENTITY ThunarxRenamerProvider SYSTEM "xml/thunarx-renamer-provider.xml">
<!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'">
<!ENTITY % gtkdocentities SYSTEM "xml/gtkdocentities.ent">
%gtkdocentities;
]>
<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
<bookinfo>
<title>thunarx Reference Manual</title>
<releaseinfo>
For &package_string;.
The latest version of this documentation can be found on-line at
<ulink role="online-location" url="https://developer.xfce.org/&package_name;/index.html">https://developer.xfce.org/&package_name;/</ulink>.
</releaseinfo>
<copyright>
<year>2024</year>
<holder>The Xfce Development Team</holder>
</copyright>
</bookinfo>
<part id="thunarx-overview">
<title>Overview</title>
<para>
The Thunar Extension Framework (<systemitem class="library">thunarx</systemitem>) provides
developers with an easy way to extend the basic functionality provided by
the <ulink type="http" url="https://docs.xfce.org/xfce/thunar/start">Thunar File Manager</ulink>.
The <systemitem class="library">thunarx</systemitem> library includes interfaces that can
be implemented by extensions for various purposes.
</para>
<para>
It is based on the <ulink type="http"
url="https://developer.gnome.org/gobject/unstable/chapter-gtype.html">GLib Dynamic Type
System</ulink> and loads the extensions on demand to reduce the system resources
allocated for the file manager process.
</para>
<sect1 id="thunarx-overview-goals">
<title>Goals</title>
<para>
The Thunar Extension Framework was developed with the following goals in mind:
</para>
<orderedlist>
<listitem>
It should be easy to extend the functionality of the file manager in certain
ways.
</listitem>
<listitem>
The internals of the file manager should be hidden from the extensions to be
able to maintain API/ABI compatibility for extensions over various major
releases of the file manager.
</listitem>
<listitem>
Provide basic compatibility with the <ulink type="http"
url="https://www.gnome.org/projects/nautilus/">Nautilus</ulink> Extension Framework,
so vendors don't need to write several versions of their extensions for the various
file managers. With the current implementation it should be easy to write a small
wrapper library for generic extensions that can be loaded into both Thunar and
Nautilus.
</listitem>
<listitem>
Extensions should not be loaded into memory until they are actually required to
save system resources. This differs from the way Nautilus handles extensions and
therefore people that already know how to write Nautilus extensions must be
careful when writing extensions for Thunar, because Thunar actually unloads the
extension when it's no longer needed. The <ulink type="http"
url="https://developer.gnome.org/gobject/unstable/GTypePlugin.html">GTypePlugin</ulink>
and <ulink type="http"
url="https://developer.gnome.org/gobject/unstable/GTypeModule.html">GTypeModule</ulink>
sections in the <ulink type="http" url="https://developer.gnome.org/gobject/unstable/">GObject
Reference Manual</ulink> provide details about the handling of dynamic type plugins.
</listitem>
<listitem>
Permit developers to write extensions in languages other than C.
</listitem>
</orderedlist>
</sect1>
</part>
<part id="thunarx-writing-extensions">
<title>Writing Extensions</title>
<para>
This section explains the basic steps required to write an extension for the <ulink type="http"
url="https://docs.xfce.org/xfce/thunar/start">Thunar File Manager</ulink> using the C language interface. It is
just a short introduction and not meant to provide extensive details about the internal workings
of the file manager.
</para>
<sect1 id="thunarx-writing-extensions-basic-concepts">
<title>Basic Concepts</title>
<sect2 id="thunarx-writing-extensions-extensions-and-providers">
<title>Extensions and Providers</title>
<para>
<emphasis>Thunar Extensions</emphasis> are shared libraries that extend the basic functionality
provided by the Thunar File Manager. An extension exports one or more <link
linkend="GObject"><type>GObject</type></link>s, called <emphasis>providers</emphasis>, to Thunar.
</para>
<para>
Providers implement one or more of the <link linkend="GInterface"><type>GInterface</type></link>s included with
the <systemitem class="library">thunarx</systemitem> library. The currently exported interfaces
include the <link linkend="ThunarxMenuProvider"><type>ThunarxMenuProvider</type></link> for adding context menu
items to the file views, the <link
linkend="ThunarxPropertyPageProvider"><type>ThunarxPropertyPageProvider</type></link> for adding pages to the
file properties dialog, the <link
linkend="ThunarxPreferencesProvider"><type>ThunarxPreferencesProvider</type></link> for adding items to the
preferences section of the main menu, and the <link
linkend="ThunarxRenamerProvider"><type>ThunarxRenamerProvider</type></link> for adding renamers to the bulk
rename dialog.
</para>
</sect2>
<sect2 id="thunarx-writing-extensions-thunarxfileinfo">
<title>ThunarxFileInfo</title>
<para>
Thunar passes file references to the provider using <link linkend="ThunarxFileInfo"><type>ThunarxFileInfo</type></link>
objects. The <link linkend="ThunarxFileInfo"><type>ThunarxFileInfo</type></link> interface provides access to the file
information that Thunar has already read - mime type, URI, name, etc. Extensions should use the data from
the <link linkend="ThunarxFileInfo"><type>ThunarxFileInfo</type></link> rather than reading it themselves, to
prevent excessive I/O.
</para>
<para>
There is exactly one <link linkend="ThunarxFileInfo"><type>ThunarxFileInfo</type></link> per file, and it is kept around
for as long as Thunar is interested in the file. Extensions can use this information to manage lifecycles of
its own data - e.g. when the <link linkend="ThunarxFileInfo"><type>ThunarxFileInfo</type></link> goes away, it is safe
for the extension to forget any private data for that file.
</para>
</sect2>
<sect2 id="thunarx-writing-extensions-names">
<title>Names</title>
<para>
Most objects created by the extensions need names, e.g. the <link linkend="ThunarxMenuItem"><type>ThunarxMenuItem</type></link>s
returned from the <link linkend="ThunarxMenuProvider"><type>ThunarxMenuProvider</type></link>s. These names must be
namespaced with the name of the extension. For example the main item returned from the
<application>TexOpenTerminal</application> extension (which can be found in the <filename
role="directory">examples/tex-open-terminal</filename> subdirectory of the Thunar distribution) should be called
<literal>TexOpenTerminal::open-terminal</literal>. The namespace must be global among the providers exported by
a certain extension.
</para>
</sect2>
<sect2 id="thunarx-writing-extensions-types">
<title>Types</title>
<para>
Thunar extensions are loaded as <link linkend="GTypeModule"><type>GTypeModule</type></link>s. This means that all GTypes
created by the extension must be registered with the <link linkend="GTypeModule"><type>GTypeModule</type></link>, using
<link linkend="thunarx-provider-plugin-register-type"><function>thunarx_provider_plugin_register_type()</function></link>
function (or one of the convenience macros like <link linkend="THUNARX-DEFINE-TYPE:CAPS"><function>THUNARX_DEFINE_TYPE()</function></link>)
rather than <link linked="g-type-register-static"><function>g_type_register_static()</function></link>. All types
exported by an extension must be registered in
<link linkend="thunar-extension-initialize"><function>thunar_extension_initialize()</function></link>.
</para>
</sect2>
</sect1>
<sect1 id="thunarx-writing-extensions-getting-started">
<title>Getting Started</title>
<para>
Providers are <link linkend="ThunarxProviderPlugin"><type>ThunarxProviderPlugin</type></link>s loaded from shared libraries
installed in <filename role="directory">$libdir/thunarx-2/</filename>. The shared libraries are linked against the
<systemitem class="library">thunarx-2</systemitem> library.
</para>
<para>
The extensions must provide three public functions, <function>thunar_extension_initialize()</function>,
<function>thunar_extension_shutdown()</function> and <function>thunar_extension_list_types()</function>.
</para>
<para>
<function>thunar_extension_initialize()</function> is passed a <link linkend="ThunarxProviderPlugin"><type>ThunarxProviderPlugin</type></link>
object, and is responsible to register all GTypes required by the extension. <function>thunar_extension_shutdown()</function> should
perform any extension-specific shutdown required prior to unloading the extension. <function>thunar_extension_list_types()</function>
returns an array of GTypes that represent the types of the providers exported by the extension. Thunar will instantiate
objects of those types when needed.
</para>
<example>
<title>Basic Structure of an extension</title>
<programlisting>
#include <gmodule.h>
#include <thunarx/thunarx.h>
static GType type_list[1];
static void
foo_extension_register_type (ThunarxProviderPlugin *plugin)
{
static const GTypeInfo info =
{
sizeof (FooExtensionClass),
NULL,
NULL,
(GClassInitFunc) foo_extension_class_init,
NULL,
NULL,
sizeof (FooExtension),
0,
(GInstanceInitFunc) foo_extension_init,
NULL,
};
type_list[0] = thunarx_provider_plugin_register_type (plugin,
G_TYPE_OBJECT,
"FooExtension",
&info, 0);
/* implement the desired provider interfaces */
}
static GType
foo_extension_get_type (void)
{
return type_list[0];
}
G_MODULE_EXPORT void
thunar_extension_initialize (ThunarxProviderPlugin *plugin)
{
const gchar *mismatch;
/* verify the versions */
mismatch = thunarx_check_version (THUNARX_MAJOR_VERSION,
THUNARX_MINOR_VERSION,
THUNARX_MICRO_VERSION);
if (G_UNLIKELY (mismatch != NULL))
{
g_warning ("Version mismatch: %s", mismatch);
return;
}
foo_extension_register_type (plugin);
}
G_MODULE_EXPORT void
thunar_extension_shutdown (void)
{
/* any extension-specific shutdown */
}
G_MODULE_EXPORT void
thunar_extension_list_types (const GType **types,
gint *n_types)
{
*types = type_list;
*n_types = G_N_ELEMENTS (type_list);
}</programlisting>
</example>
<para>
You should check the <application>TexOpenTerminal</application> extension, which is included in the Thunar
distribution in the <filename role="directory">examples/tex-open-terminal</filename> directory, for a more
complete example of how to write a Thunar extension.
</para>
<sect2 id="thunarx-writing-extensions-compiling-thunar-extensions">
<title>Compiling Thunar Extensions</title>
<para>
To compile a Thunar extension, you need to tell the compiler where to find the
<systemitem class="library">thunarx</systemitem> header files and library. This
is done with the <literal>pkg-config</literal> utility.
</para>
<para>
The following interactive shell session demonstrates how <literal>pkg-config</literal>
is used (the actual output on your system will be different):
<screen>
$ pkg-config --cflags thunarx-2
-DXTHREADS -DXUSE_MTSAFE_API -I/opt/local/include/thunarx-2 -I/usr/local/include/atk-1.0 \
-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include/gtk-2.0 \
-I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/X11R6/include/pango-1.0 \
-I/usr/local/include/freetype2 -I/usr/local/include
$ pkg-config --libs thunarx-2
-Wl,--rpath -Wl,/usr/local/lib -L/usr/local/lib -L/usr/X11R6/lib -L/opt/local/lib -lthunarx-2</screen>
</para>
<para>
The easiest way to compile an extension is to use the <emphasis>backticks</emphasis>
feature of the shell. If you enclose a command in backticks (<emphasis>not single
quotes</emphasis>), then its output will be substituted into the command line before
execution. So to compile an extension, you would type the following:
<screen>
$ gcc -shared -fPIC -DPIC `pkg-config --cflags --libs thunarx-2` foo.c -o foo.so</screen>
</para>
</sect2>
<sect2 id="thunarx-writing-extensions-installing-thunar-extensions">
<title>Installing Thunar Extensions</title>
<para>
To determine the directory where extensions must be installed on your local system,
you can use the following command (as mentioned above, the output will be different
on your system):
<screen>
$ pkg-config --variable=extensionsdir thunarx-2
/opt/local/lib/thunarx-2</screen>
</para>
<para>
For example, to install the extension <filename>foo.so</filename> on your system,
you would type the following:
<screen>
$ install -d `pkg-config --variable=extensionsdir thunarx-2`
$ install -c -m 0755 foo.so `pkg-config --variable=extensionsdir thunarx-2`/foo.so</screen>
</para>
</sect2>
</sect1>
<sect1 id="thunarx-writing-extensions-advanced-topics">
<title>Advanced topics</title>
<para>
This section provides a short introduction to some of the advanced topics in the
Thunar Extension Framework.
</para>
<sect2 id="thunarx-writing-extensions-memory-resident-extensions">
<title>Memory-Resident Extensions</title>
<para>
Some extensions may not play well with Thunar's on-demand loading and unloading
of extensions. For example, an extension that uses a desktop library, which in
turn registers additional static GTypes will not work after being loaded and
unloaded for the first time. For these kind of extensions, Thunar provides the
option to make extensions <emphasis>memory resident</emphasis>, which means the
extension will be loaded once and afterwards will never be unloaded again until
Thunar exits.
</para>
<para>
Such extensions must set the <literal>resident</literal> property of the provider plugin in its
<function>thunar_extension_initialize()</function> function to <literal>TRUE</literal>, using the <link
linkend="thunarx-provider-plugin-set-resident"><function>thunarx_provider_plugin_set_resident()</function></link>
method.
</para>
<example>
<title>Making an extension memory resident</title>
<programlisting>
G_MODULE_EXPORT void
thunar_extension_initialize (ThunarxProviderPlugin *plugin)
{
/* setup the types for the extension */
...
/* ensure that the extension will never be unloaded */
thunarx_provider_plugin_set_resident (plugin, TRUE);
}</programlisting>
</example>
</sect2>
</sect1>
</part>
<part id="thunarx-fundamentals">
<title>Fundamentals</title>
<xi:include href="xml/thunarx-version-information.xml"/>
</part>
<part id="thunarx-abstraction-layer">
<title>Abstraction Layer</title>
<para>
In order to hide the internals of the file manager from the extensions, the <systemitem
class="library">thunarx</systemitem> library provides an abstraction layer, which includes
interfaces accessible to the extension, that are implemented by the file manager at runtime.
</para>
<para>
<inlinegraphic fileref="abstraction.png" format="PNG" />
</para>
<para>
Currently the abstraction layer consists of the interface <link
linkend="ThunarxFileInfo"><type>ThunarxFileInfo</type></link>, which provides
extensions with a way to access information about a file handled within
the file manager, the class <link
linkend="ThunarxPropertyPage"><type>ThunarxPropertyPage</type></link>, which
is the base class for widgets that can be added to the properties dialog by
extensions, the interface <link
linkend="ThunarxProviderPlugin"><type>ThunarxProviderPlugin</type></link>, which
hides the details of dynamic type registration from the extensions, and the
class <link linkend="ThunarxRenamer"><type>ThunarxRenamer</type></link>, which
is the abstract base class for renamers that can be used in the bulk rename
dialog provided by Thunar to rename multiple files at once.
</para>
<xi:include href="xml/thunarx-file-info.xml"/>
<xi:include href="xml/thunarx-menu.xml"/>
<xi:include href="xml/thunarx-menu-item.xml"/>
<xi:include href="xml/thunarx-property-page.xml"/>
<xi:include href="xml/thunarx-provider-plugin.xml"/>
<xi:include href="xml/thunarx-renamer.xml"/>
</part>
<part id="thunarx-providers">
<title>Providers</title>
<para>
The extensions interact with the file manager by implementing so called
<emphasis>providers</emphasis>. This is a concept adopted from the Nautilus
Extension Framework.
</para>
<para>
Providers are interfaces in the <systemitem class="library">thunarx</systemitem>
library that describe the functionality provided by a certain extension. For
example, when the file manager pops up the file context menu, it'll first lookup
all extensions that implement the interface <interface>ThunarxMenuProvider</interface>
ask those extensions for the list of additional menu items.
</para>
<para>
<inlinegraphic fileref="menu-provider.png" format="PNG" />
</para>
<xi:include href="xml/thunarx-menu-provider.xml"/>
<xi:include href="xml/thunarx-property-page-provider.xml"/>
<xi:include href="xml/thunarx-preferences-provider.xml"/>
<xi:include href="xml/thunarx-renamer-provider.xml"/>
</part>
<part id="thunarx-using-extensions">
<title>Using Thunar extensions in applications</title>
<xi:include href="xml/thunarx-provider-factory.xml"/>
</part>
<index>
<title>Index</title>
</index>
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
</book>
<!--
vi:set ts=2 sw=2 et ai syntax=docbkxml:
-->
|