[Xfce4-commits] <exo:master> Remove the old tmpl files.
Nick Schermer
nick at xfce.org
Tue Sep 1 12:30:03 CEST 2009
Updating branch refs/heads/master
to 5d2fe2a44ff0233643c8a712905123ea4b959bd3 (commit)
from f4b112e3cde701624944f90a430404cf20a0999c (commit)
commit 5d2fe2a44ff0233643c8a712905123ea4b959bd3
Author: Nick Schermer <nick at xfce.org>
Date: Tue Sep 1 12:27:52 2009 +0200
Remove the old tmpl files.
docs/reference/tmpl/exo-binding.sgml | 186 -----
.../tmpl/exo-cell-renderer-ellipsized-text.sgml | 47 --
docs/reference/tmpl/exo-cell-renderer-icon.sgml | 62 --
docs/reference/tmpl/exo-config.sgml | 110 ---
docs/reference/tmpl/exo-execute.sgml | 82 --
docs/reference/tmpl/exo-gdk-pixbuf-extensions.sgml | 98 ---
docs/reference/tmpl/exo-gobject-extensions.sgml | 31 -
docs/reference/tmpl/exo-gtk-extensions.sgml | 49 --
docs/reference/tmpl/exo-hal.sgml | 102 ---
docs/reference/tmpl/exo-icon-bar.sgml | 260 ------
docs/reference/tmpl/exo-icon-chooser-dialog.sgml | 57 --
docs/reference/tmpl/exo-icon-view.sgml | 835 --------------------
docs/reference/tmpl/exo-job.sgml | 152 ----
docs/reference/tmpl/exo-mount-point.sgml | 100 ---
docs/reference/tmpl/exo-simple-job.sgml | 47 --
docs/reference/tmpl/exo-string.sgml | 90 ---
.../reference/tmpl/exo-toolbars-editor-dialog.sgml | 35 -
docs/reference/tmpl/exo-toolbars-editor.sgml | 97 ---
docs/reference/tmpl/exo-toolbars-model.sgml | 349 --------
docs/reference/tmpl/exo-toolbars-view.sgml | 128 ---
docs/reference/tmpl/exo-tree-view.sgml | 84 --
docs/reference/tmpl/exo-utils.sgml | 93 ---
docs/reference/tmpl/exo-wrap-table.sgml | 106 ---
docs/reference/tmpl/exo-xsession-client.sgml | 171 ----
24 files changed, 0 insertions(+), 3371 deletions(-)
diff --git a/docs/reference/tmpl/exo-binding.sgml b/docs/reference/tmpl/exo-binding.sgml
deleted file mode 100644
index 8d79ddd..0000000
--- a/docs/reference/tmpl/exo-binding.sgml
+++ /dev/null
@@ -1,186 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Binding Properties Functions
-
-<!-- ##### SECTION Short_Description ##### -->
-Functions used to bind two object properties together
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-Binding properties is synchronizing values of several properties,
-so that when one of the bound properties changes, the other
-bound properties are automatically changed to the new value as
-well. These functions eliminate the need to write property
-change notification callbacks manually. It also increases the
-reliability of your project as you don't need to repeat similar
-code (and errors) manually.
-</para>
-<para>
-Both uni-directional and mutual
-bindings are supported and you can specify functions to perform
-explicit transformation of values if required. Multiple properties
-can be bound together in a complex way and infinite loops are
-eliminated automatically.
-</para>
-<para>
-For example, lets say, your program has a #GtkEntry widget that allows
-the user to enter some text for the program, but this entry widget should
-only be sensitive if a #GtkCheckButton is active.
-</para>
-<example>
-<title>Connecting a <structname>GtkCheckButton</structname> and a
-<structname>GtkEntry</structname></title>
-<programlisting>
-{
- GtkWidget *button;
- GtkWidget *entry;
-
- button = gtk_check_button_new_with_label ("Activate me");
- entry = gtk_entry_new ();
-
- exo_binding_new (G_OBJECT (button), "active",
- G_OBJECT (entry), "sensitive");
-
- /* add button and entry to the gui... */
-}
-</programlisting>
-</example>
-<para>
-As you can see, all you need to do is to call one function to connect
-the sensitivity of the entry widget with the state of the check
-button. No need to write signal handlers for this purpose any more.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-<ulink url="http://developer.gnome.org/doc/API/2.0/gobject/">GObject Reference
-Manual</ulink>, <link linkend="exo-Extensions-to-GObject">Extensions to GObject</link>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoBinding ##### -->
-<para>
-Opaque structure representing a one-way binding between two properties. It
-is automatically removed if one of the bound objects is finalized.
-</para>
-
-
-<!-- ##### STRUCT ExoMutualBinding ##### -->
-<para>
-Opaque structure representing a mutual binding between two properties.
-It is automatically freed if one of the bound objects is finalized.
-</para>
-
-
-<!-- ##### USER_FUNCTION ExoBindingTransform ##### -->
-<para>
-Function type used for binding transformation functions.
-</para>
-<para>
-Accomplished transformation from @src_value to @dst_value.
- at src_value and @dst_value are already initialized before
-this function gets called.
-</para>
-
- at src_value: Value to transform.
- at dst_value: Value to store the result of the transformation into.
- at user_data: User data supplied at binding creation.
- at Returns: %FALSE if transformation failed, else %TRUE.
-
-
-<!-- ##### FUNCTION exo_binding_new ##### -->
-<para>
-
-</para>
-
- at src_object:
- at src_property:
- at dst_object:
- at dst_property:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_binding_new_full ##### -->
-<para>
-
-</para>
-
- at src_object:
- at src_property:
- at dst_object:
- at dst_property:
- at transform:
- at destroy_notify:
- at user_data:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_binding_new_with_negation ##### -->
-<para>
-
-</para>
-
- at src_object:
- at src_property:
- at dst_object:
- at dst_property:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_binding_unbind ##### -->
-<para>
-
-</para>
-
- at binding:
-
-
-<!-- ##### FUNCTION exo_mutual_binding_new ##### -->
-<para>
-
-</para>
-
- at object1:
- at property1:
- at object2:
- at property2:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_mutual_binding_new_full ##### -->
-<para>
-
-</para>
-
- at object1:
- at property1:
- at object2:
- at property2:
- at transform:
- at reverse_transform:
- at destroy_notify:
- at user_data:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_mutual_binding_new_with_negation ##### -->
-<para>
-
-</para>
-
- at object1:
- at property1:
- at object2:
- at property2:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_mutual_binding_unbind ##### -->
-<para>
-
-</para>
-
- at binding:
-
-
diff --git a/docs/reference/tmpl/exo-cell-renderer-ellipsized-text.sgml b/docs/reference/tmpl/exo-cell-renderer-ellipsized-text.sgml
deleted file mode 100644
index 81a055e..0000000
--- a/docs/reference/tmpl/exo-cell-renderer-ellipsized-text.sgml
+++ /dev/null
@@ -1,47 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoCellRendererEllipsizedText
-
-<!-- ##### SECTION Short_Description ##### -->
-Renders text in a cell
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- The #ExoCellRendererEllipsizedText renders a given text in its cell, using the font, color and
- style information provided by its properties (which are actually inherited from #GtkCellRendererText).
-</para>
-
-<para>
- Despite the rather confusing name of this class, it is mainly useful to render text in an #ExoIconView
- (or a #GtkIconView), which require the renderers to actually draw the state indicators. State indicators
- will be drawn only if the <link linkend="ExoCellRendererEllipsizedText--follow-state">follow-state</link>
- property is %TRUE.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- <ulink url="http://developer.gnome.org/doc/API/2.0/gtk/GtkCellRendererText.html" type="http">GtkCellRendererText</ulink>,
- <link linkend="ExoIconView">ExoIconView</link>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoCellRendererEllipsizedText ##### -->
-<para>
- The <structname>ExoIconCellRendererEllipsizedText</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### ARG ExoCellRendererEllipsizedText:follow-state ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION exo_cell_renderer_ellipsized_text_new ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-cell-renderer-icon.sgml b/docs/reference/tmpl/exo-cell-renderer-icon.sgml
deleted file mode 100644
index 5b1ec13..0000000
--- a/docs/reference/tmpl/exo-cell-renderer-icon.sgml
+++ /dev/null
@@ -1,62 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoCellRendererIcon
-
-<!-- ##### SECTION Short_Description ##### -->
-Renders an icon in a cell
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- An #ExoCellRendererIcon can be used to render an icon in a cell. It allows to render either a named icon,
- which is looked up using the #GtkIconTheme, or an image file loaded from the file system. The icon name
- or absolute path to the image file is set via the <link linkend="ExoCellRendererIcon--icon">icon</link>
- property.
-</para>
-
-<para>
- To support the <link linkend="ExoIconView">ExoIconView</link> (and <link linkend="GtkIconView">GtkIconView</link>),
- #ExoCellRendererIcon supports rendering icons based on the state of the view if the <link
- linkend="ExoCellRendererIcon--follow-state">follow-state</link> property is set.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- <link linkend="ExoIconView">ExoIconView</link>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoCellRendererIcon ##### -->
-<para>
- The <structname>ExoCellRendererIcon</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### ARG ExoCellRendererIcon:follow-state ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoCellRendererIcon:gicon ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoCellRendererIcon:icon ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoCellRendererIcon:size ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION exo_cell_renderer_icon_new ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-config.sgml b/docs/reference/tmpl/exo-config.sgml
deleted file mode 100644
index de41cae..0000000
--- a/docs/reference/tmpl/exo-config.sgml
+++ /dev/null
@@ -1,110 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Version Information
-
-<!-- ##### SECTION Short_Description ##### -->
-Variables and macros to check the exo version
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-Exo provides version information, primarily useful in configure for
-builds that have a configure script. Applications may use it to
-check if a certain feature is available in the version of libexo
-they are being built against or being linked with.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-Stable
-
-<!-- ##### VARIABLE exo_major_version ##### -->
-<para>
-The major version number of the exo library (e.g. in libexo 0.1.3
-this is 0).
-</para>
-<para>
-This variable is in the library, and therefore represents the exo
-library you have linked against. Contrast with the #EXO_MAJOR_VERSION
-macro, which represents the major version of the libexo headers
-you have included.
-</para>
-
-
-<!-- ##### VARIABLE exo_minor_version ##### -->
-<para>
-The minor version number of the exo library (e.g. in libexo 0.1.3
-this is 1).
-</para>
-<para>
-This variable is in the library, and therefore represents the exo
-library you have linked against. Contrast with the #EXO_MINOR_VERSION
-macro, which represents the minor version of the libexo headers
-you have included.
-</para>
-
-
-<!-- ##### VARIABLE exo_micro_version ##### -->
-<para>
-The micro version number of the exo library (e.g. in libexo 0.1.3
-this is 3).
-</para>
-<para>
-This variable is in the library, and therefore represents the exo
-library you have linked against. Contrast with the #EXO_MICRO_VERSION
-macro, which represents the micro version of the libexo headers
-you have included.
-</para>
-
-
-<!-- ##### FUNCTION exo_check_version ##### -->
-<para>
-
-</para>
-
- at required_major:
- at required_minor:
- at required_micro:
- at Returns:
-
-
-<!-- ##### MACRO EXO_MAJOR_VERSION ##### -->
-<para>
-Like #exo_major_version, but from the headers used at application
-compile time, rather than from the library linked against at
-application run time.
-</para>
-
-
-
-<!-- ##### MACRO EXO_MINOR_VERSION ##### -->
-<para>
-Like #exo_minor_version, but from the headers used at application
-compile time, rather than from the library linked against at
-application run time.
-</para>
-
-
-
-<!-- ##### MACRO EXO_MICRO_VERSION ##### -->
-<para>
-Like #exo_micro_version, but from the headers used at application
-compile time, rather than from the library linked against at
-application run time.
-</para>
-
-
-
-<!-- ##### MACRO EXO_CHECK_VERSION ##### -->
-<para>
-Returns %TRUE if the version of the libexo header files is
-equal or better than the passed-in version.
-</para>
-
- at major: major version (e.g. 0 for version 0.1.3)
- at minor: minor version (e.g. 1 for version 0.1.3)
- at micro: micro version (e.g. 3 for version 0.1.3)
-
-
diff --git a/docs/reference/tmpl/exo-execute.sgml b/docs/reference/tmpl/exo-execute.sgml
deleted file mode 100644
index 07bc030..0000000
--- a/docs/reference/tmpl/exo-execute.sgml
+++ /dev/null
@@ -1,82 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Executing Applications
-
-<!-- ##### SECTION Short_Description ##### -->
-Execute preferred applications
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- This module provides functions to execute certain kinds of applications,
- for which users can select their preferred ones. For example, whenever
- you need to run a command in a terminal emulator from within your
- application you should use exo_execute_terminal_shell() or
- exo_execute_terminal_shell_on_screen() to make sure you run the user's
- preferred terminal emulator.
-</para>
-<para>
- On the other hand if you need to display an URL (i.e. you want to point
- the user to the website of your application), you should use gtk_show_uri()
- instead, as it will try to automatically determine the appropriate
- viewer for a given URI.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- <link linkend="exo-Opening-URLs">Opening URLs</link>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-Stable
-
-<!-- ##### FUNCTION exo_execute_preferred_application ##### -->
-<para>
-
-</para>
-
- at category:
- at parameter:
- at working_directory:
- at envp:
- at error:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_execute_preferred_application_on_screen ##### -->
-<para>
-
-</para>
-
- at category:
- at parameter:
- at working_directory:
- at envp:
- at screen:
- at error:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_execute_terminal_shell ##### -->
-<para>
-
-</para>
-
- at command_line:
- at working_directory:
- at envp:
- at error:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_execute_terminal_shell_on_screen ##### -->
-<para>
-
-</para>
-
- at command_line:
- at working_directory:
- at envp:
- at screen:
- at error:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-gdk-pixbuf-extensions.sgml b/docs/reference/tmpl/exo-gdk-pixbuf-extensions.sgml
deleted file mode 100644
index 632b41d..0000000
--- a/docs/reference/tmpl/exo-gdk-pixbuf-extensions.sgml
+++ /dev/null
@@ -1,98 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Extensions to gdk-pixbuf
-
-<!-- ##### SECTION Short_Description ##### -->
-Miscelleanous extensions to the gdk-pixbuf library
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-This facility includes several functions to extend the basic functionality
-provided by the gdk-pixbuf library.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### FUNCTION exo_gdk_pixbuf_colorize ##### -->
-<para>
-
-</para>
-
- at src:
- at color:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_gdk_pixbuf_frame ##### -->
-<para>
-
-</para>
-
- at src:
- at frame:
- at left_offset:
- at top_offset:
- at right_offset:
- at bottom_offset:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_gdk_pixbuf_lucent ##### -->
-<para>
-
-</para>
-
- at src:
- at percent:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_gdk_pixbuf_spotlight ##### -->
-<para>
-
-</para>
-
- at src:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_gdk_pixbuf_scale_down ##### -->
-<para>
-
-</para>
-
- at source:
- at preserve_aspect_ratio:
- at dest_width:
- at dest_height:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_gdk_pixbuf_scale_ratio ##### -->
-<para>
-
-</para>
-
- at source:
- at dest_size:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_gdk_pixbuf_new_from_file_at_max_size ##### -->
-<para>
-
-</para>
-
- at filename:
- at max_width:
- at max_height:
- at preserve_aspect_ratio:
- at error:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-gobject-extensions.sgml b/docs/reference/tmpl/exo-gobject-extensions.sgml
deleted file mode 100644
index 264f3db..0000000
--- a/docs/reference/tmpl/exo-gobject-extensions.sgml
+++ /dev/null
@@ -1,31 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Extensions to GObject
-
-<!-- ##### SECTION Short_Description ##### -->
-Miscelleanous extensions to the GObject library
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-This facility includes several functions to extend the basic
-functionality provided by the GObject library.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-<ulink url="http://developer.gnome.org/doc/API/2.0/gobject/">GObject
-Reference Manual</ulink>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### FUNCTION exo_g_value_transform_negate ##### -->
-<para>
-
-</para>
-
- at src_value:
- at dst_value:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-gtk-extensions.sgml b/docs/reference/tmpl/exo-gtk-extensions.sgml
deleted file mode 100644
index 8ac7b30..0000000
--- a/docs/reference/tmpl/exo-gtk-extensions.sgml
+++ /dev/null
@@ -1,49 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Extensions to Gtk
-
-<!-- ##### SECTION Short_Description ##### -->
-Miscelleanous extensions to the Gtk+ library
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- Various additional functions to the core API provided by the Gtk+ library.
-</para>
-
-<para>
- For example, exo_gtk_file_chooser_add_thumbnail_preview() is a convenience method to add a thumbnail based
- preview widget to a #GtkFileChooser, which will display a preview of the selected file if either a thumbnail
- is available or a thumbnail could be generated using the GdkPixbuf library.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-Stable
-
-<!-- ##### FUNCTION exo_gtk_object_destroy_later ##### -->
-<para>
-
-</para>
-
- at object:
-
-
-<!-- ##### FUNCTION exo_gtk_file_chooser_add_thumbnail_preview ##### -->
-<para>
-
-</para>
-
- at chooser:
-
-
-<!-- ##### FUNCTION exo_gtk_url_about_dialog_hook ##### -->
-<para>
-
-</para>
-
- at about_dialog:
- at link:
- at user_data:
diff --git a/docs/reference/tmpl/exo-hal.sgml b/docs/reference/tmpl/exo-hal.sgml
deleted file mode 100644
index 584bffe..0000000
--- a/docs/reference/tmpl/exo-hal.sgml
+++ /dev/null
@@ -1,102 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-HAL Support Functions
-
-<!-- ##### SECTION Short_Description ##### -->
-Miscellaneous Utility Functions for HAL integration
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- This is an additional library that ships with the <application>exo</application> package and
- offers support functions for HAL integration, that are used by <command>exo-mount</command>
- and <command>Thunar</command> to figure out display names and icons to visually
- present HAL devices to the user. The library may also be used by other components to offer
- smooth integration between various parts of the desktop, making sure that the same names
- and icons are used for devices everywhere.
-</para>
-
-<para>
- Since HAL is currently an optional dependency for Xfce, you should first check whether HAL support is
- really available by calling the <link linkend="exo-hal-init"><function>exo_hal_init()</function></link>
- function, which returns <literal>TRUE</literal> if HAL support is available and the other functions will
- be able to do their work, or <literal>FALSE</literal> if the functions will return hardcoded default
- values instead. The <link linkend="exo-hal-init"><function>exo_hal_init()</function></link> also takes
- care of setting up the internationalization support, so make sure you call it first.
-</para>
-
-<para>
- The HAL support module is not part of the main <filename>exo</filename> library, so you if you want to
- use any of these functions you will need to explicitly link to the <filename>exo-hal</filename> library.
- This is done with the <command>pkg-config</command> utility, using <filename>exo-hal-1</filename> as
- the package name.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- <ulink type="http" url="http://gitweb.freedesktop.org/?p=hal.git;a=blob_plain;f=doc/spec/hal-spec.html">HAL
- Specification</ulink>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### FUNCTION exo_hal_init ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_hal_udi_validate ##### -->
-<para>
-
-</para>
-
- at udi:
- at len:
- at end:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_hal_drive_compute_display_name ##### -->
-<para>
-
-</para>
-
- at context:
- at drive:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_hal_drive_compute_icon_list ##### -->
-<para>
-
-</para>
-
- at context:
- at drive:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_hal_volume_compute_display_name ##### -->
-<para>
-
-</para>
-
- at context:
- at volume:
- at drive:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_hal_volume_compute_icon_list ##### -->
-<para>
-
-</para>
-
- at context:
- at volume:
- at drive:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-icon-bar.sgml b/docs/reference/tmpl/exo-icon-bar.sgml
deleted file mode 100644
index f3c1132..0000000
--- a/docs/reference/tmpl/exo-icon-bar.sgml
+++ /dev/null
@@ -1,260 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoIconBar
-
-<!-- ##### SECTION Short_Description ##### -->
-A widget for displaying icon bars
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-A widget that displays any object that implements the #GtkTreeModel interface
-in an icon bar.
-</para>
-
-<example>
-<title>
- Creating a new <structname>ExoIconBar</structname> with a <structname>GtkListStore</structname>
-</title>
-<programlisting>
-enum
-{
- PIXBUF_COLUMN,
- STRING_COLUMN,
- N_COLUMNS,
-};
-
-{
- GtkListStore *store;
- GtkWidget *bar;
-
- /* make a new list store */
- store = gtk_list_store_new (N_COLUMNS, GDK_TYPE_PIXBUF, G_TYPE_STRING);
-
- /* fill the store with data */
- fill_store (store);
-
- /* create the icon bar */
- bar = exo_icon_bar_new_with_model (GTK_TREE_MODEL (store));
- exo_icon_bar_set_pixbuf_column (EXO_ICON_BAR (bar), PIXBUF_COLUMN);
- exo_icon_bar_set_text_column (EXO_ICON_BAR (bar), TEXT_COLUMN);
- gtk_widget_show (bar);
-
- /* the icon bar keeps a reference on the store now */
- g_object_unref (G_OBJECT (store));
-
- /* add the bar to your GUI now... */
-}
-</programlisting>
-</example>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-<ulink url="http://developer.gnome.org/doc/API/2.0/gtk/GtkTreeModel.html">GtkTreeModel</ulink>,
-<ulink url="http://developer.gnome.org/doc/API/2.0/gtk/TreeWidget.html">Tree and List Widget Overview</ulink>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoIconBar ##### -->
-<para>
- The <structname>ExoIconBar</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### SIGNAL ExoIconBar::selection-changed ##### -->
-<para>
-
-</para>
-
- at exoiconbar: the object which received the signal.
-
-<!-- ##### SIGNAL ExoIconBar::set-scroll-adjustments ##### -->
-<para>
-
-</para>
-
- at exoiconbar: the object which received the signal.
- at arg1:
- at arg2:
-
-<!-- ##### ARG ExoIconBar:active ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:model ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:orientation ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:pixbuf-column ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:text-column ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:active-item-border-color ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:active-item-fill-color ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:active-item-text-color ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:cursor-item-border-color ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:cursor-item-fill-color ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconBar:cursor-item-text-color ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION exo_icon_bar_new ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_bar_new_with_model ##### -->
-<para>
-
-</para>
-
- at model:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_bar_get_model ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_bar_set_model ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at model:
-
-
-<!-- ##### FUNCTION exo_icon_bar_get_pixbuf_column ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_bar_set_pixbuf_column ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at column:
-
-
-<!-- ##### FUNCTION exo_icon_bar_get_text_column ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_bar_set_text_column ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at column:
-
-
-<!-- ##### FUNCTION exo_icon_bar_get_orientation ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_bar_set_orientation ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at orientation:
-
-
-<!-- ##### FUNCTION exo_icon_bar_get_active ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_bar_set_active ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at idx:
-
-
-<!-- ##### FUNCTION exo_icon_bar_get_active_iter ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at iter:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_bar_set_active_iter ##### -->
-<para>
-
-</para>
-
- at icon_bar:
- at iter:
-
-
diff --git a/docs/reference/tmpl/exo-icon-chooser-dialog.sgml b/docs/reference/tmpl/exo-icon-chooser-dialog.sgml
deleted file mode 100644
index c89f453..0000000
--- a/docs/reference/tmpl/exo-icon-chooser-dialog.sgml
+++ /dev/null
@@ -1,57 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoIconChooserDialog
-
-<!-- ##### SECTION Short_Description ##### -->
-Dialog to select icons
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- The #ExoIconChooserDialog class provides an easy to use dialog to ask the user to select either a named icon from the
- selected icon theme, or an image file from the local file system.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- <ulink type="http" href="http://developer.gnome.org/doc/API/2.0/gtk/GtkIconTheme.html">GtkIconTheme</ulink>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoIconChooserDialog ##### -->
-<para>
- The <structname>ExoIconChooserDialog</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### FUNCTION exo_icon_chooser_dialog_new ##### -->
-<para>
-
-</para>
-
- at title:
- at parent:
- at first_button_text:
- at Varargs:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_chooser_dialog_get_icon ##### -->
-<para>
-
-</para>
-
- at icon_chooser_dialog:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_chooser_dialog_set_icon ##### -->
-<para>
-
-</para>
-
- at icon_chooser_dialog:
- at icon:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-icon-view.sgml b/docs/reference/tmpl/exo-icon-view.sgml
deleted file mode 100644
index 9641544..0000000
--- a/docs/reference/tmpl/exo-icon-view.sgml
+++ /dev/null
@@ -1,835 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoIconView
-
-<!-- ##### SECTION Short_Description ##### -->
-A widget which displays a list of icons in a grid
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- #ExoIconView provides an alternative view on a list model.
- It displays the model as a grid of icons with labels. Like
- #GtkTreeView, it allows to select one or multiple items
- (depending on the selection mode, see exo_icon_view_set_selection_mode()).
- In addition to selection with the arrow keys, #ExoIconView supports
- rubberband selection, which is controlled by dragging the pointer.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoIconView ##### -->
-<para>
- The <structname>ExoIconView</structname> struct contains only
- private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### SIGNAL ExoIconView::activate-cursor-item ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
- at Returns:
-
-<!-- ##### SIGNAL ExoIconView::item-activated ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
- at arg1:
-
-<!-- ##### SIGNAL ExoIconView::move-cursor ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
- at arg1:
- at arg2:
- at Returns:
-
-<!-- ##### SIGNAL ExoIconView::select-all ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
-
-<!-- ##### SIGNAL ExoIconView::select-cursor-item ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
-
-<!-- ##### SIGNAL ExoIconView::selection-changed ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
-
-<!-- ##### SIGNAL ExoIconView::set-scroll-adjustments ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
- at arg1:
- at arg2:
-
-<!-- ##### SIGNAL ExoIconView::start-interactive-search ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
- at Returns:
-
-<!-- ##### SIGNAL ExoIconView::toggle-cursor-item ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
-
-<!-- ##### SIGNAL ExoIconView::unselect-all ##### -->
-<para>
-
-</para>
-
- at exoiconview: the object which received the signal.
-
-<!-- ##### ARG ExoIconView:column-spacing ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:columns ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:enable-search ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:item-width ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:layout-mode ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:margin ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:markup-column ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:model ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:orientation ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:pixbuf-column ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:reorderable ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:row-spacing ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:search-column ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:selection-mode ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:single-click ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:single-click-timeout ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:spacing ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:text-column ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:selection-box-alpha ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoIconView:selection-box-color ##### -->
-<para>
-
-</para>
-
-<!-- ##### ENUM ExoIconViewDropPosition ##### -->
-<para>
-
-</para>
-
- at EXO_ICON_VIEW_NO_DROP:
- at EXO_ICON_VIEW_DROP_INTO:
- at EXO_ICON_VIEW_DROP_LEFT:
- at EXO_ICON_VIEW_DROP_RIGHT:
- at EXO_ICON_VIEW_DROP_ABOVE:
- at EXO_ICON_VIEW_DROP_BELOW:
-
-<!-- ##### ENUM ExoIconViewLayoutMode ##### -->
-<para>
-
-</para>
-
- at EXO_ICON_VIEW_LAYOUT_ROWS:
- at EXO_ICON_VIEW_LAYOUT_COLS:
-
-<!-- ##### FUNCTION exo_icon_view_new ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_new_with_model ##### -->
-<para>
-
-</para>
-
- at model:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_model ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_model ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at model:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_orientation ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_orientation ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at orientation:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_columns ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_columns ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at columns:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_item_width ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_item_width ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at item_width:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_spacing ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_spacing ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at spacing:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_row_spacing ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_row_spacing ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at row_spacing:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_column_spacing ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_column_spacing ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at column_spacing:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_margin ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_margin ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at margin:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_selection_mode ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_selection_mode ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at mode:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_layout_mode ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_layout_mode ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at layout_mode:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_single_click ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_single_click ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at single_click:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_single_click_timeout ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_single_click_timeout ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at single_click_timeout:
-
-
-<!-- ##### FUNCTION exo_icon_view_widget_to_icon_coords ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at wx:
- at wy:
- at ix:
- at iy:
-
-
-<!-- ##### FUNCTION exo_icon_view_icon_to_widget_coords ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at ix:
- at iy:
- at wx:
- at wy:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_path_at_pos ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at x:
- at y:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_item_at_pos ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at x:
- at y:
- at path:
- at cell:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_visible_range ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at start_path:
- at end_path:
- at Returns:
-
-
-<!-- ##### USER_FUNCTION ExoIconViewForeachFunc ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
- at user_data:
-
-
-<!-- ##### FUNCTION exo_icon_view_selected_foreach ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at func:
- at data:
-
-
-<!-- ##### FUNCTION exo_icon_view_select_path ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
-
-
-<!-- ##### FUNCTION exo_icon_view_unselect_path ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
-
-
-<!-- ##### FUNCTION exo_icon_view_path_is_selected ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_selected_items ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_select_all ##### -->
-<para>
-
-</para>
-
- at icon_view:
-
-
-<!-- ##### FUNCTION exo_icon_view_unselect_all ##### -->
-<para>
-
-</para>
-
- at icon_view:
-
-
-<!-- ##### FUNCTION exo_icon_view_item_activated ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_cursor ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
- at cell:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_cursor ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
- at cell:
- at start_editing:
-
-
-<!-- ##### FUNCTION exo_icon_view_scroll_to_path ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
- at use_align:
- at row_align:
- at col_align:
-
-
-<!-- ##### FUNCTION exo_icon_view_enable_model_drag_source ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at start_button_mask:
- at targets:
- at n_targets:
- at actions:
-
-
-<!-- ##### FUNCTION exo_icon_view_enable_model_drag_dest ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at targets:
- at n_targets:
- at actions:
-
-
-<!-- ##### FUNCTION exo_icon_view_unset_model_drag_source ##### -->
-<para>
-
-</para>
-
- at icon_view:
-
-
-<!-- ##### FUNCTION exo_icon_view_unset_model_drag_dest ##### -->
-<para>
-
-</para>
-
- at icon_view:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_reorderable ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at reorderable:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_reorderable ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_drag_dest_item ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
- at pos:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_drag_dest_item ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
- at pos:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_dest_item_at_pos ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at drag_x:
- at drag_y:
- at path:
- at pos:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_create_drag_icon ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at path:
- at Returns:
-
-
-<!-- ##### USER_FUNCTION ExoIconViewSearchEqualFunc ##### -->
-<para>
-
-</para>
-
- at model:
- at column:
- at key:
- at iter:
- at search_data:
- at Returns:
-
-
-<!-- ##### USER_FUNCTION ExoIconViewSearchPositionFunc ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at search_dialog:
- at user_data:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_enable_search ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_enable_search ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at enable_search:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_search_column ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_search_column ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at search_column:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_search_equal_func ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_search_equal_func ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at search_equal_func:
- at search_equal_data:
- at search_equal_destroy:
-
-
-<!-- ##### FUNCTION exo_icon_view_get_search_position_func ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_icon_view_set_search_position_func ##### -->
-<para>
-
-</para>
-
- at icon_view:
- at search_position_func:
- at search_position_data:
- at search_position_destroy:
-
-
diff --git a/docs/reference/tmpl/exo-job.sgml b/docs/reference/tmpl/exo-job.sgml
deleted file mode 100644
index 65e7d76..0000000
--- a/docs/reference/tmpl/exo-job.sgml
+++ /dev/null
@@ -1,152 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoJob
-
-<!-- ##### SECTION Short_Description ##### -->
-Base class for threaded/asynchronous jobs
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-<link linkend="ExoJob">ExoJob</link> is an abstract base class intended to wrap threaded/asynchronous
-operations (called jobs here). It was written because the ways of dealing with threads provided by
-GLib were too low-level and not exactly object-oriented.
-
-It can be used to wrap any kind of long-running or possibly-blocking operation, like file operations
-or communication with web services. The benefit of using <link linkend="ExoJob">ExoJob</link> is that
-you get an object associated with an operation. After creating the job you can connect to signals like
-<link linkend="ExoJob::error">"error"</link> or
-<link linkend="ExoJob::percent">"percent"</link>. This design integrates very well in the
-usual object-oriented design of applications based on GLib.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-<link linkend="ExoSimpleJob">ExoSimpleJob</link>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoJob ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### SIGNAL ExoJob::error ##### -->
-<para>
-
-</para>
-
- at exojob: the object which received the signal.
- at arg1:
-
-<!-- ##### SIGNAL ExoJob::finished ##### -->
-<para>
-
-</para>
-
- at exojob: the object which received the signal.
-
-<!-- ##### SIGNAL ExoJob::info-message ##### -->
-<para>
-
-</para>
-
- at exojob: the object which received the signal.
- at arg1:
-
-<!-- ##### SIGNAL ExoJob::percent ##### -->
-<para>
-
-</para>
-
- at exojob: the object which received the signal.
- at arg1:
-
-<!-- ##### FUNCTION exo_job_launch ##### -->
-<para>
-
-</para>
-
- at job:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_job_cancel ##### -->
-<para>
-
-</para>
-
- at job:
-
-
-<!-- ##### FUNCTION exo_job_is_cancelled ##### -->
-<para>
-
-</para>
-
- at job:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_job_get_cancellable ##### -->
-<para>
-
-</para>
-
- at job:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_job_set_error_if_cancelled ##### -->
-<para>
-
-</para>
-
- at job:
- at error:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_job_emit ##### -->
-<para>
-
-</para>
-
- at job:
- at signal_id:
- at signal_detail:
- at Varargs:
-
-
-<!-- ##### FUNCTION exo_job_info_message ##### -->
-<para>
-
-</para>
-
- at job:
- at format:
- at Varargs:
-
-
-<!-- ##### FUNCTION exo_job_percent ##### -->
-<para>
-
-</para>
-
- at job:
- at percent:
-
-
-<!-- ##### FUNCTION exo_job_send_to_mainloop ##### -->
-<para>
-
-</para>
-
- at job:
- at func:
- at user_data:
- at destroy_notify:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-mount-point.sgml b/docs/reference/tmpl/exo-mount-point.sgml
deleted file mode 100644
index 90bc275..0000000
--- a/docs/reference/tmpl/exo-mount-point.sgml
+++ /dev/null
@@ -1,100 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Mount Points
-
-<!-- ##### SECTION Short_Description ##### -->
-Functions to query active and configured mount points
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- This module provides functions to query active and configured mount points from
- the system. This is commonly required in file and volume management, and hence
- it was added to the library. For example, <command>exo-mount</command>,
- <command>Thunar</command> and <command>thunar-volman</command> make use of this.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### ENUM ExoMountPointFlags ##### -->
-<para>
-
-</para>
-
- at EXO_MOUNT_POINT_READ_ONLY:
-
-<!-- ##### STRUCT ExoMountPoint ##### -->
-<para>
- Structure to represent a mount point, which can be either an
- active mount point, queried from the kernel's internal mount
- table, or a configured mount point queried from the file
- system table (usually <filename>/etc/fstab</filename> or
- <filename>/etc/vfstab</filename>).
-</para>
-
- at flags: see #ExoMountPointFlags.
- at device: the device file path.
- at folder: the folder where the device is mounted (or may be mounted).
- at fstype: the type of the file system used for the device.
-
-<!-- ##### FUNCTION exo_mount_point_dup ##### -->
-<para>
-
-</para>
-
- at mount_point:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_mount_point_free ##### -->
-<para>
-
-</para>
-
- at mount_point:
-
-
-<!-- ##### ENUM ExoMountPointMatchMask ##### -->
-<para>
-
-</para>
-
- at EXO_MOUNT_POINT_MATCH_ACTIVE:
- at EXO_MOUNT_POINT_MATCH_CONFIGURED:
- at EXO_MOUNT_POINT_MATCH_DEVICE:
- at EXO_MOUNT_POINT_MATCH_FOLDER:
- at EXO_MOUNT_POINT_MATCH_FSTYPE:
-
-<!-- ##### FUNCTION exo_mount_point_list_matched ##### -->
-<para>
-
-</para>
-
- at mask:
- at device:
- at folder:
- at fstype:
- at error:
- at Returns:
-
-
-<!-- ##### MACRO exo_mount_point_list_active ##### -->
-<para>
-
-</para>
-
- at error:
-
-
-<!-- ##### MACRO exo_mount_point_list_configured ##### -->
-<para>
-
-</para>
-
- at error:
-
-
diff --git a/docs/reference/tmpl/exo-simple-job.sgml b/docs/reference/tmpl/exo-simple-job.sgml
deleted file mode 100644
index 484152e..0000000
--- a/docs/reference/tmpl/exo-simple-job.sgml
+++ /dev/null
@@ -1,47 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoSimpleJob
-
-<!-- ##### SECTION Short_Description ##### -->
-
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoSimpleJob ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### USER_FUNCTION ExoSimpleJobFunc ##### -->
-<para>
-
-</para>
-
- at job:
- at param_values:
- at error:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_simple_job_launch ##### -->
-<para>
-
-</para>
-
- at func:
- at n_param_values:
- at Varargs:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-string.sgml b/docs/reference/tmpl/exo-string.sgml
deleted file mode 100644
index 1375f6d..0000000
--- a/docs/reference/tmpl/exo-string.sgml
+++ /dev/null
@@ -1,90 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-String Utility Functions
-
-<!-- ##### SECTION Short_Description ##### -->
-Various string-related functions
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-This section describes a number of utility functions for manipulating
-strings.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-Stable
-
-<!-- ##### FUNCTION exo_str_elide_underscores ##### -->
-<para>
-
-</para>
-
- at text:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_str_is_equal ##### -->
-<para>
-
-</para>
-
- at a:
- at b:
- at Returns:
-
-
-
-<!-- ##### MACRO exo_str_is_empty ##### -->
-<para>
- Macro to check if a string is %NULL or empty. You should prefer
- this function over strlen (str) == 0.
-</para>
-
- at string: a string
- at Since: 0.3.101
- at Returns: %TRUE if @str is %NULL or "".
-
-
-<!-- ##### FUNCTION exo_str_replace ##### -->
-<para>
-
-</para>
-
- at str:
- at pattern:
- at replacement:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_strdup_strftime ##### -->
-<para>
-
-</para>
-
- at format:
- at tm:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_strndupv ##### -->
-<para>
-
-</para>
-
- at strv:
- at num:
- at Returns:
-
-
-<!-- ##### MACRO I_ ##### -->
-<para>
- Shortcut for g_intern_static_string().
-</para>
-
- at string: a static string.
- at Since: 0.3.1.1
-
-
diff --git a/docs/reference/tmpl/exo-toolbars-editor-dialog.sgml b/docs/reference/tmpl/exo-toolbars-editor-dialog.sgml
deleted file mode 100644
index 4e27a6c..0000000
--- a/docs/reference/tmpl/exo-toolbars-editor-dialog.sgml
+++ /dev/null
@@ -1,35 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoToolbarsEditorDialog
-
-<!-- ##### SECTION Short_Description ##### -->
-Dialog to edit toolbars
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- Provides an easy-to-use wrapper for the #ExoToolbarsEditor widget.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- #ExoToolbarsEditor
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoToolbarsEditorDialog ##### -->
-<para>
- The <structname>ExoToolbarsEditorDialog</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### FUNCTION exo_toolbars_editor_dialog_new_with_model ##### -->
-<para>
-
-</para>
-
- at ui_manager:
- at model:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-toolbars-editor.sgml b/docs/reference/tmpl/exo-toolbars-editor.sgml
deleted file mode 100644
index 0af6629..0000000
--- a/docs/reference/tmpl/exo-toolbars-editor.sgml
+++ /dev/null
@@ -1,97 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoToolbarsEditor
-
-<!-- ##### SECTION Short_Description ##### -->
-Widget to edit toolbars
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- #ExoToolbarsEditor is a widget that allows the user to edit toolbars
- used within your application by simply dragging and dropping toolbar
- items between the editor widget and the toolbar widgets.
-</para>
-
-<para>
- Most applications should simply use the #ExoToolbarsEditorDialog
- class, which includes an #ExoToolbarsEditor as main widget.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoToolbarsEditor ##### -->
-<para>
- The <structname>ExoToolbarsEditor</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### ARG ExoToolbarsEditor:model ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoToolbarsEditor:ui-manager ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION exo_toolbars_editor_new ##### -->
-<para>
-
-</para>
-
- at ui_manager:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_editor_new_with_model ##### -->
-<para>
-
-</para>
-
- at ui_manager:
- at model:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_editor_get_model ##### -->
-<para>
-
-</para>
-
- at editor:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_editor_set_model ##### -->
-<para>
-
-</para>
-
- at editor:
- at model:
-
-
-<!-- ##### FUNCTION exo_toolbars_editor_get_ui_manager ##### -->
-<para>
-
-</para>
-
- at editor:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_editor_set_ui_manager ##### -->
-<para>
-
-</para>
-
- at editor:
- at ui_manager:
-
-
diff --git a/docs/reference/tmpl/exo-toolbars-model.sgml b/docs/reference/tmpl/exo-toolbars-model.sgml
deleted file mode 100644
index 24b2513..0000000
--- a/docs/reference/tmpl/exo-toolbars-model.sgml
+++ /dev/null
@@ -1,349 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoToolbarsModel
-
-<!-- ##### SECTION Short_Description ##### -->
-The toolbars backend used by #ExoToolbarsView
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- The #ExoToolbarsModel class includes the basic functionality to manage editable toolbars.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- #ExoToolbarsView, #ExoToolbarsEditor, #ExoToolbarsEditorDialog
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoToolbarsModel ##### -->
-<para>
- The <structname>ExoToolbarsModel</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### SIGNAL ExoToolbarsModel::get-item-data ##### -->
-<para>
-
-</para>
-
- at exotoolbarsmodel: the object which received the signal.
- at arg1:
- at arg2:
- at Returns:
-
-<!-- ##### SIGNAL ExoToolbarsModel::get-item-id ##### -->
-<para>
-
-</para>
-
- at exotoolbarsmodel: the object which received the signal.
- at arg1:
- at arg2:
- at Returns:
-
-<!-- ##### SIGNAL ExoToolbarsModel::get-item-type ##### -->
-<para>
-
-</para>
-
- at exotoolbarsmodel: the object which received the signal.
- at arg1:
- at Returns:
-
-<!-- ##### SIGNAL ExoToolbarsModel::item-added ##### -->
-<para>
-
-</para>
-
- at exotoolbarsmodel: the object which received the signal.
- at arg1:
- at arg2:
-
-<!-- ##### SIGNAL ExoToolbarsModel::item-removed ##### -->
-<para>
-
-</para>
-
- at exotoolbarsmodel: the object which received the signal.
- at arg1:
- at arg2:
-
-<!-- ##### SIGNAL ExoToolbarsModel::toolbar-added ##### -->
-<para>
-
-</para>
-
- at exotoolbarsmodel: the object which received the signal.
- at arg1:
-
-<!-- ##### SIGNAL ExoToolbarsModel::toolbar-changed ##### -->
-<para>
-
-</para>
-
- at exotoolbarsmodel: the object which received the signal.
- at arg1:
-
-<!-- ##### SIGNAL ExoToolbarsModel::toolbar-removed ##### -->
-<para>
-
-</para>
-
- at exotoolbarsmodel: the object which received the signal.
- at arg1:
-
-<!-- ##### ENUM ExoToolbarsModelFlags ##### -->
-<para>
-
-</para>
-
- at EXO_TOOLBARS_MODEL_NOT_REMOVABLE:
- at EXO_TOOLBARS_MODEL_ACCEPT_ITEMS_ONLY:
- at EXO_TOOLBARS_MODEL_OVERRIDE_STYLE:
-
-<!-- ##### MACRO EXO_TOOLBARS_ITEM_TYPE ##### -->
-<para>
-
-</para>
-
-
-
-<!-- ##### FUNCTION exo_toolbars_model_new ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_set_actions ##### -->
-<para>
-
-</para>
-
- at model:
- at actions:
- at n_actions:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_get_actions ##### -->
-<para>
-
-</para>
-
- at model:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_load_from_file ##### -->
-<para>
-
-</para>
-
- at model:
- at filename:
- at error:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_save_to_file ##### -->
-<para>
-
-</para>
-
- at model:
- at filename:
- at error:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_get_flags ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_set_flags ##### -->
-<para>
-
-</para>
-
- at model:
- at flags:
- at toolbar_position:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_get_style ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_set_style ##### -->
-<para>
-
-</para>
-
- at model:
- at style:
- at toolbar_position:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_unset_style ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_get_item_type ##### -->
-<para>
-
-</para>
-
- at model:
- at dnd_type:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_get_item_id ##### -->
-<para>
-
-</para>
-
- at model:
- at type:
- at name:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_get_item_data ##### -->
-<para>
-
-</para>
-
- at model:
- at type:
- at id:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_add_item ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at item_position:
- at id:
- at type:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_add_separator ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at item_position:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_add_toolbar ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at name:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_move_item ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at item_position:
- at new_toolbar_position:
- at new_item_position:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_remove_item ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at item_position:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_remove_toolbar ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_n_items ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_item_nth ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at item_position:
- at is_separator:
- at id:
- at type:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_n_toolbars ##### -->
-<para>
-
-</para>
-
- at model:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_model_toolbar_nth ##### -->
-<para>
-
-</para>
-
- at model:
- at toolbar_position:
- at Returns:
-
-
diff --git a/docs/reference/tmpl/exo-toolbars-view.sgml b/docs/reference/tmpl/exo-toolbars-view.sgml
deleted file mode 100644
index e699209..0000000
--- a/docs/reference/tmpl/exo-toolbars-view.sgml
+++ /dev/null
@@ -1,128 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoToolbarsView
-
-<!-- ##### SECTION Short_Description ##### -->
-Widget for displaying toolbars
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- A widget that displays toolbars as described in a #ExoToolbarsModel object.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- #ExoToolbarsEditor, #ExoToolbarsEditorDialog, #ExoToolbarsModel
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoToolbarsView ##### -->
-<para>
- The <structname>ExoToolbarsView</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### SIGNAL ExoToolbarsView::action-request ##### -->
-<para>
-
-</para>
-
- at exotoolbarsview: the object which received the signal.
- at arg1:
-
-<!-- ##### SIGNAL ExoToolbarsView::customize ##### -->
-<para>
-
-</para>
-
- at exotoolbarsview: the object which received the signal.
-
-<!-- ##### ARG ExoToolbarsView:editing ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoToolbarsView:model ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoToolbarsView:ui-manager ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION exo_toolbars_view_new ##### -->
-<para>
-
-</para>
-
- at ui_manager:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_view_new_with_model ##### -->
-<para>
-
-</para>
-
- at ui_manager:
- at model:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_view_get_editing ##### -->
-<para>
-
-</para>
-
- at view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_view_set_editing ##### -->
-<para>
-
-</para>
-
- at view:
- at editing:
-
-
-<!-- ##### FUNCTION exo_toolbars_view_get_model ##### -->
-<para>
-
-</para>
-
- at view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_view_set_model ##### -->
-<para>
-
-</para>
-
- at view:
- at model:
-
-
-<!-- ##### FUNCTION exo_toolbars_view_get_ui_manager ##### -->
-<para>
-
-</para>
-
- at view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_toolbars_view_set_ui_manager ##### -->
-<para>
-
-</para>
-
- at view:
- at ui_manager:
-
-
diff --git a/docs/reference/tmpl/exo-tree-view.sgml b/docs/reference/tmpl/exo-tree-view.sgml
deleted file mode 100644
index 0153355..0000000
--- a/docs/reference/tmpl/exo-tree-view.sgml
+++ /dev/null
@@ -1,84 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoTreeView
-
-<!-- ##### SECTION Short_Description ##### -->
-An improved version of #GtkTreeView
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- The #ExoTreeView class derives from #GtkTreeView and extends it with
- the ability to activate rows using single button clicks instead of
- the default double button clicks. It also works around a few shortcomings
- of #GtkTreeView, i.e. #ExoTreeView allows the user to drag around multiple
- selected rows.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-Stable
-
-<!-- ##### STRUCT ExoTreeView ##### -->
-<para>
- The ExoIconView struct contains only private fields and should
- not be directly accessed.
-</para>
-
-
-<!-- ##### ARG ExoTreeView:single-click ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoTreeView:single-click-timeout ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION exo_tree_view_new ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_tree_view_get_single_click ##### -->
-<para>
-
-</para>
-
- at tree_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_tree_view_set_single_click ##### -->
-<para>
-
-</para>
-
- at tree_view:
- at single_click:
-
-
-<!-- ##### FUNCTION exo_tree_view_get_single_click_timeout ##### -->
-<para>
-
-</para>
-
- at tree_view:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_tree_view_set_single_click_timeout ##### -->
-<para>
-
-</para>
-
- at tree_view:
- at single_click_timeout:
-
-
diff --git a/docs/reference/tmpl/exo-utils.sgml b/docs/reference/tmpl/exo-utils.sgml
deleted file mode 100644
index 919d43d..0000000
--- a/docs/reference/tmpl/exo-utils.sgml
+++ /dev/null
@@ -1,93 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Miscellaneous Utility Functions
-
-<!-- ##### SECTION Short_Description ##### -->
-Various utility functions
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- This module contains various utility functions that extend the basic utility functions provided by the
- <ulink type="http" url="http://developer.gnome.org/doc/API/2.0/glib/index.html">GLib</ulink> library.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
- <ulink type="http" url="http://developer.gnome.org/doc/API/2.0/glib/glib-Atomic-Operations.html">GLib Atomic Operations</ulink>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-Stable
-
-<!-- ##### FUNCTION exo_noop ##### -->
-<para>
-
-</para>
-
-
-
-<!-- ##### FUNCTION exo_noop_one ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_noop_zero ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_noop_null ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_noop_true ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_noop_false ##### -->
-<para>
-
-</para>
-
- at Returns:
-
-
-<!-- ##### FUNCTION exo_atomic_inc ##### -->
-<para>
- Increments the integer at @value by one in an
- atomic fashion. The advantage over using
- g_atomic_int_inc() is that calls to this
- function can be inlined.
-</para>
-
- at value: a pointer to the integer value to increment.
- at Since: 0.3.1
-
-
-<!-- ##### FUNCTION exo_atomic_dec ##### -->
-<para>
- Decrements the integer at @value by one in an atomic
- fashion and returns %TRUE if the @value dropped to
- zero by this operation, else %FALSE. The advantage
- over using g_atomic_int_dec() is that calls to this
- function can be inlined.
-</para>
-
- at value: a pointer to the integer value to decrement.
- at Returns: %TRUE if @value dropped to zero, else %FALSE.
- at Since: 0.3.1
-
-
diff --git a/docs/reference/tmpl/exo-wrap-table.sgml b/docs/reference/tmpl/exo-wrap-table.sgml
deleted file mode 100644
index f44d2c5..0000000
--- a/docs/reference/tmpl/exo-wrap-table.sgml
+++ /dev/null
@@ -1,106 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoWrapTable
-
-<!-- ##### SECTION Short_Description ##### -->
-A container widget with automatic child layouting
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
- The #ExoWrapTable class layouts its children automatically
- according to the available width allocated to the container
- class.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### STRUCT ExoWrapTable ##### -->
-<para>
- The #ExoWrapTable struct contains only private fields
- and should not be directly accessed.
-</para>
-
- at Since: 0.3.1
-
-<!-- ##### ARG ExoWrapTable:col-spacing ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoWrapTable:homogeneous ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoWrapTable:row-spacing ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION exo_wrap_table_new ##### -->
-<para>
-
-</para>
-
- at homogeneous:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_wrap_table_get_col_spacing ##### -->
-<para>
-
-</para>
-
- at table:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_wrap_table_set_col_spacing ##### -->
-<para>
-
-</para>
-
- at table:
- at col_spacing:
-
-
-<!-- ##### FUNCTION exo_wrap_table_get_row_spacing ##### -->
-<para>
-
-</para>
-
- at table:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_wrap_table_set_row_spacing ##### -->
-<para>
-
-</para>
-
- at table:
- at row_spacing:
-
-
-<!-- ##### FUNCTION exo_wrap_table_get_homogeneous ##### -->
-<para>
-
-</para>
-
- at table:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_wrap_table_set_homogeneous ##### -->
-<para>
-
-</para>
-
- at table:
- at homogeneous:
-
-
diff --git a/docs/reference/tmpl/exo-xsession-client.sgml b/docs/reference/tmpl/exo-xsession-client.sgml
deleted file mode 100644
index 87c0939..0000000
--- a/docs/reference/tmpl/exo-xsession-client.sgml
+++ /dev/null
@@ -1,171 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-ExoXsessionClient
-
-<!-- ##### SECTION Short_Description ##### -->
-Lightweight session management support
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-This module provides application developers with lightweight
-session management functions, based on the X11R5 session management
-protocol. The X11R5 session management protocol is very limited in
-its functionality and flexibility compared to the newer X11R6
-session management protocol (XSMP), but - on the other hand - offers several
-advantages for applications that do not need the complicated features
-of the XSMP. Most importantly, the setup is much easier and
-faster than with XSMP, because no special actions must be taken.
-</para>
-<para>
-So, in case your application is simple in its session management
-requirements, e.g. it only needs to tell the session manager
-its restart command, you may want to use the #ExoXsessionClient
-instead of a full featured XSMP client.
-</para>
-<para>
-Lets say, for example, you are developing a text editor, which
-should provide basic session management support, limited to
-proper restarting all editor windows that where left open
-when you logged off the X session. In case the user was editing
-a file when logging off, the same file should be opened in the
-window on next startup.
-</para>
-<example>
-<title>Texteditor with <structname>ExoXsessionClient</structname></title>
-<programlisting>
-static gchar *open_file_name = NULL;
-
-static void
-save_yourself (ExoXsessionClient *client)
-{
- gchar *argv[2];
-
- if (open_file_name != NULL)
- {
- argv[0] = "myeditor";
- argv[1] = open_file_name;
-
- exo_xsession_client_set_restart_command (client, argv, 2);
- }
- else
- {
- argv[0] = "myeditor";
-
- exo_xsession_client_set_restart_command (client, argv, 1);
- }
-}
-
-/* ... */
-
-int
-main (int argc, char **argv)
-{
- ExoXsessionClient *client;
- GdkDisplay *display;
- GdkWindow *leader;
- GtkWidget *window;
-
- gtk_init (&argc, &argv);
-
- if (argc > 1)
- open_file_name = argv[1];
-
- /* create the main window */
- window = create_window ();
-
- /* setup the session client */
- display = gtk_widget_get_display (window);
- leader = gdk_display_get_default_group (display);
- client = exo_xsession_client_new_with_group (leader);
- g_signal_connect (G_OBJECT (client), "save-yourself",
- G_CALLBACK (save_yourself), NULL);
-
- /* ... */
-}
-</programlisting>
-</example>
-<para>
-This example demonstrates the basic handling of #ExoXsessionClient. It is
-oversimplified, but we hope you get the point. The rule of thumb is, use
-#ExoXsessionClient if you can store all session data in the restart command,
-else use a full-featured XSMP client.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-Stable
-
-<!-- ##### STRUCT ExoXsessionClient ##### -->
-<para>
- The <structname>ExoXsessionClient</structname> struct contains only private fields and should not be directly accessed.
-</para>
-
-
-<!-- ##### SIGNAL ExoXsessionClient::save-yourself ##### -->
-<para>
-
-</para>
-
- at exoxsessionclient: the object which received the signal.
-
-<!-- ##### ARG ExoXsessionClient:group ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG ExoXsessionClient:restart-command ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION exo_xsession_client_new_with_group ##### -->
-<para>
-
-</para>
-
- at leader:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_xsession_client_get_group ##### -->
-<para>
-
-</para>
-
- at client:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_xsession_client_set_group ##### -->
-<para>
-
-</para>
-
- at client:
- at leader:
-
-
-<!-- ##### FUNCTION exo_xsession_client_get_restart_command ##### -->
-<para>
-
-</para>
-
- at client:
- at argv:
- at argc:
- at Returns:
-
-
-<!-- ##### FUNCTION exo_xsession_client_set_restart_command ##### -->
-<para>
-
-</para>
-
- at client:
- at argv:
- at argc:
-
-
More information about the Xfce4-commits
mailing list