diff options
Diffstat (limited to 'docs/API/tmpl')
-rw-r--r-- | docs/API/tmpl/libxfce4panel-macros.sgml | 98 | ||||
-rw-r--r-- | docs/API/tmpl/libxfce4panel-unused.sgml | 82 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-arrow-button.sgml | 67 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-hvbox.sgml | 47 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-itembar.sgml | 222 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-panel-convenience.sgml | 42 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-panel-enums.sgml | 113 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-panel-external-plugin.sgml | 39 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-panel-internal-plugin.sgml | 42 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-panel-plugin-iface.sgml | 306 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-panel-plugin.sgml | 65 | ||||
-rw-r--r-- | docs/API/tmpl/xfce-panel-window.sgml | 200 |
12 files changed, 0 insertions, 1323 deletions
diff --git a/docs/API/tmpl/libxfce4panel-macros.sgml b/docs/API/tmpl/libxfce4panel-macros.sgml deleted file mode 100644 index 353d9a35..00000000 --- a/docs/API/tmpl/libxfce4panel-macros.sgml +++ /dev/null @@ -1,98 +0,0 @@ -<!-- ##### SECTION Title ##### --> -Common macros - -<!-- ##### SECTION Short_Description ##### --> -Macros to work glib version independent. - -<!-- ##### SECTION Long_Description ##### --> -<para> -Macros for plugin writers to use new features in Glib 2.8 and 2.10 without -breaking old versions of Glib. It is recommended to use those macros -when possible. -</para> - -<!-- ##### SECTION See_Also ##### --> - - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### MACRO panel_slice_alloc ##### --> -<para> -Use #g_slice_alloc when available, fallback to #g_malloc. -</para> - -@block_size: the number of bytes to allocate - - -<!-- ##### MACRO panel_slice_alloc0 ##### --> -<para> -Use #g_slice_alloc0 when available, fallback to #g_malloc0. -</para> - -@block_size: the number of bytes to allocate - - -<!-- ##### MACRO panel_slice_free ##### --> -<para> -Use #g_slice_free when available, fallback to #g_free. -</para> - -@type: the type to allocate, typically a structure name -@ptr: a pointer to the block to free - - -<!-- ##### MACRO panel_slice_free1 ##### --> -<para> -Use #g_slice_free1 when available, fallback to #g_free. -</para> - -@block_size: the number of bytes to allocate -@mem_block: a pointer to the block to free - - -<!-- ##### MACRO panel_slice_new ##### --> -<para> -Use #g_slice_new when available, fallback to #g_new. -</para> - -@type: the type to allocate, typically a structure name - - -<!-- ##### MACRO panel_slice_new0 ##### --> -<para> -Use #g_slice_new0 when available, fallback to #g_new0. -</para> - -@type: the type to allocate, typically a structure name - - -<!-- ##### MACRO PANEL_PARAM_READABLE ##### --> -<para> -Alias for #G_PARAM_READABLE | #G_PARAM_STATIC_NAME | #G_PARAM_STATIC_NICK | #G_PARAM_STATIC_BLURB -</para> - - - -<!-- ##### MACRO PANEL_PARAM_READWRITE ##### --> -<para> -Alias for #G_PARAM_WRITABLE | #G_PARAM_STATIC_NAME | #G_PARAM_STATIC_NICK | #G_PARAM_STATIC_BLURB -</para> - - - -<!-- ##### MACRO PANEL_PARAM_WRITABLE ##### --> -<para> -Alias for #G_PARAM_READWRITE | #G_PARAM_STATIC_NAME | #G_PARAM_STATIC_NICK | #G_PARAM_STATIC_BLURB -</para> - - - -<!-- ##### MACRO I_ ##### --> -<para> -Canonical representation for @string. This can be use in functions like #g_object_get_data. -</para> - -@string: a string - - diff --git a/docs/API/tmpl/libxfce4panel-unused.sgml b/docs/API/tmpl/libxfce4panel-unused.sgml deleted file mode 100644 index 09ceda91..00000000 --- a/docs/API/tmpl/libxfce4panel-unused.sgml +++ /dev/null @@ -1,82 +0,0 @@ -<!-- ##### STRUCT XfceArrowButtonClass ##### --> -<para> -</para> - -@parent_class: -@arrow_type_changed: -@_xfce_reserved1: -@_xfce_reserved2: -@_xfce_reserved3: - -<!-- ##### STRUCT XfceExternalPanelPluginClass ##### --> -<para> - -</para> - -@parent_class: - -<!-- ##### STRUCT XfceInternalPanelPluginClass ##### --> -<para> - -</para> - -@parent_class: - -<!-- ##### STRUCT XfceItembarClass ##### --> -<para> - -</para> - -@parent_class: -@orientation_changed: -@icon_size_changed: -@toolbar_style_changed: -@_xfce_reserved1: -@_xfce_reserved2: -@_xfce_reserved3: - -<!-- ##### STRUCT XfcePanelPluginInterface ##### --> -<para> - -</para> - - -<!-- ##### STRUCT XfcePanelWindowClass ##### --> -<para> - -</para> - -@parent_class: -@orientation_changed: -@move_start: -@move: -@move_end: -@_xfce_reserved1: -@_xfce_reserved2: -@_xfce_reserved3: - -<!-- ##### FUNCTION xfce_panel_plugin_get_data ##### --> -<para> - -</para> - -@plugin: -@Returns: - -<!-- ##### FUNCTION xfce_panel_plugin_get_rc_file ##### --> -<para> - -</para> - -@plugin: -@read_only: -@Returns: - -<!-- ##### FUNCTION xfce_panel_plugin_set_data ##### --> -<para> - -</para> - -@plugin: -@data: - diff --git a/docs/API/tmpl/xfce-arrow-button.sgml b/docs/API/tmpl/xfce-arrow-button.sgml deleted file mode 100644 index e335e87b..00000000 --- a/docs/API/tmpl/xfce-arrow-button.sgml +++ /dev/null @@ -1,67 +0,0 @@ -<!-- ##### SECTION Title ##### --> -XfceArrowButton - -<!-- ##### SECTION Short_Description ##### --> -Toggle button with arrow. - -<!-- ##### SECTION Long_Description ##### --> -<para> -Toggle button with arrow. The arrow direction will be inverted when the button -is toggled. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> -#GtkToggleButton -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### STRUCT XfceArrowButton ##### --> -<para> -The #XfceArrowButton-struct struct contains private data only, and -should be accessed using the functions below. -</para> - - -<!-- ##### SIGNAL XfceArrowButton::arrow-type-changed ##### --> -<para> - -</para> - -@xfcearrowbutton: the object which received the signal. -@arg1: - -<!-- ##### ARG XfceArrowButton:arrow-type ##### --> -<para> - -</para> - -<!-- ##### FUNCTION xfce_arrow_button_new ##### --> -<para> - -</para> - -@type: -@Returns: - - -<!-- ##### FUNCTION xfce_arrow_button_set_arrow_type ##### --> -<para> - -</para> - -@button: -@type: - - -<!-- ##### FUNCTION xfce_arrow_button_get_arrow_type ##### --> -<para> - -</para> - -@button: -@Returns: - - diff --git a/docs/API/tmpl/xfce-hvbox.sgml b/docs/API/tmpl/xfce-hvbox.sgml deleted file mode 100644 index 57c3da61..00000000 --- a/docs/API/tmpl/xfce-hvbox.sgml +++ /dev/null @@ -1,47 +0,0 @@ -<!-- ##### SECTION Title ##### --> -XfceHVBox - -<!-- ##### SECTION Short_Description ##### --> -Container widget with configurable orienation. - -<!-- ##### SECTION Long_Description ##### --> -<para> -#XfceHVBox is a #GtkBox widget that allows the user to change its orientation. -It is in fact a combination of #GtkHBox and #GtkVBox. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### STRUCT XfceHVBox ##### --> -<para> -The #XfceHVBox struct contains private data only, and -should be accessed using the functions below. -</para> - - -<!-- ##### FUNCTION xfce_hvbox_new ##### --> -<para> - -</para> - -@orientation: -@homogeneous: -@spacing: -@Returns: - - -<!-- ##### FUNCTION xfce_hvbox_set_orientation ##### --> -<para> - -</para> - -@hvbox: -@orientation: - - diff --git a/docs/API/tmpl/xfce-itembar.sgml b/docs/API/tmpl/xfce-itembar.sgml deleted file mode 100644 index af54efd1..00000000 --- a/docs/API/tmpl/xfce-itembar.sgml +++ /dev/null @@ -1,222 +0,0 @@ -<!-- ##### SECTION Title ##### --> -XfceItembar - -<!-- ##### SECTION Short_Description ##### --> -Container widget with configurable orientation. - -<!-- ##### SECTION Long_Description ##### --> -<para> -#XfceItembar is a container widget that can hold multiple widgets. The -orientation of the bar is configurable and can be changed at any time. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> -#GtkHBox and #GtkVBox. -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### STRUCT XfceItembar ##### --> -<para> -The #XfceItembar-struct struct contains private data only, and -should be accessed using the functions below. -</para> - - -<!-- ##### SIGNAL XfceItembar::contents-changed ##### --> -<para> - -</para> - -@xfceitembar: the object which received the signal. - -<!-- ##### SIGNAL XfceItembar::orientation-changed ##### --> -<para> - -</para> - -@xfceitembar: the object which received the signal. -@arg1: - -<!-- ##### ARG XfceItembar:orientation ##### --> -<para> - -</para> - -<!-- ##### ARG XfceItembar:expand ##### --> -<para> - -</para> - -<!-- ##### FUNCTION xfce_itembar_new ##### --> -<para> - -</para> - -@orientation: -@Returns: - - -<!-- ##### FUNCTION xfce_itembar_set_orientation ##### --> -<para> - -</para> - -@itembar: -@orientation: - - -<!-- ##### FUNCTION xfce_itembar_get_orientation ##### --> -<para> - -</para> - -@itembar: -@Returns: - - -<!-- ##### FUNCTION xfce_itembar_insert ##### --> -<para> - -</para> - -@itembar: -@item: -@position: - - -<!-- ##### FUNCTION xfce_itembar_append ##### --> -<para> - -</para> - -@itembar: -@item: - - -<!-- ##### FUNCTION xfce_itembar_prepend ##### --> -<para> - -</para> - -@itembar: -@item: - - -<!-- ##### FUNCTION xfce_itembar_reorder_child ##### --> -<para> - -</para> - -@itembar: -@item: -@position: - - -<!-- ##### FUNCTION xfce_itembar_set_child_expand ##### --> -<para> - -</para> - -@itembar: -@item: -@expand: - - -<!-- ##### FUNCTION xfce_itembar_get_child_expand ##### --> -<para> - -</para> - -@itembar: -@item: -@Returns: - - -<!-- ##### FUNCTION xfce_itembar_set_allow_expand ##### --> -<para> - -</para> - -@itembar: -@allow: - - -<!-- ##### FUNCTION xfce_itembar_get_n_items ##### --> -<para> - -</para> - -@itembar: -@Returns: - - -<!-- ##### FUNCTION xfce_itembar_get_item_index ##### --> -<para> - -</para> - -@itembar: -@item: -@Returns: - - -<!-- ##### FUNCTION xfce_itembar_get_nth_item ##### --> -<para> - -</para> - -@itembar: -@n: -@Returns: - - -<!-- ##### FUNCTION xfce_itembar_raise_event_window ##### --> -<para> - -</para> - -@itembar: - - -<!-- ##### FUNCTION xfce_itembar_lower_event_window ##### --> -<para> - -</para> - -@itembar: - - -<!-- ##### FUNCTION xfce_itembar_event_window_is_raised ##### --> -<para> - -</para> - -@itembar: -@Returns: - - -<!-- ##### FUNCTION xfce_itembar_get_item_at_point ##### --> -<para> - -</para> - -@itembar: -@x: -@y: -@Returns: - - -<!-- ##### FUNCTION xfce_itembar_get_drop_index ##### --> -<para> - -</para> - -@itembar: -@x: -@y: -@Returns: - - diff --git a/docs/API/tmpl/xfce-panel-convenience.sgml b/docs/API/tmpl/xfce-panel-convenience.sgml deleted file mode 100644 index b226efc2..00000000 --- a/docs/API/tmpl/xfce-panel-convenience.sgml +++ /dev/null @@ -1,42 +0,0 @@ -<!-- ##### SECTION Title ##### --> -Convenience Functions - -<!-- ##### SECTION Short_Description ##### --> -Special purpose widgets and utilities. - -<!-- ##### SECTION Long_Description ##### --> -This section describes a number of functions that were created to help -developers of Xfce Panel plugins. - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### FUNCTION xfce_create_panel_button ##### --> -<para> - -</para> - -@Returns: - - -<!-- ##### FUNCTION xfce_create_panel_toggle_button ##### --> -<para> - -</para> - -@Returns: - - -<!-- ##### FUNCTION xfce_allow_panel_customization ##### --> -<para> - -</para> - -@Returns: - - diff --git a/docs/API/tmpl/xfce-panel-enums.sgml b/docs/API/tmpl/xfce-panel-enums.sgml deleted file mode 100644 index 56bf4c85..00000000 --- a/docs/API/tmpl/xfce-panel-enums.sgml +++ /dev/null @@ -1,113 +0,0 @@ -<!-- ##### SECTION Title ##### --> -Standard Enumerations - -<!-- ##### SECTION Short_Description ##### --> -Standard enumerations used by the Xfce Panel. - -<!-- ##### SECTION Long_Description ##### --> -<para> -Currently only contains the definition of #XfceScreenPosition. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### ENUM XfceScreenPosition ##### --> -<para> - -</para> - -@XFCE_SCREEN_POSITION_NONE: -@XFCE_SCREEN_POSITION_NW_H: -@XFCE_SCREEN_POSITION_N: -@XFCE_SCREEN_POSITION_NE_H: -@XFCE_SCREEN_POSITION_NW_V: -@XFCE_SCREEN_POSITION_W: -@XFCE_SCREEN_POSITION_SW_V: -@XFCE_SCREEN_POSITION_NE_V: -@XFCE_SCREEN_POSITION_E: -@XFCE_SCREEN_POSITION_SE_V: -@XFCE_SCREEN_POSITION_SW_H: -@XFCE_SCREEN_POSITION_S: -@XFCE_SCREEN_POSITION_SE_H: -@XFCE_SCREEN_POSITION_FLOATING_H: -@XFCE_SCREEN_POSITION_FLOATING_V: - -<!-- ##### MACRO xfce_screen_position_is_horizontal ##### --> -<para> - -</para> - -@position: -@Returns: - - -<!-- ##### MACRO xfce_screen_position_get_orientation ##### --> -<para> - -</para> - -@position: -@Returns: - - -<!-- ##### MACRO xfce_screen_position_is_floating ##### --> -<para> - -</para> - -@position: -@Returns: - - -<!-- ##### MACRO xfce_screen_position_is_top ##### --> -<para> - -</para> - -@position: -@Returns: - - -<!-- ##### MACRO xfce_screen_position_is_left ##### --> -<para> - -</para> - -@position: -@Returns: - - -<!-- ##### MACRO xfce_screen_position_is_right ##### --> -<para> - -</para> - -@position: -@Returns: - - -<!-- ##### MACRO xfce_screen_position_is_bottom ##### --> -<para> - -</para> - -@position: -@Returns: - - -<!-- ##### ENUM XfceHandleStyle ##### --> -<para> - -</para> - -@XFCE_HANDLE_STYLE_NONE: -@XFCE_HANDLE_STYLE_BOTH: -@XFCE_HANDLE_STYLE_START: -@XFCE_HANDLE_STYLE_END: - diff --git a/docs/API/tmpl/xfce-panel-external-plugin.sgml b/docs/API/tmpl/xfce-panel-external-plugin.sgml deleted file mode 100644 index f26ea2cd..00000000 --- a/docs/API/tmpl/xfce-panel-external-plugin.sgml +++ /dev/null @@ -1,39 +0,0 @@ -<!-- ##### SECTION Title ##### --> -XfceExternalPanelPlugin - -<!-- ##### SECTION Short_Description ##### --> -External plugin widget. - -<!-- ##### SECTION Long_Description ##### --> -<para> -Implements the <link linkend="XfcePanelPlugin">Panel Plugin interface</link> -for external plugins. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### STRUCT XfceExternalPanelPlugin ##### --> -<para> -The #XfceExternalPanelPlugin-struct struct contains private data only, and -should be accessed using the functions for the -<link linkend="XfcePanelPlugin">XfcePanelPlugin Interface</link>. -</para> - - -<!-- ##### FUNCTION xfce_external_panel_plugin_new ##### --> -<para> - -</para> - -@argc: -@argv: -@construct: -@Returns: - - diff --git a/docs/API/tmpl/xfce-panel-internal-plugin.sgml b/docs/API/tmpl/xfce-panel-internal-plugin.sgml deleted file mode 100644 index 1fdf6ef2..00000000 --- a/docs/API/tmpl/xfce-panel-internal-plugin.sgml +++ /dev/null @@ -1,42 +0,0 @@ -<!-- ##### SECTION Title ##### --> -XfceInternalPanelPlugin - -<!-- ##### SECTION Short_Description ##### --> -Internal panel plugin. - -<!-- ##### SECTION Long_Description ##### --> -<para> -Implements the <link linkend="XfcePanelPlugin">Panel Plugin interface</link> -for internal plugins (loadable modules). -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### STRUCT XfceInternalPanelPlugin ##### --> -<para> -The #XfceInternalPanelPlugin-struct struct contains private data only, and -should be accessed using the functions for the -<link linkend="XfcePanelPlugin">XfcePanelPlugin Interface</link>. -</para> - - -<!-- ##### FUNCTION xfce_internal_panel_plugin_new ##### --> -<para> - -</para> - -@name: -@id: -@display_name: -@size: -@position: -@construct: -@Returns: - - diff --git a/docs/API/tmpl/xfce-panel-plugin-iface.sgml b/docs/API/tmpl/xfce-panel-plugin-iface.sgml deleted file mode 100644 index 9a6504b2..00000000 --- a/docs/API/tmpl/xfce-panel-plugin-iface.sgml +++ /dev/null @@ -1,306 +0,0 @@ -<!-- ##### SECTION Title ##### --> -XfcePanelPlugin - -<!-- ##### SECTION Short_Description ##### --> -Panel plugin interface. - -<!-- ##### SECTION Long_Description ##### --> -<para> -The interface implemented by both internal and external plugins. Plugin -writers may use the functions described below to interact with the plugin -widget. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> -<link linkend="libxfce4panel-Register-Plugins">Register Plugins</link> -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### STRUCT XfcePanelPlugin ##### --> -<para> -The #XfcePanelPlugin-struct is a purely virtual object to describe an instance -of a widget implementing the panel plugin interface. -</para> - - -<!-- ##### SIGNAL XfcePanelPlugin::about ##### --> -<para> - -</para> - -@xfcepanelplugin: the object which received the signal. - -<!-- ##### SIGNAL XfcePanelPlugin::configure-plugin ##### --> -<para> - -</para> - -@xfcepanelplugin: the object which received the signal. - -<!-- ##### SIGNAL XfcePanelPlugin::free-data ##### --> -<para> - -</para> - -@xfcepanelplugin: the object which received the signal. - -<!-- ##### SIGNAL XfcePanelPlugin::orientation-changed ##### --> -<para> - -</para> - -@xfcepanelplugin: the object which received the signal. -@arg1: - -<!-- ##### SIGNAL XfcePanelPlugin::save ##### --> -<para> - -</para> - -@xfcepanelplugin: the object which received the signal. - -<!-- ##### SIGNAL XfcePanelPlugin::screen-position-changed ##### --> -<para> - -</para> - -@xfcepanelplugin: the object which received the signal. -@arg1: - -<!-- ##### SIGNAL XfcePanelPlugin::size-changed ##### --> -<para> - -</para> - -@xfcepanelplugin: the object which received the signal. -@arg1: -@Returns: - -<!-- ##### ARG XfcePanelPlugin:display-name ##### --> -<para> - -</para> - -<!-- ##### ARG XfcePanelPlugin:expand ##### --> -<para> - -</para> - -<!-- ##### ARG XfcePanelPlugin:id ##### --> -<para> - -</para> - -<!-- ##### ARG XfcePanelPlugin:name ##### --> -<para> - -</para> - -<!-- ##### ARG XfcePanelPlugin:screen-position ##### --> -<para> - -</para> - -<!-- ##### ARG XfcePanelPlugin:size ##### --> -<para> - -</para> - -<!-- ##### USER_FUNCTION XfcePanelPluginFunc ##### --> -<para> - -</para> - -@plugin: - - -<!-- ##### USER_FUNCTION XfcePanelPluginCheck ##### --> -<para> - -</para> - -@screen: -@Returns: - - -<!-- ##### USER_FUNCTION XfcePanelPluginPreInit ##### --> -<para> - -</para> - -@argc: -@argv: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_get_name ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_get_id ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_get_display_name ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_get_size ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_get_screen_position ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_set_expand ##### --> -<para> - -</para> - -@plugin: -@expand: - - -<!-- ##### FUNCTION xfce_panel_plugin_get_expand ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_get_orientation ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_add_action_widget ##### --> -<para> - -</para> - -@plugin: -@widget: - - -<!-- ##### FUNCTION xfce_panel_plugin_menu_insert_item ##### --> -<para> - -</para> - -@plugin: -@item: - - -<!-- ##### FUNCTION xfce_panel_plugin_menu_show_about ##### --> -<para> - -</para> - -@plugin: - - -<!-- ##### FUNCTION xfce_panel_plugin_menu_show_configure ##### --> -<para> - -</para> - -@plugin: - - -<!-- ##### FUNCTION xfce_panel_plugin_block_menu ##### --> -<para> - -</para> - -@plugin: - - -<!-- ##### FUNCTION xfce_panel_plugin_unblock_menu ##### --> -<para> - -</para> - -@plugin: - - -<!-- ##### FUNCTION xfce_panel_plugin_register_menu ##### --> -<para> - -</para> - -@plugin: -@menu: - - -<!-- ##### FUNCTION xfce_panel_plugin_lookup_rc_file ##### --> -<para> - -</para> - -@plugin: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_save_location ##### --> -<para> - -</para> - -@plugin: -@create: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_plugin_focus_widget ##### --> -<para> - -</para> - -@plugin: -@widget: - - -<!-- ##### FUNCTION xfce_panel_plugin_set_panel_hidden ##### --> -<para> - -</para> - -@plugin: -@hidden: - - diff --git a/docs/API/tmpl/xfce-panel-plugin.sgml b/docs/API/tmpl/xfce-panel-plugin.sgml deleted file mode 100644 index d5607341..00000000 --- a/docs/API/tmpl/xfce-panel-plugin.sgml +++ /dev/null @@ -1,65 +0,0 @@ -<!-- ##### SECTION Title ##### --> -Register Plugins - -<!-- ##### SECTION Short_Description ##### --> -Macros to register a plugin with the Xfce Panel - -<!-- ##### SECTION Long_Description ##### --> -<para> -Each plugin needs a macro to register with the panel. Since a plugin -can be internal or external, you have to choose the appropriate macro -from the 4 below. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### MACRO XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL ##### --> -<para> - -</para> - -@construct: - - -<!-- ##### MACRO XFCE_PANEL_PLUGIN_REGISTER_INTERNAL ##### --> -<para> - -</para> - -@construct: - - -<!-- ##### MACRO XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_FULL ##### --> -<para> - -</para> - -@construct: -@init: -@check: - - -<!-- ##### MACRO XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_WITH_CHECK ##### --> -<para> - -</para> - -@construct: -@check: - - -<!-- ##### MACRO XFCE_PANEL_PLUGIN_REGISTER_INTERNAL_WITH_CHECK ##### --> -<para> - -</para> - -@construct: -@check: - - diff --git a/docs/API/tmpl/xfce-panel-window.sgml b/docs/API/tmpl/xfce-panel-window.sgml deleted file mode 100644 index 4037b508..00000000 --- a/docs/API/tmpl/xfce-panel-window.sgml +++ /dev/null @@ -1,200 +0,0 @@ -<!-- ##### SECTION Title ##### --> -XfcePanelWindow - -<!-- ##### SECTION Short_Description ##### --> -A toplevel borderless window with optional move handles. - -<!-- ##### SECTION Long_Description ##### --> -<para> -A widget derived from #GtkWindow that implements a toplevel window for panels. -It optionally can have one or two move handles. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### STRUCT XfcePanelWindow ##### --> -<para> -The #XfcePanelWindow-struct struct contains private data only, and -should be accessed using the functions below. -</para> - - -<!-- ##### SIGNAL XfcePanelWindow::move ##### --> -<para> - -</para> - -@xfcepanelwindow: the object which received the signal. -@arg1: -@arg2: - -<!-- ##### SIGNAL XfcePanelWindow::move-end ##### --> -<para> - -</para> - -@xfcepanelwindow: the object which received the signal. -@arg1: -@arg2: - -<!-- ##### SIGNAL XfcePanelWindow::move-start ##### --> -<para> - -</para> - -@xfcepanelwindow: the object which received the signal. - -<!-- ##### SIGNAL XfcePanelWindow::orientation-changed ##### --> -<para> - -</para> - -@xfcepanelwindow: the object which received the signal. -@arg1: - -<!-- ##### ARG XfcePanelWindow:handle-style ##### --> -<para> - -</para> - -<!-- ##### ARG XfcePanelWindow:orientation ##### --> -<para> - -</para> - -<!-- ##### USER_FUNCTION XfcePanelWindowMoveFunc ##### --> -<para> - -</para> - -@widget: -@data: -@x: -@y: - - -<!-- ##### USER_FUNCTION XfcePanelWindowResizeFunc ##### --> -<para> - -</para> - -@widget: -@data: -@previous: -@allocation: -@x: -@y: - - -<!-- ##### FUNCTION xfce_panel_window_new ##### --> -<para> - -</para> - -@Returns: - - -<!-- ##### FUNCTION xfce_panel_window_set_orientation ##### --> -<para> - -</para> - -@window: -@orientation: - - -<!-- ##### FUNCTION xfce_panel_window_get_orientation ##### --> -<para> - -</para> - -@window: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_window_set_handle_style ##### --> -<para> - -</para> - -@window: -@handle_style: - - -<!-- ##### FUNCTION xfce_panel_window_get_handle_style ##### --> -<para> - -</para> - -@window: -@Returns: - - -<!-- ##### FUNCTION xfce_panel_window_set_show_border ##### --> -<para> - -</para> - -@window: -@top_border: -@bottom_border: -@left_border: -@right_border: - - -<!-- ##### FUNCTION xfce_panel_window_get_show_border ##### --> -<para> - -</para> - -@window: -@top_border: -@bottom_border: -@left_border: -@right_border: - - -<!-- ##### FUNCTION xfce_panel_window_set_resize_function ##### --> -<para> - -</para> - -@window: -@function: -@data: - - -<!-- ##### FUNCTION xfce_panel_window_set_move_function ##### --> -<para> - -</para> - -@window: -@function: -@data: - - -<!-- ##### FUNCTION xfce_panel_window_set_movable ##### --> -<para> - -</para> - -@window: -@movable: - - -<!-- ##### FUNCTION xfce_panel_window_get_movable ##### --> -<para> - -</para> - -@window: -@Returns: - - |