[Xfce4-commits] [xfce/libxfce4ui] 06/08: Better documentation processing

noreply at xfce.org noreply at xfce.org
Wed May 10 04:38:04 CEST 2017


This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/libxfce4ui.

commit 1fa6f11717e5767079aa421e2ee9c7c4a8c8ce15
Author: Romain B <skunnyk at alteroot.org>
Date:   Mon May 8 22:48:06 2017 +0200

    Better documentation processing
    
    	- No more sgml things.
    	- You only need to add new functions to docs/libxfce4ui-sections.txt to add them to the doc.
    
    Signed-off-by: Eric Koegel <eric.koegel at gmail.com>
---
 docs/Makefile.am                                   |   2 +-
 docs/{libxfce4ui-docs.sgml => libxfce4ui-docs.xml} |   0
 docs/tmpl/libxfce4ui-config.sgml                   | 115 --------
 docs/tmpl/libxfce4ui-unused.sgml                   |  52 ----
 docs/tmpl/xfce-dialogs.sgml                        | 154 ----------
 docs/tmpl/xfce-gdk-extensions.sgml                 |  33 ---
 docs/tmpl/xfce-gtk-extensions.sgml                 |  86 ------
 docs/tmpl/xfce-pango-extensions.sgml               |  31 --
 docs/tmpl/xfce-sm-client.sgml                      | 328 ---------------------
 docs/tmpl/xfce-spawn.sgml                          |  71 -----
 docs/tmpl/xfce-titled-dialog.sgml                  |  93 ------
 11 files changed, 1 insertion(+), 964 deletions(-)

diff --git a/docs/Makefile.am b/docs/Makefile.am
index d9bb4b8..2453a54 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = 1.11
 DOC_MODULE=libxfce4ui
 
 # The top-level SGML file.
-DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
+DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml
 
 # Extra options to supply to gtkdoc-scan
 SCAN_OPTIONS=--deprecated-guards="XFCE_DISABLE_DEPRECATED"
diff --git a/docs/libxfce4ui-docs.sgml b/docs/libxfce4ui-docs.xml
similarity index 100%
rename from docs/libxfce4ui-docs.sgml
rename to docs/libxfce4ui-docs.xml
diff --git a/docs/tmpl/libxfce4ui-config.sgml b/docs/tmpl/libxfce4ui-config.sgml
deleted file mode 100644
index e3dab61..0000000
--- a/docs/tmpl/libxfce4ui-config.sgml
+++ /dev/null
@@ -1,115 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Version Information
-
-<!-- ##### SECTION Short_Description ##### -->
-Variables and functions to check the Libxfce4ui version.
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-Libxfce4ui provides version information, primarily useful in configure
-checks for builds that have a configure script. Applications will not
-typically use the features described here.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### FUNCTION libxfce4ui_check_version ##### -->
-<para>
-
-</para>
-
- at required_major: 
- at required_minor: 
- at required_micro: 
- at Returns: 
-
-
-<!-- ##### VARIABLE libxfce4ui_major_version ##### -->
-<para>
-The major version number of the Libxfce4ui library (e.g. in version
-1.2.3 this is 1).
-</para>
-
-<para>
-This variable is in the library, so represents the Libxfce4ui library
-you have linked against. Contrast with the #LIBXFCE4UI_MAJOR_VERSION
-macro, which represents the major version of the Libxfce4ui headers
-you have included.
-</para>
-
-
-<!-- ##### VARIABLE libxfce4ui_minor_version ##### -->
-<para>
-The minor version number of the Libxfce4ui library (e.g. in version
-1.2.3 this is 2).
-</para>
-
-<para>
-This variable is in the library, so represents the Libxfce4ui library
-you have linked against. Contrast with the #LIBXFCE4UI_MINOR_VERSION
-macro, which represents the minor version of the Libxfce4ui headers
-you have included.
-</para>
-
-
-<!-- ##### VARIABLE libxfce4ui_micro_version ##### -->
-<para>
-The micro version number of the Libxfce4ui library (e.g. in version
-1.2.3 this is 3).
-</para>
-
-<para>
-This variable is in the library, so represents the Libxfce4ui library
-you have linked against. Contrast with the #LIBXFCE4UI_MICRO_VERSION
-macro, which represents the micro version of the Libxfce4ui headers
-you have included.
-</para>
-
-
-<!-- ##### MACRO LIBXFCE4UI_MAJOR_VERSION ##### -->
-<para>
-Like #libxfce4ui_major_version, but from the headers used at
-application compile time, rather than from the library linked against
-at application run time.
-</para>
-
-
-
-<!-- ##### MACRO LIBXFCE4UI_MINOR_VERSION ##### -->
-<para>
-Like #libxfce4ui_minor_version, but from the headers used at
-application compile time, rather than from the library linked against
-at application run time.
-</para>
-
-
-
-<!-- ##### MACRO LIBXFCE4UI_MICRO_VERSION ##### -->
-<para>
-Like #libxfce4ui_micro_version, but from the headers used at
-application compile time, rather than from the library linked against
-at application run time.
-</para>
-
-
-
-<!-- ##### MACRO LIBXFCE4UI_CHECK_VERSION ##### -->
-<para>
-Returns %TRUE if the version of the Libxfce4ui header files is the same
-as or newer than the passed-in version.
-</para>
-
- at major: major version (e.g. 1 for version 1.2.3)
- at minor: minor version (e.g. 2 for version 1.2.3)
- at micro: micro version (e.g. 3 for version 1.2.3)
-
-
diff --git a/docs/tmpl/libxfce4ui-unused.sgml b/docs/tmpl/libxfce4ui-unused.sgml
deleted file mode 100644
index ab23b1c..0000000
--- a/docs/tmpl/libxfce4ui-unused.sgml
+++ /dev/null
@@ -1,52 +0,0 @@
-<!-- ##### SECTION ./tmpl/xfce-pango-extensions.sgml:Long_Description ##### -->
-<para>
-These functions allow the developer to quickly work with Pango attributes.
-</para>
-
-
-<!-- ##### SECTION ./tmpl/xfce-pango-extensions.sgml:See_Also ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### SECTION ./tmpl/xfce-pango-extensions.sgml:Short_Description ##### -->
-Common used functions to easily access Pango functions.
-
-
-<!-- ##### SECTION ./tmpl/xfce-pango-extensions.sgml:Stability_Level ##### -->
-
-
-
-<!-- ##### SECTION ./tmpl/xfce-pango-extensions.sgml:Title ##### -->
-Xfce Pango Extensions
-
-
-<!-- ##### STRUCT XfceSMClientClass ##### -->
-<para>
-
-</para>
-
- at parent: 
- at save_state: 
- at save_state_extended: 
- at quit_requested: 
- at quit: 
- at quit_cancelled: 
- at state_changed: 
- at _xfce_reserved0: 
- at _xfce_reserved1: 
- at _xfce_reserved2: 
- at _xfce_reserved3: 
-
-<!-- ##### FUNCTION xfce_pango_attr_list_new ##### -->
-<para>
-
-</para>
-
- at scale_factor: 
- at style: 
- at weight: 
- at underline: 
- at Returns: 
-
diff --git a/docs/tmpl/xfce-dialogs.sgml b/docs/tmpl/xfce-dialogs.sgml
deleted file mode 100644
index f9afb18..0000000
--- a/docs/tmpl/xfce-dialogs.sgml
+++ /dev/null
@@ -1,154 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Xfce Dialogs
-
-<!-- ##### SECTION Short_Description ##### -->
-Common used dialogs to interact with the user.
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-Useful convientent function to interact with the user using a
-#GtkMessageDialog.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### FUNCTION xfce_message_dialog_new ##### -->
-<para>
-
-</para>
-
- at parent: 
- at title: 
- at stock_id: 
- at primary_text: 
- at secondary_text: 
- at first_button_text: 
- at ...:
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_message_dialog_new_valist ##### -->
-<para>
-
-</para>
-
- at parent: 
- at title: 
- at icon_stock_id: 
- at primary_text: 
- at secondary_text: 
- at first_button_text: 
- at args: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_message_dialog ##### -->
-<para>
-
-</para>
-
- at parent: 
- at title: 
- at stock_id: 
- at primary_text: 
- at secondary_text: 
- at first_button_text: 
- at ...:
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_dialog_show_help ##### -->
-<para>
-
-</para>
-
- at parent:
- at component:
- at page:
- at offset:
-
-
-<!-- ##### FUNCTION xfce_dialog_show_help_with_version ##### -->
-<para>
-
-</para>
-
- at parent:
- at component:
- at page:
- at offset:
- at version:
-
-
-<!-- ##### FUNCTION xfce_dialog_show_info ##### -->
-<para>
-
-</para>
-
- at parent: 
- at secondary_text: 
- at primary_format: 
- at ...:
-
-
-<!-- ##### FUNCTION xfce_dialog_show_warning ##### -->
-<para>
-
-</para>
-
- at parent: 
- at secondary_text: 
- at primary_format: 
- at ...:
-
-
-<!-- ##### FUNCTION xfce_dialog_show_error ##### -->
-<para>
-
-</para>
-
- at parent: 
- at error: 
- at primary_format: 
- at ...:
-
-
-<!-- ##### FUNCTION xfce_dialog_confirm ##### -->
-<para>
-
-</para>
-
- at parent: 
- at stock_id: 
- at confirm_label: 
- at secondary_text: 
- at primary_format: 
- at ...:
- at Returns: 
-
-
-<!-- ##### MACRO XFCE_BUTTON_TYPE_MIXED ##### -->
-<para>
-Used to define a mixed button in xfce_message_dialog_new() and
-xfce_message_dialog_run().
-</para>
-
-
-
-<!-- ##### MACRO XFCE_BUTTON_TYPE_PIXBUF ##### -->
-<para>
-Used to define a #GdkPixuf button in xfce_message_dialog_new() and
-xfce_message_dialog_run().
-</para>
-
-
-
diff --git a/docs/tmpl/xfce-gdk-extensions.sgml b/docs/tmpl/xfce-gdk-extensions.sgml
deleted file mode 100644
index a02496b..0000000
--- a/docs/tmpl/xfce-gdk-extensions.sgml
+++ /dev/null
@@ -1,33 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Xfce Gdk(-pixbuf) extensions
-
-<!-- ##### SECTION Short_Description ##### -->
-Common used functions that are not provided by the Gdk or Gdk-pixbuf library.
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-Useful functions to quickly access common used Gdk functionality that
-is not proveded by the Gdk library. It also contains function based
-on the Gdk-pixbuf library.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### FUNCTION xfce_gdk_screen_get_active ##### -->
-<para>
-
-</para>
-
- at monitor_return: 
- at Returns: 
-
-
diff --git a/docs/tmpl/xfce-gtk-extensions.sgml b/docs/tmpl/xfce-gtk-extensions.sgml
deleted file mode 100644
index e34018e..0000000
--- a/docs/tmpl/xfce-gtk-extensions.sgml
+++ /dev/null
@@ -1,86 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Xfce Gtk+ extensions
-
-<!-- ##### SECTION Short_Description ##### -->
-Common used functions for #GtkWidget's that are not provided by
-the Gtk+ library.
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-These functions allow the developer to quickly create common widgets,
-without the hassle of creating formatted string or a lot of code
-dupplication.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### FUNCTION xfce_gtk_button_new_mixed ##### -->
-<para>
-
-</para>
-
- at stock_id: 
- at label: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_gtk_frame_box_new ##### -->
-<para>
-
-</para>
-
- at label: 
- at container_return: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_gtk_frame_box_new_with_content ##### -->
-<para>
-
-</para>
-
- at label: 
- at content: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_gtk_window_center_on_active_screen ##### -->
-<para>
-
-</para>
-
- at window: 
-
-
-<!-- ##### FUNCTION xfce_widget_reparent ##### -->
-<para>
-
-</para>
-
- at widget:
- at new_parent:
- at Returns:
-
-
-<!-- ##### FUNCTION xfce_gtk_menu_popup_until_mapped ##### -->
-<para>
-
-</para>
-
- at menu:
- at parent_menu_shell:
- at parent_menu_item:
- at func:
- at data:
- at button:
- at activate_time:
- at Returns:
diff --git a/docs/tmpl/xfce-pango-extensions.sgml b/docs/tmpl/xfce-pango-extensions.sgml
deleted file mode 100644
index 604dfe4..0000000
--- a/docs/tmpl/xfce-pango-extensions.sgml
+++ /dev/null
@@ -1,31 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Xfce Pango Extensions
-
-<!-- ##### SECTION Short_Description ##### -->
-Common used functions to easily access Pango functions.
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-These functions allow the developer to quickly work with Pango attributes.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### FUNCTION xfce_pango_attr_list_new ##### -->
-<para>
-
-</para>
-
- at scale_factor: 
- at style: 
- at weight: 
- at underline: 
- at Returns: 
-
-
diff --git a/docs/tmpl/xfce-sm-client.sgml b/docs/tmpl/xfce-sm-client.sgml
deleted file mode 100644
index 11974a8..0000000
--- a/docs/tmpl/xfce-sm-client.sgml
+++ /dev/null
@@ -1,328 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-
-
-<!-- ##### SECTION Short_Description ##### -->
-
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT XfceSMClient ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### SIGNAL XfceSMClient::quit ##### -->
-<para>
-
-</para>
-
- at xfcesmclient: the object which received the signal.
-
-<!-- ##### SIGNAL XfceSMClient::quit-cancelled ##### -->
-<para>
-
-</para>
-
- at xfcesmclient: the object which received the signal.
-
-<!-- ##### SIGNAL XfceSMClient::quit-requested ##### -->
-<para>
-
-</para>
-
- at xfcesmclient: the object which received the signal.
- at Returns: 
-
-<!-- ##### SIGNAL XfceSMClient::save-state ##### -->
-<para>
-
-</para>
-
- at xfcesmclient: the object which received the signal.
-
-<!-- ##### SIGNAL XfceSMClient::save-state-extended ##### -->
-<para>
-
-</para>
-
- at xfcesmclient: the object which received the signal.
-
-<!-- ##### ARG XfceSMClient:argc ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG XfceSMClient:argv ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG XfceSMClient:client-id ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG XfceSMClient:current-directory ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG XfceSMClient:desktop-file ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG XfceSMClient:priority ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG XfceSMClient:restart-command ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG XfceSMClient:restart-style ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG XfceSMClient:resumed ##### -->
-<para>
-
-</para>
-
-<!-- ##### ENUM XfceSMClientPriority ##### -->
-<para>
-
-</para>
-
- at XFCE_SM_CLIENT_PRIORITY_HIGHEST: 
- at XFCE_SM_CLIENT_PRIORITY_WM: 
- at XFCE_SM_CLIENT_PRIORITY_CORE: 
- at XFCE_SM_CLIENT_PRIORITY_DESKTOP: 
- at XFCE_SM_CLIENT_PRIORITY_DEFAULT: 
- at XFCE_SM_CLIENT_PRIORITY_LOWEST: 
-
-<!-- ##### ENUM XfceSMClientRestartStyle ##### -->
-<para>
-
-</para>
-
- at XFCE_SM_CLIENT_RESTART_NORMAL: 
- at XFCE_SM_CLIENT_RESTART_IMMEDIATELY: 
-
-<!-- ##### ENUM XfceSMClientShutdownHint ##### -->
-<para>
-
-</para>
-
- at XFCE_SM_CLIENT_SHUTDOWN_HINT_ASK: 
- at XFCE_SM_CLIENT_SHUTDOWN_HINT_LOGOUT: 
- at XFCE_SM_CLIENT_SHUTDOWN_HINT_HALT: 
- at XFCE_SM_CLIENT_SHUTDOWN_HINT_REBOOT: 
-
-<!-- ##### FUNCTION xfce_sm_client_get_option_group ##### -->
-<para>
-
-</para>
-
- at argc: 
- at argv: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get ##### -->
-<para>
-
-</para>
-
- at void: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get_with_argv ##### -->
-<para>
-
-</para>
-
- at argc: 
- at argv: 
- at restart_style: 
- at priority: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get_full ##### -->
-<para>
-
-</para>
-
- at restart_style: 
- at priority: 
- at resumed_client_id: 
- at current_directory: 
- at restart_command: 
- at desktop_file: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_connect ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at error: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_disconnect ##### -->
-<para>
-
-</para>
-
- at sm_client: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_is_connected ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_is_resumed ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_set_desktop_file ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at desktop_file: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_request_shutdown ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at shutdown_hint: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get_client_id ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get_state_file ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get_current_directory ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_set_current_directory ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at current_directory: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get_priority ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_set_priority ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at priority: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get_restart_command ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_set_restart_command ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at restart_command: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_get_restart_style ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_sm_client_set_restart_style ##### -->
-<para>
-
-</para>
-
- at sm_client: 
- at restart_style: 
-
-
diff --git a/docs/tmpl/xfce-spawn.sgml b/docs/tmpl/xfce-spawn.sgml
deleted file mode 100644
index dd95589..0000000
--- a/docs/tmpl/xfce-spawn.sgml
+++ /dev/null
@@ -1,71 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Xfce Spawn
-
-<!-- ##### SECTION Short_Description ##### -->
-Functions to spawn a command with startup notification support.
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-On a desktop it is important that applications are execute with
-startup notification and they show up on the correct screen and workspace.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### FUNCTION xfce_spawn_on_screen_with_child_watch ##### -->
-<para>
-
-</para>
-
- at screen: 
- at working_directory: 
- at argv: 
- at envp: 
- at flags: 
- at startup_notify: 
- at startup_timestamp: 
- at startup_icon_name: 
- at child_watch_closure: 
- at error: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_spawn_on_screen ##### -->
-<para>
-
-</para>
-
- at screen: 
- at working_directory: 
- at argv: 
- at envp: 
- at flags: 
- at startup_notify: 
- at startup_timestamp: 
- at startup_icon_name: 
- at error: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_spawn_command_line_on_screen ##### -->
-<para>
-
-</para>
-
- at screen: 
- at command_line: 
- at in_terminal: 
- at startup_notify: 
- at error: 
- at Returns: 
-
-
diff --git a/docs/tmpl/xfce-titled-dialog.sgml b/docs/tmpl/xfce-titled-dialog.sgml
deleted file mode 100644
index 4f7de4c..0000000
--- a/docs/tmpl/xfce-titled-dialog.sgml
+++ /dev/null
@@ -1,93 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-Xfce Titled Dialog
-
-<!-- ##### SECTION Short_Description ##### -->
-A #GtkDialog with heading.
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-The #XfceTitledDialog is a normal #GtkDialog with a heading. The icon
-and title used in the heading are the same as the dialog title and icon
-See gtk_window_set_icon_name().
-</para>
-
-<para>
-To give the user more detailed information about the use of the dialog,
-an optional subtitle and be set using xfce_titled_dialog_set_subtitle().
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-#GtkDialog, #GtkWindow
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT XfceTitledDialog ##### -->
-<para>
-Structure for the #XfceTitledDialog.
-</para>
-
-
-<!-- ##### ARG XfceTitledDialog:subtitle ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION xfce_titled_dialog_new ##### -->
-<para>
-
-</para>
-
- at void: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_titled_dialog_new_with_buttons ##### -->
-<para>
-
-</para>
-
- at title: 
- at parent: 
- at flags: 
- at first_button_text:
- at ...:
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_titled_dialog_new_with_mixed_buttons ##### -->
-<para>
-
-</para>
-
- at title:
- at parent:
- at flags:
- at first_button_icon_name:
- at first_button_text:
- at ...:
- at Returns:
-
-<!-- ##### FUNCTION xfce_titled_dialog_get_subtitle ##### -->
-<para>
-
-</para>
-
- at titled_dialog: 
- at Returns: 
-
-
-<!-- ##### FUNCTION xfce_titled_dialog_set_subtitle ##### -->
-<para>
-
-</para>
-
- at titled_dialog: 
- at subtitle: 
-
-

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list