aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-12-10 21:09:59 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-12-13 03:33:43 +0800
commitd09d8de870b6697c8a8b262e7e077b871a69b315 (patch)
tree3b718882e7a0bb0a996daf2967a033d91714c9b5 /doc
parentb61331ed03ac1c7a9b8614e25510040b9c60ae02 (diff)
downloadgsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.gz
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.bz2
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.lz
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.xz
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.zst
gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.zip
Consolidate base utility libraries into libeutil.
Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/Makefile.am2
-rw-r--r--doc/reference/libeshell/Makefile.am (renamed from doc/reference/shell/Makefile.am)13
-rw-r--r--doc/reference/libeshell/libeshell-docs.sgml (renamed from doc/reference/shell/eshell-docs.sgml)23
-rw-r--r--doc/reference/libeshell/libeshell-overrides.txt (renamed from doc/reference/shell/eshell-overrides.txt)0
-rw-r--r--doc/reference/libeshell/libeshell-sections.txt423
-rw-r--r--doc/reference/libeshell/libeshell.types (renamed from doc/reference/shell/eshell.types)1
-rw-r--r--doc/reference/libeshell/tmpl/e-mail-account-manager.sgml (renamed from doc/reference/shell/tmpl/e-mail-account-manager.sgml)0
-rw-r--r--doc/reference/libeshell/tmpl/e-mail-account-tree-view.sgml (renamed from doc/reference/shell/tmpl/e-mail-account-tree-view.sgml)0
-rw-r--r--doc/reference/libeshell/tmpl/e-mail-identity-combo-box.sgml (renamed from doc/reference/shell/tmpl/e-mail-identity-combo-box.sgml)0
-rw-r--r--doc/reference/libeutil/Makefile.am67
-rw-r--r--doc/reference/libeutil/libeutil-docs.sgml263
-rw-r--r--doc/reference/libeutil/libeutil-overrides.txt0
-rw-r--r--doc/reference/libeutil/libeutil-sections.txt1900
-rw-r--r--doc/reference/libeutil/libeutil.types170
-rw-r--r--doc/reference/shell/eshell-sections.txt1096
15 files changed, 2834 insertions, 1124 deletions
diff --git a/doc/reference/Makefile.am b/doc/reference/Makefile.am
index 48d38adb0a..806e1b0d83 100644
--- a/doc/reference/Makefile.am
+++ b/doc/reference/Makefile.am
@@ -1,3 +1,3 @@
-SUBDIRS = shell
+SUBDIRS = libeutil libeshell
-include $(top_srcdir)/git.mk
diff --git a/doc/reference/shell/Makefile.am b/doc/reference/libeshell/Makefile.am
index 40004abf8c..7262075b74 100644
--- a/doc/reference/shell/Makefile.am
+++ b/doc/reference/libeshell/Makefile.am
@@ -1,5 +1,5 @@
# The name of the module, e.g. 'glib'.
-DOC_MODULE=eshell
+DOC_MODULE=libeshell
# The top-level SGML file. You can change this if you want to.
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
@@ -8,7 +8,7 @@ DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
# gtk-doc will search all .c & .h files beneath here for inline comments
# documenting the functions and macros.
# e.g. DOC_SOURCE_DIR=../../../gtk
-DOC_SOURCE_DIR=../../..
+DOC_SOURCE_DIR=../../../shell
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
SCANGOBJ_OPTIONS=
@@ -33,7 +33,10 @@ HFILE_GLOB=$(top_srcdir)/shell/*.h
CFILE_GLOB=$(top_srcdir)/shell/*.c
# Header files to ignore when scanning.
-IGNORE_HFILES=e-shell-window-private.h
+IGNORE_HFILES= \
+ evo-version.h \
+ e-shell-window-private.h \
+ es-event.h
# Images to copy into HTML directory.
HTML_IMAGES=
@@ -54,13 +57,9 @@ GTKDOC_CFLAGS= \
$(EVOLUTION_DATA_SERVER_CFLAGS) \
$(GTKHTML_CFLAGS)
GTKDOC_LIBS= \
- $(top_builddir)/libemail-utils/libemail-utils.la \
$(top_builddir)/libemail-engine/libemail-engine.la \
$(top_builddir)/shell/libeshell.la \
$(top_builddir)/e-util/libeutil.la \
- $(top_builddir)/filter/libfilter.la \
- $(top_builddir)/widgets/menus/libmenus.la \
- $(top_builddir)/widgets/misc/libemiscwidgets.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GTKHTML_LIBS)
diff --git a/doc/reference/shell/eshell-docs.sgml b/doc/reference/libeshell/libeshell-docs.sgml
index df6cd4354d..8a9404fdc9 100644
--- a/doc/reference/shell/eshell-docs.sgml
+++ b/doc/reference/libeshell/libeshell-docs.sgml
@@ -3,10 +3,10 @@
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
<bookinfo>
- <title>Evolution Shell Reference Manual</title>
+ <title>Evolution Shell (libeshell)</title>
<releaseinfo>
The latest version of this documentation can be found on-line at
- <ulink role="online-location" url="http://library.gnome.org/devel/eshell/unstable/">http://library.gnome.org/devel/eshell/unstable/</ulink>.
+ <ulink role="online-location" url="http://library.gnome.org/devel/libeshell/">http://library.gnome.org/devel/libeshell/</ulink>.
</releaseinfo>
</bookinfo>
@@ -26,22 +26,6 @@
</chapter>
<chapter>
- <title>Basic Utility Functions</title>
- <xi:include href="xml/e-alert.xml"/>
- <xi:include href="xml/e-bit-array.xml"/>
- <xi:include href="xml/e-categories-config.xml"/>
- <xi:include href="xml/e-datetime-format.xml"/>
- <xi:include href="xml/e-dialog-utils.xml"/>
- <xi:include href="xml/e-html-utils.xml"/>
- <xi:include href="xml/e-icon-factory.xml"/>
- <xi:include href="xml/e-poolv.xml"/>
- <xi:include href="xml/e-print.xml"/>
- <xi:include href="xml/e-selection.xml"/>
- <xi:include href="xml/e-util.xml"/>
- <xi:include href="xml/e-xml-utils.xml"/>
- </chapter>
-
- <chapter>
<title>Actions</title>
<xi:include href="xml/shell-actions.xml"/>
<xi:include href="xml/action-groups.xml"/>
@@ -52,8 +36,9 @@
<xi:include href="xml/tree_index.sgml"/>
</chapter>
- <index>
+ <index id="api-index-full">
<title>Index</title>
+ <xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
</index>
</book>
diff --git a/doc/reference/shell/eshell-overrides.txt b/doc/reference/libeshell/libeshell-overrides.txt
index e69de29bb2..e69de29bb2 100644
--- a/doc/reference/shell/eshell-overrides.txt
+++ b/doc/reference/libeshell/libeshell-overrides.txt
diff --git a/doc/reference/libeshell/libeshell-sections.txt b/doc/reference/libeshell/libeshell-sections.txt
new file mode 100644
index 0000000000..f6b997d4a1
--- /dev/null
+++ b/doc/reference/libeshell/libeshell-sections.txt
@@ -0,0 +1,423 @@
+<SECTION>
+<FILE>e-shell</FILE>
+<TITLE>EShell</TITLE>
+EShell
+e_shell_get_default
+e_shell_load_modules
+e_shell_get_shell_backends
+e_shell_get_canonical_name
+e_shell_get_backend_by_name
+e_shell_get_backend_by_scheme
+e_shell_get_shell_settings
+e_shell_get_registry
+e_shell_create_shell_window
+e_shell_handle_uris
+e_shell_submit_alert
+e_shell_get_active_window
+e_shell_get_meego_mode
+e_shell_get_express_mode
+e_shell_get_small_screen_mode
+e_shell_get_module_directory
+e_shell_get_network_available
+e_shell_set_network_available
+e_shell_lock_network_available
+e_shell_get_online
+e_shell_set_online
+e_shell_get_preferences_window
+e_shell_event
+EShellQuitReason
+e_shell_quit
+e_shell_cancel_quit
+e_shell_adapt_window_size
+e_shell_set_startup_view
+e_shell_get_startup_view
+E_SHELL_MIGRATE_ERROR
+EShellMigrateError
+e_shell_migrate_attempt
+e_shell_detect_meego
+<SUBSECTION Standard>
+E_SHELL
+E_IS_SHELL
+E_TYPE_SHELL
+E_SHELL_CLASS
+E_IS_SHELL_CLASS
+E_SHELL_GET_CLASS
+E_TYPE_SHELL_QUIT_REASON
+EShellClass
+e_shell_get_type
+e_shell_quit_reason_get_type
+<SUBSECTION Private>
+EShellPrivate
+e_shell_migrate_error_quark
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-backend</FILE>
+<TITLE>EShellBackend</TITLE>
+EShellBackend
+e_shell_backend_compare
+e_shell_backend_get_config_dir
+e_shell_backend_get_data_dir
+e_shell_backend_get_shell
+e_shell_backend_add_activity
+e_shell_backend_cancel_all
+e_shell_backend_is_busy
+e_shell_backend_get_prefer_new_item
+e_shell_backend_set_prefer_new_item
+e_shell_backend_start
+e_shell_backend_is_started
+e_shell_backend_migrate
+<SUBSECTION Standard>
+E_SHELL_BACKEND
+E_IS_SHELL_BACKEND
+E_TYPE_SHELL_BACKEND
+E_SHELL_BACKEND_CLASS
+E_IS_SHELL_BACKEND_CLASS
+E_SHELL_BACKEND_GET_CLASS
+EShellBackendClass
+e_shell_backend_get_type
+<SUBSECTION Private>
+EShellBackendPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-content</FILE>
+<TITLE>EShellContent</TITLE>
+EShellContent
+e_shell_content_new
+e_shell_content_set_searchbar
+e_shell_content_check_state
+e_shell_content_focus_search_results
+e_shell_content_get_alert_bar
+e_shell_content_get_shell_view
+e_shell_content_get_view_id
+e_shell_content_set_view_id
+e_shell_content_run_advanced_search_dialog
+e_shell_content_run_edit_searches_dialog
+e_shell_content_run_save_search_dialog
+<SUBSECTION Standard>
+E_SHELL_CONTENT
+E_IS_SHELL_CONTENT
+E_TYPE_SHELL_CONTENT
+E_SHELL_CONTENT_CLASS
+E_IS_SHELL_CONTENT_CLASS
+E_SHELL_CONTENT_GET_CLASS
+EShellContentClass
+e_shell_content_get_type
+<SUBSECTION Private>
+EShellContentPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-searchbar</FILE>
+<TITLE>EShellSearchbar</TITLE>
+EShellSearchbar
+e_shell_searchbar_new
+e_shell_searchbar_get_shell_view
+e_shell_searchbar_get_express_mode
+e_shell_searchbar_set_express_mode
+e_shell_searchbar_get_filter_combo_box
+e_shell_searchbar_get_filter_visible
+e_shell_searchbar_set_filter_visible
+e_shell_searchbar_get_labels_visible
+e_shell_searchbar_set_labels_visible
+e_shell_searchbar_get_search_hint
+e_shell_searchbar_set_search_hint
+e_shell_searchbar_get_search_option
+e_shell_searchbar_set_search_option
+e_shell_searchbar_get_search_text
+e_shell_searchbar_set_search_text
+e_shell_searchbar_get_search_visible
+e_shell_searchbar_set_search_visible
+e_shell_searchbar_get_search_box
+e_shell_searchbar_get_scope_combo_box
+e_shell_searchbar_get_scope_visible
+e_shell_searchbar_set_scope_visible
+e_shell_searchbar_set_state_dirty
+e_shell_searchbar_get_state_group
+e_shell_searchbar_set_state_group
+e_shell_searchbar_load_state
+e_shell_searchbar_save_state
+<SUBSECTION Standard>
+E_SHELL_SEARCHBAR
+E_IS_SHELL_SEARCHBAR
+E_TYPE_SHELL_SEARCHBAR
+E_SHELL_SEARCHBAR_CLASS
+E_IS_SHELL_SEARCHBAR_CLASS
+E_SHELL_SEARCHBAR_GET_CLASS
+EShellSearchbarClass
+e_shell_searchbar_get_type
+<SUBSECTION Private>
+EShellSearchbarPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-settings</FILE>
+<TITLE>EShellSettings</TITLE>
+EShellSettings
+e_shell_settings_install_property
+e_shell_settings_install_property_for_key
+e_shell_settings_enable_debug
+e_shell_settings_get_boolean
+e_shell_settings_set_boolean
+e_shell_settings_get_int
+e_shell_settings_set_int
+e_shell_settings_get_string
+e_shell_settings_set_string
+e_shell_settings_get_object
+e_shell_settings_set_object
+e_shell_settings_get_pointer
+e_shell_settings_set_pointer
+<SUBSECTION Standard>
+E_SHELL_SETTINGS
+E_IS_SHELL_SETTINGS
+E_TYPE_SHELL_SETTINGS
+E_SHELL_SETTINGS_CLASS
+E_IS_SHELL_SETTINGS_CLASS
+E_SHELL_SETTINGS_GET_CLASS
+EShellSettingsClass
+e_shell_settings_get_type
+<SUBSECTION Private>
+EShellSettingsPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-sidebar</FILE>
+<TITLE>EShellSidebar</TITLE>
+EShellSidebar
+e_shell_sidebar_new
+e_shell_sidebar_check_state
+e_shell_sidebar_get_shell_view
+e_shell_sidebar_get_icon_name
+e_shell_sidebar_set_icon_name
+e_shell_sidebar_get_primary_text
+e_shell_sidebar_set_primary_text
+e_shell_sidebar_get_secondary_text
+e_shell_sidebar_set_secondary_text
+<SUBSECTION Standard>
+E_SHELL_SIDEBAR
+E_IS_SHELL_SIDEBAR
+E_TYPE_SHELL_SIDEBAR
+E_SHELL_SIDEBAR_CLASS
+E_IS_SHELL_SIDEBAR_CLASS
+E_SHELL_SIDEBAR_GET_CLASS
+EShellSidebarClass
+e_shell_sidebar_get_type
+<SUBSECTION Private>
+EShellSidebarPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-switcher</FILE>
+<TITLE>EShellSwitcher</TITLE>
+EShellSwitcher
+e_shell_switcher_new
+e_shell_switcher_add_action
+e_shell_switcher_get_style
+e_shell_switcher_set_style
+e_shell_switcher_unset_style
+e_shell_switcher_get_visible
+e_shell_switcher_set_visible
+<SUBSECTION Standard>
+E_SHELL_SWITCHER
+E_IS_SHELL_SWITCHER
+E_TYPE_SHELL_SWITCHER
+E_SHELL_SWITCHER_CLASS
+E_IS_SHELL_SWITCHER_CLASS
+E_SHELL_SWITCHER_GET_CLASS
+EShellSwitcherClass
+e_shell_switcher_get_type
+<SUBSECTION Private>
+EShellSwitcherPrivate
+E_SHELL_SWITCHER_DEFAULT_TOOLBAR_STYLE
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-taskbar</FILE>
+<TITLE>EShellTaskbar</TITLE>
+EShellTaskbar
+e_shell_taskbar_new
+e_shell_taskbar_get_shell_view
+e_shell_taskbar_get_message
+e_shell_taskbar_set_message
+e_shell_taskbar_unset_message
+e_shell_taskbar_get_activity_count
+<SUBSECTION Standard>
+E_SHELL_TASKBAR
+E_IS_SHELL_TASKBAR
+E_TYPE_SHELL_TASKBAR
+E_SHELL_TASKBAR_CLASS
+E_IS_SHELL_TASKBAR_CLASS
+E_SHELL_TASKBAR_GET_CLASS
+EShellTaskbarClass
+e_shell_taskbar_get_type
+<SUBSECTION Private>
+EShellTaskbarPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-utils</FILE>
+<TITLE>Shell Utilities</TITLE>
+e_shell_configure_ui_manager
+e_shell_run_open_dialog
+e_shell_run_save_dialog
+e_shell_utils_import_uris
+e_shell_hide_widgets_for_express_mode
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-view</FILE>
+<TITLE>EShellView</TITLE>
+EShellView
+EShellViewClass
+e_shell_view_get_name
+e_shell_view_get_action
+e_shell_view_get_title
+e_shell_view_set_title
+e_shell_view_get_view_id
+e_shell_view_set_view_id
+e_shell_view_is_active
+e_shell_view_get_page_num
+e_shell_view_set_page_num
+e_shell_view_get_searchbar
+e_shell_view_get_search_name
+e_shell_view_get_search_rule
+e_shell_view_set_search_rule
+e_shell_view_get_search_query
+e_shell_view_get_shell_backend
+e_shell_view_get_shell_content
+e_shell_view_get_shell_sidebar
+e_shell_view_get_shell_taskbar
+e_shell_view_get_shell_window
+e_shell_view_get_state_key_file
+e_shell_view_set_state_dirty
+e_shell_view_clear_search
+e_shell_view_custom_search
+e_shell_view_execute_search
+e_shell_view_block_execute_search
+e_shell_view_unblock_execute_search
+e_shell_view_is_execute_search_blocked
+e_shell_view_update_actions
+e_shell_view_block_update_actions
+e_shell_view_unblock_update_actions
+e_shell_view_show_popup_menu
+e_shell_view_new_view_instance
+e_shell_view_write_source
+e_shell_view_remove_source
+e_shell_view_remote_delete_source
+<SUBSECTION Standard>
+E_SHELL_VIEW
+E_IS_SHELL_VIEW
+E_TYPE_SHELL_VIEW
+E_SHELL_VIEW_CLASS
+E_IS_SHELL_VIEW_CLASS
+E_SHELL_VIEW_GET_CLASS
+e_shell_view_get_type
+<SUBSECTION Private>
+EShellViewPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-shell-window</FILE>
+<TITLE>EShellWindow</TITLE>
+EShellWindow
+e_shell_window_new
+e_shell_window_get_shell
+e_shell_window_get_shell_view
+e_shell_window_peek_shell_view
+e_shell_window_get_shell_view_action
+e_shell_window_get_alert_bar
+e_shell_window_get_focus_tracker
+e_shell_window_get_ui_manager
+e_shell_window_get_action
+e_shell_window_get_action_group
+e_shell_window_get_managed_widget
+e_shell_window_get_active_view
+e_shell_window_set_active_view
+e_shell_window_get_safe_mode
+e_shell_window_set_safe_mode
+e_shell_window_add_action_group
+e_shell_window_get_sidebar_visible
+e_shell_window_set_sidebar_visible
+e_shell_window_get_switcher_visible
+e_shell_window_set_switcher_visible
+e_shell_window_get_taskbar_visible
+e_shell_window_set_taskbar_visible
+e_shell_window_get_toolbar_visible
+e_shell_window_set_toolbar_visible
+e_shell_window_get_toolbar_new_prefer_item
+e_shell_window_set_toolbar_new_prefer_item
+e_shell_window_register_new_item_actions
+e_shell_window_register_new_source_actions
+e_shell_window_get_menu_bar_box
+<SUBSECTION Standard>
+E_SHELL_WINDOW
+E_IS_SHELL_WINDOW
+E_TYPE_SHELL_WINDOW
+E_SHELL_WINDOW_CLASS
+E_IS_SHELL_WINDOW_CLASS
+E_SHELL_WINDOW_GET_CLASS
+EShellWindowClass
+e_shell_window_get_type
+<SUBSECTION Private>
+EShellWindowPrivate
+E_SHELL_WINDOW_ACTION
+E_SHELL_WINDOW_ACTION_GROUP
+</SECTION>
+
+<SECTION>
+<FILE>shell-actions</FILE>
+<TITLE>Shell Actions</TITLE>
+E_SHELL_WINDOW_ACTION_ABOUT
+E_SHELL_WINDOW_ACTION_CLOSE
+E_SHELL_WINDOW_ACTION_CONTENTS
+E_SHELL_WINDOW_ACTION_COPY_CLIPBOARD
+E_SHELL_WINDOW_ACTION_CUT_CLIPBOARD
+E_SHELL_WINDOW_ACTION_DELETE_SELECTION
+E_SHELL_WINDOW_ACTION_GAL_CUSTOM_VIEW
+E_SHELL_WINDOW_ACTION_GAL_DEFINE_VIEWS
+E_SHELL_WINDOW_ACTION_GAL_SAVE_CUSTOM_VIEW
+E_SHELL_WINDOW_ACTION_GROUP_NEW_WINDOW
+E_SHELL_WINDOW_ACTION_IMPORT
+E_SHELL_WINDOW_ACTION_NEW_WINDOW
+E_SHELL_WINDOW_ACTION_PAGE_SETUP
+E_SHELL_WINDOW_ACTION_PASTE_CLIPBOARD
+E_SHELL_WINDOW_ACTION_PREFERENCES
+E_SHELL_WINDOW_ACTION_QUICK_REFERENCE
+E_SHELL_WINDOW_ACTION_QUIT
+E_SHELL_WINDOW_ACTION_SEARCH_ADVANCED
+E_SHELL_WINDOW_ACTION_SEARCH_CLEAR
+E_SHELL_WINDOW_ACTION_SEARCH_EDIT
+E_SHELL_WINDOW_ACTION_SEARCH_OPTIONS
+E_SHELL_WINDOW_ACTION_SEARCH_QUICK
+E_SHELL_WINDOW_ACTION_SEARCH_SAVE
+E_SHELL_WINDOW_ACTION_SELECT_ALL
+E_SHELL_WINDOW_ACTION_SHOW_SIDEBAR
+E_SHELL_WINDOW_ACTION_SHOW_SWITCHER
+E_SHELL_WINDOW_ACTION_SHOW_TASKBAR
+E_SHELL_WINDOW_ACTION_SHOW_TOOLBAR
+E_SHELL_WINDOW_ACTION_SUBMIT_BUG
+E_SHELL_WINDOW_ACTION_SWITCHER_INITIAL
+E_SHELL_WINDOW_ACTION_SWITCHER_MENU
+E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_BOTH
+E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_ICONS
+E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_TEXT
+E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_USER
+E_SHELL_WINDOW_ACTION_WORK_OFFLINE
+E_SHELL_WINDOW_ACTION_WORK_ONLINE
+</SECTION>
+
+<SECTION>
+<FILE>action-groups</FILE>
+<TITLE>Action Groups</TITLE>
+E_SHELL_WINDOW_ACTION_GROUP_SHELL
+E_SHELL_WINDOW_ACTION_GROUP_SWITCHER
+E_SHELL_WINDOW_ACTION_GROUP_NEW_ITEM
+E_SHELL_WINDOW_ACTION_GROUP_NEW_SOURCE
+E_SHELL_WINDOW_ACTION_GROUP_CUSTOM_RULES
+E_SHELL_WINDOW_ACTION_GROUP_GAL_VIEW
+E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_APPLICATION_HANDLERS
+E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_PRINTING
+E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_PRINT_SETUP
+E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_SAVE_TO_DISK
+</SECTION>
diff --git a/doc/reference/shell/eshell.types b/doc/reference/libeshell/libeshell.types
index 0832576163..b0038d55e1 100644
--- a/doc/reference/shell/eshell.types
+++ b/doc/reference/libeshell/libeshell.types
@@ -1,4 +1,3 @@
-e_bit_array_get_type
e_shell_get_type
e_shell_backend_get_type
e_shell_content_get_type
diff --git a/doc/reference/shell/tmpl/e-mail-account-manager.sgml b/doc/reference/libeshell/tmpl/e-mail-account-manager.sgml
index 49fe04bdf2..49fe04bdf2 100644
--- a/doc/reference/shell/tmpl/e-mail-account-manager.sgml
+++ b/doc/reference/libeshell/tmpl/e-mail-account-manager.sgml
diff --git a/doc/reference/shell/tmpl/e-mail-account-tree-view.sgml b/doc/reference/libeshell/tmpl/e-mail-account-tree-view.sgml
index eaee2f12c5..eaee2f12c5 100644
--- a/doc/reference/shell/tmpl/e-mail-account-tree-view.sgml
+++ b/doc/reference/libeshell/tmpl/e-mail-account-tree-view.sgml
diff --git a/doc/reference/shell/tmpl/e-mail-identity-combo-box.sgml b/doc/reference/libeshell/tmpl/e-mail-identity-combo-box.sgml
index fec8130b21..fec8130b21 100644
--- a/doc/reference/shell/tmpl/e-mail-identity-combo-box.sgml
+++ b/doc/reference/libeshell/tmpl/e-mail-identity-combo-box.sgml
diff --git a/doc/reference/libeutil/Makefile.am b/doc/reference/libeutil/Makefile.am
new file mode 100644
index 0000000000..71eabf3d76
--- /dev/null
+++ b/doc/reference/libeutil/Makefile.am
@@ -0,0 +1,67 @@
+# The name of the module.
+DOC_MODULE = libeutil
+
+# The top-level SGML file.
+DOC_MAIN_SGML_FILE = libeutil-docs.sgml
+
+# Extra options to supply to gtkdoc-scan.
+SCAN_OPTIONS = --deprecated-guards="EDS_DISABLE_DEPRECATED"
+
+# The directory containing the source code. Relative to $(srcdir).
+DOC_SOURCE_DIR = $(top_srcdir)/e-util
+
+# Used for dependencies. The docs will be rebuilt if any of these change.
+HFILE_GLOB = $(top_srcdir)/e-util/*.h
+CFILE_GLOB = $(top_srcdir)/e-util/*.c
+
+# Ignore all accessiblity headers.
+IGNORE_HFILES = \
+ ea-calendar-cell.h \
+ ea-calendar-item.h \
+ ea-cell-table.h \
+ ea-factory.h \
+ ea-widgets.h \
+ gal-a11y-e-cell-registry.h \
+ gal-a11y-e-cell-toggle.h \
+ gal-a11y-e-cell-tree.h \
+ gal-a11y-e-cell-vbox.h \
+ gal-a11y-e-cell.h \
+ gal-a11y-e-popup.h \
+ gal-a11y-e-table-click-to-add-factory.h \
+ gal-a11y-e-table-click-to-add.h \
+ gal-a11y-e-table-column-header.h \
+ gal-a11y-e-table-factory.h \
+ gal-a11y-e-table-item-factory.h \
+ gal-a11y-e-table-item.h \
+ gal-a11y-e-table.h \
+ gal-a11y-e-text-factory.h \
+ gal-a11y-e-text.h \
+ gal-a11y-e-tree-factory.h \
+ gal-a11y-e-tree.h \
+ gal-a11y-factory.h
+ gal-a11y-util.h \
+ $(NULL)
+
+GTKDOC_CFLAGS = \
+ -I$(top_srcdir) \
+ -I$(top_builddir) \
+ $(EVOLUTION_DATA_SERVER_CFLAGS) \
+ $(GNOME_PLATFORM_CFLAGS) \
+ $(CHAMPLAIN_CFLAGS) \
+ $(GTKHTML_CFLAGS) \
+ $(NULL)
+
+GTKDOC_LIBS = \
+ $(top_builddir)/e-util/libeutil.la \
+ $(EVOLUTION_DATA_SERVER_LIBS) \
+ $(GNOME_PLATFORM_LIBS) \
+ $(CHAMPLAIN_LIBS) \
+ $(GTKHTML_LIBS) \
+ $(NULL)
+
+# This includes the standard gtk-doc make rules, copied by gtkdocize.
+include $(top_srcdir)/gtk-doc.make
+
+#TESTS = $(GTKDOC_CHECK)
+
+-include $(top_srcdir)/git.mk
diff --git a/doc/reference/libeutil/libeutil-docs.sgml b/doc/reference/libeutil/libeutil-docs.sgml
new file mode 100644
index 0000000000..329047b791
--- /dev/null
+++ b/doc/reference/libeutil/libeutil-docs.sgml
@@ -0,0 +1,263 @@
+<?xml version="1.0"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
+<!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'">
+]>
+<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
+ <bookinfo>
+ <title>Evolution Utilities (libeutil)</title>
+ <releaseinfo>
+ The latest version of this documentation can be found on-line at
+ <ulink role="online-location" url="http://library.gnome.org/devel/libeutil/">http://library.gnome.org/devel/libeutil/</ulink>.
+ </releaseinfo>
+ </bookinfo>
+
+ <chapter>
+ <title>Basic Utility Functions</title>
+ <xi:include href="xml/e-alert.xml"/>
+ <xi:include href="xml/e-datetime-format.xml"/>
+ <xi:include href="xml/e-html-utils.xml"/>
+ <xi:include href="xml/e-misc-utils.xml"/>
+ <xi:include href="xml/e-poolv.xml"/>
+ <xi:include href="xml/e-print.xml"/>
+ <xi:include href="xml/e-selection.xml"/>
+ <xi:include href="xml/e-xml-utils.xml"/>
+ <xi:include href="xml/e-bit-array.xml"/>
+ <xi:include href="xml/e-dialog-utils.xml"/>
+ <xi:include href="xml/e-icon-factory.xml"/>
+ <xi:include href="xml/e-passwords.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>Attachment Management</title>
+ <xi:include href="xml/e-attachment.xml"/>
+ <xi:include href="xml/e-attachment-bar.xml"/>
+ <xi:include href="xml/e-attachment-button.xml"/>
+ <xi:include href="xml/e-attachment-dialog.xml"/>
+ <xi:include href="xml/e-attachment-paned.xml"/>
+ <xi:include href="xml/e-attachment-store.xml"/>
+ <xi:include href="xml/e-attachment-view.xml"/>
+ <xi:include href="xml/e-attachment-icon-view.xml"/>
+ <xi:include href="xml/e-attachment-tree-view.xml"/>
+ <xi:include href="xml/e-attachment-handler.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>Category Management</title>
+ <xi:include href="xml/e-categories-config.xml"/>
+ <xi:include href="xml/e-categories-dialog.xml"/>
+ <xi:include href="xml/e-categories-editor.xml"/>
+ <xi:include href="xml/e-categories-selector.xml"/>
+ <xi:include href="xml/e-category-completion.xml"/>
+ <xi:include href="xml/e-category-editor.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>Filtering and Searching</title>
+ <xi:include href="xml/e-rule-context.xml"/>
+ <xi:include href="xml/e-rule-editor.xml"/>
+ <xi:include href="xml/e-filter-rule.xml"/>
+ <xi:include href="xml/e-filter-part.xml"/>
+ <xi:include href="xml/e-filter-element.xml"/>
+ <xi:include href="xml/e-filter-code.xml"/>
+ <xi:include href="xml/e-filter-color.xml"/>
+ <xi:include href="xml/e-filter-datespec.xml"/>
+ <xi:include href="xml/e-filter-file.xml"/>
+ <xi:include href="xml/e-filter-input.xml"/>
+ <xi:include href="xml/e-filter-int.xml"/>
+ <xi:include href="xml/e-filter-option.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>Tables and Trees</title>
+ <xi:include href="xml/e-table.xml"/>
+ <xi:include href="xml/e-table-click-to-add.xml"/>
+ <xi:include href="xml/e-table-col-dnd.xml"/>
+ <xi:include href="xml/e-table-col.xml"/>
+ <xi:include href="xml/e-table-column-specification.xml"/>
+ <xi:include href="xml/e-table-config.xml"/>
+ <xi:include href="xml/e-table-defines.xml"/>
+ <xi:include href="xml/e-table-extras.xml"/>
+ <xi:include href="xml/e-table-field-chooser-dialog.xml"/>
+ <xi:include href="xml/e-table-field-chooser-item.xml"/>
+ <xi:include href="xml/e-table-field-chooser.xml"/>
+ <xi:include href="xml/e-table-group-container.xml"/>
+ <xi:include href="xml/e-table-group-leaf.xml"/>
+ <xi:include href="xml/e-table-group.xml"/>
+ <xi:include href="xml/e-table-header-item.xml"/>
+ <xi:include href="xml/e-table-header-utils.xml"/>
+ <xi:include href="xml/e-table-header.xml"/>
+ <xi:include href="xml/e-table-item.xml"/>
+ <xi:include href="xml/e-table-memory-callbacks.xml"/>
+ <xi:include href="xml/e-table-memory-store.xml"/>
+ <xi:include href="xml/e-table-memory.xml"/>
+ <xi:include href="xml/e-table-model.xml"/>
+ <xi:include href="xml/e-table-one.xml"/>
+ <xi:include href="xml/e-table-search.xml"/>
+ <xi:include href="xml/e-table-selection-model.xml"/>
+ <xi:include href="xml/e-table-sort-info.xml"/>
+ <xi:include href="xml/e-table-sorted-variable.xml"/>
+ <xi:include href="xml/e-table-sorted.xml"/>
+ <xi:include href="xml/e-table-sorter.xml"/>
+ <xi:include href="xml/e-table-sorting-utils.xml"/>
+ <xi:include href="xml/e-table-specification.xml"/>
+ <xi:include href="xml/e-table-state.xml"/>
+ <xi:include href="xml/e-table-subset-variable.xml"/>
+ <xi:include href="xml/e-table-subset.xml"/>
+ <xi:include href="xml/e-table-utils.xml"/>
+ <xi:include href="xml/e-table-without.xml"/>
+ <xi:include href="xml/e-tree.xml"/>
+ <xi:include href="xml/e-tree-memory-callbacks.xml"/>
+ <xi:include href="xml/e-tree-memory.xml"/>
+ <xi:include href="xml/e-tree-model.xml"/>
+ <xi:include href="xml/e-tree-selection-model.xml"/>
+ <xi:include href="xml/e-tree-sorted.xml"/>
+ <xi:include href="xml/e-tree-table-adapter.xml"/>
+ <xi:include href="xml/e-cell.xml"/>
+ <xi:include href="xml/e-cell-checkbox.xml"/>
+ <xi:include href="xml/e-cell-combo.xml"/>
+ <xi:include href="xml/e-cell-date-edit.xml"/>
+ <xi:include href="xml/e-cell-date.xml"/>
+ <xi:include href="xml/e-cell-hbox.xml"/>
+ <xi:include href="xml/e-cell-number.xml"/>
+ <xi:include href="xml/e-cell-percent.xml"/>
+ <xi:include href="xml/e-cell-pixbuf.xml"/>
+ <xi:include href="xml/e-cell-popup.xml"/>
+ <xi:include href="xml/e-cell-size.xml"/>
+ <xi:include href="xml/e-cell-text.xml"/>
+ <xi:include href="xml/e-cell-toggle.xml"/>
+ <xi:include href="xml/e-cell-tree.xml"/>
+ <xi:include href="xml/e-cell-vbox.xml"/>
+ <xi:include href="xml/e-popup-menu.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>Text Processing</title>
+ <xi:include href="xml/e-text.xml"/>
+ <xi:include href="xml/e-text-model.xml"/>
+ <xi:include href="xml/e-text-model-repos.xml"/>
+ <xi:include href="xml/e-text-event-processor.xml"/>
+ <xi:include href="xml/e-text-event-processor-emacs-like.xml"/>
+ <xi:include href="xml/e-text-event-processor-types.xml"/>
+ <xi:include href="xml/e-reflow.xml"/>
+ <xi:include href="xml/e-reflow-model.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>View Management</title>
+ <xi:include href="xml/gal-view.xml"/>
+ <xi:include href="xml/gal-view-factory.xml"/>
+ <xi:include href="xml/gal-view-instance.xml"/>
+ <xi:include href="xml/gal-view-collection.xml"/>
+ <xi:include href="xml/gal-view-etable.xml"/>
+ <xi:include href="xml/gal-view-factory-etable.xml"/>
+ <xi:include href="xml/gal-view-new-dialog.xml"/>
+ <xi:include href="xml/gal-define-views-dialog.xml"/>
+ <xi:include href="xml/gal-define-views-model.xml"/>
+ <xi:include href="xml/gal-view-instance-save-as-dialog.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>(Unsorted Sections)</title>
+ <xi:include href="xml/e-action-combo-box.xml"/>
+ <xi:include href="xml/e-activity-bar.xml"/>
+ <xi:include href="xml/e-activity-proxy.xml"/>
+ <xi:include href="xml/e-activity.xml"/>
+ <xi:include href="xml/e-alarm-selector.xml"/>
+ <xi:include href="xml/e-alert-bar.xml"/>
+ <xi:include href="xml/e-alert-dialog.xml"/>
+ <xi:include href="xml/e-alert-sink.xml"/>
+ <xi:include href="xml/e-auth-combo-box.xml"/>
+ <xi:include href="xml/e-autocomplete-selector.xml"/>
+ <xi:include href="xml/e-book-source-config.xml"/>
+ <xi:include href="xml/e-buffer-tagger.xml"/>
+ <xi:include href="xml/e-cal-source-config.xml"/>
+ <xi:include href="xml/e-calendar-item.xml"/>
+ <xi:include href="xml/e-calendar.xml"/>
+ <xi:include href="xml/e-canvas-background.xml"/>
+ <xi:include href="xml/e-canvas-utils.xml"/>
+ <xi:include href="xml/e-canvas-vbox.xml"/>
+ <xi:include href="xml/e-canvas.xml"/>
+ <xi:include href="xml/e-cell-renderer-color.xml"/>
+ <xi:include href="xml/e-charset-combo-box.xml"/>
+ <xi:include href="xml/e-charset.xml"/>
+ <xi:include href="xml/e-client-utils.xml"/>
+ <xi:include href="xml/e-config.xml"/>
+ <xi:include href="xml/e-contact-store.xml"/>
+ <xi:include href="xml/e-dateedit.xml"/>
+ <xi:include href="xml/e-destination-store.xml"/>
+ <xi:include href="xml/e-dialog-widgets.xml"/>
+ <xi:include href="xml/e-event.xml"/>
+ <xi:include href="xml/e-file-request.xml"/>
+ <xi:include href="xml/e-file-utils.xml"/>
+ <xi:include href="xml/e-focus-tracker.xml"/>
+ <xi:include href="xml/e-image-chooser.xml"/>
+ <xi:include href="xml/e-import-assistant.xml"/>
+ <xi:include href="xml/e-import.xml"/>
+ <xi:include href="xml/e-interval-chooser.xml"/>
+ <xi:include href="xml/e-mail-identity-combo-box.xml"/>
+ <xi:include href="xml/e-mail-signature-combo-box.xml"/>
+ <xi:include href="xml/e-mail-signature-editor.xml"/>
+ <xi:include href="xml/e-mail-signature-manager.xml"/>
+ <xi:include href="xml/e-mail-signature-preview.xml"/>
+ <xi:include href="xml/e-mail-signature-script-dialog.xml"/>
+ <xi:include href="xml/e-mail-signature-tree-view.xml"/>
+ <xi:include href="xml/e-map.xml"/>
+ <xi:include href="xml/e-menu-tool-action.xml"/>
+ <xi:include href="xml/e-menu-tool-button.xml"/>
+ <xi:include href="xml/e-mktemp.xml"/>
+ <xi:include href="xml/e-name-selector-dialog.xml"/>
+ <xi:include href="xml/e-name-selector-entry.xml"/>
+ <xi:include href="xml/e-name-selector-list.xml"/>
+ <xi:include href="xml/e-name-selector-model.xml"/>
+ <xi:include href="xml/e-name-selector.xml"/>
+ <xi:include href="xml/e-online-button.xml"/>
+ <xi:include href="xml/e-paned.xml"/>
+ <xi:include href="xml/e-picture-gallery.xml"/>
+ <xi:include href="xml/e-plugin-ui.xml"/>
+ <xi:include href="xml/e-plugin.xml"/>
+ <xi:include href="xml/e-popup-action.xml"/>
+ <xi:include href="xml/e-port-entry.xml"/>
+ <xi:include href="xml/e-preferences-window.xml"/>
+ <xi:include href="xml/e-preview-pane.xml"/>
+ <xi:include href="xml/e-printable.xml"/>
+ <xi:include href="xml/e-search-bar.xml"/>
+ <xi:include href="xml/e-selectable.xml"/>
+ <xi:include href="xml/e-selection-model-array.xml"/>
+ <xi:include href="xml/e-selection-model-simple.xml"/>
+ <xi:include href="xml/e-selection-model.xml"/>
+ <xi:include href="xml/e-send-options.xml"/>
+ <xi:include href="xml/e-sorter-array.xml"/>
+ <xi:include href="xml/e-sorter.xml"/>
+ <xi:include href="xml/e-source-combo-box.xml"/>
+ <xi:include href="xml/e-source-config-backend.xml"/>
+ <xi:include href="xml/e-source-config-dialog.xml"/>
+ <xi:include href="xml/e-source-config.xml"/>
+ <xi:include href="xml/e-source-selector-dialog.xml"/>
+ <xi:include href="xml/e-source-selector.xml"/>
+ <xi:include href="xml/e-source-util.xml"/>
+ <xi:include href="xml/e-spell-entry.xml"/>
+ <xi:include href="xml/e-stock-request.xml"/>
+ <xi:include href="xml/e-timezone-dialog.xml"/>
+ <xi:include href="xml/e-tree-model-generator.xml"/>
+ <xi:include href="xml/e-ui-manager.xml"/>
+ <xi:include href="xml/e-unicode.xml"/>
+ <xi:include href="xml/e-url-entry.xml"/>
+ <xi:include href="xml/e-web-view-gtkhtml.xml"/>
+ <xi:include href="xml/e-web-view-preview.xml"/>
+ <xi:include href="xml/e-web-view.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>Object Hierarchy</title>
+ <xi:include href="xml/tree_index.sgml"/>
+ </chapter>
+
+ <index id="api-index-full">
+ <title>Index</title>
+ <xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
+ </index>
+
+ <xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
+
+</book>
diff --git a/doc/reference/libeutil/libeutil-overrides.txt b/doc/reference/libeutil/libeutil-overrides.txt
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/doc/reference/libeutil/libeutil-overrides.txt
diff --git a/doc/reference/libeutil/libeutil-sections.txt b/doc/reference/libeutil/libeutil-sections.txt
new file mode 100644
index 0000000000..98b939826e
--- /dev/null
+++ b/doc/reference/libeutil/libeutil-sections.txt
@@ -0,0 +1,1900 @@
+<SECTION>
+<FILE>e-action-combo-box</FILE>
+<TITLE>EActionComboBox</TITLE>
+EActionComboBox
+e_action_combo_box_new
+e_action_combo_box_new_with_action
+e_action_combo_box_get_action
+e_action_combo_box_set_action
+e_action_combo_box_get_current_value
+e_action_combo_box_set_current_value
+e_action_combo_box_add_separator_before
+e_action_combo_box_add_separator_after
+<SUBSECTION Standard>
+E_ACTION_COMBO_BOX
+E_IS_ACTION_COMBO_BOX
+E_TYPE_ACTION_COMBO_BOX
+E_ACTION_COMBO_BOX_CLASS
+E_IS_ACTION_COMBO_BOX_CLASS
+E_ACTION_COMBO_BOX_GET_CLASS
+EActionComboBoxClass
+e_action_combo_box_get_type
+<SUBSECTION Private>
+EActionComboBoxPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-activity</FILE>
+<TITLE>EActivity</TITLE>
+EActivity
+e_activity_new
+e_activity_describe
+e_activity_get_alert_sink
+e_activity_set_alert_sink
+e_activity_get_cancellable
+e_activity_set_cancellable
+e_activity_get_icon_name
+e_activity_set_icon_name
+e_activity_get_percent
+e_activity_set_percent
+EActivityState
+e_activity_get_state
+e_activity_set_state
+e_activity_get_text
+e_activity_set_text
+<SUBSECTION Standard>
+E_ACTIVITY
+E_IS_ACTIVITY
+E_TYPE_ACTIVITY
+E_ACTIVITY_CLASS
+E_IS_ACTIVITY_CLASS
+E_ACTIVITY_GET_CLASS
+EActivityClass
+e_activity_get_type
+<SUBSECTION Private>
+EActivityPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-activity-bar</FILE>
+<TITLE>EActivityBar</TITLE>
+EActivityBar
+e_activity_bar_new
+e_activity_bar_get_activity
+e_activity_bar_set_activity
+<SUBSECTION Standard>
+E_ACTIVITY_BAR
+E_IS_ACTIVITY_BAR
+E_TYPE_ACTIVITY_BAR
+E_ACTIVITY_BAR_CLASS
+E_IS_ACTIVITY_BAR_CLASS
+E_ACTIVITY_BAR_GET_CLASS
+EActivityBarClass
+e_activity_bar_get_type
+<SUBSECTION Private>
+EActivityBarPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-activity-proxy</FILE>
+<TITLE>EActivityProxy</TITLE>
+EActivityProxy
+e_activity_proxy_new
+e_activity_proxy_get_activity
+<SUBSECTION Standard>
+E_ACTIVITY_PROXY
+E_IS_ACTIVITY_PROXY
+E_TYPE_ACTIVITY_PROXY
+E_ACTIVITY_PROXY_CLASS
+E_IS_ACTIVITY_PROXY_CLASS
+E_ACTIVITY_PROXY_GET_CLASS
+EActivityProxyClass
+e_activity_proxy_get_type
+<SUBSECTION Private>
+EActivityProxyPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-alarm-selector</FILE>
+<TITLE>EAlarmSelector</TITLE>
+EAlarmSelector
+e_alarm_selector_new
+<SUBSECTION Standard>
+E_ALARM_SELECTOR
+E_IS_ALARM_SELECTOR
+E_TYPE_ALARM_SELECTOR
+E_ALARM_SELECTOR_CLASS
+E_IS_ALARM_SELECTOR_CLASS
+E_ALARM_SELECTOR_GET_CLASS
+EAlarmSelectorClass
+e_alarm_selector_get_type
+<SUBSECTION Private>
+EAlarmSelectorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-alert</FILE>
+<TITLE>EAlert</TITLE>
+E_ALERT_ASK_FILE_EXISTS_OVERWRITE
+E_ALERT_NO_SAVE_FILE
+E_ALERT_NO_LOAD_FILE
+EAlert
+e_alert_new
+e_alert_new_valist
+e_alert_get_default_response
+e_alert_set_default_response
+e_alert_get_message_type
+e_alert_set_message_type
+e_alert_get_primary_text
+e_alert_set_primary_text
+e_alert_get_secondary_text
+e_alert_set_secondary_text
+e_alert_get_stock_id
+e_alert_add_action
+e_alert_peek_actions
+e_alert_create_image
+e_alert_response
+e_alert_start_timer
+e_alert_submit
+e_alert_submit_valist
+<SUBSECTION Standard>
+E_ALERT
+E_IS_ALERT
+E_TYPE_ALERT
+E_ALERT_CLASS
+E_IS_ALERT_CLASS
+E_ALERT_GET_CLASS
+EAlertClass
+e_alert_get_type
+<SUBSECTION Private>
+EAlertPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-alert-bar</FILE>
+<TITLE>EAlertBar</TITLE>
+EAlertBar
+e_alert_bar_new
+e_alert_bar_clear
+e_alert_bar_add_alert
+<SUBSECTION Standard>
+E_ALERT_BAR
+E_IS_ALERT_BAR
+E_TYPE_ALERT_BAR
+E_ALERT_BAR_CLASS
+E_IS_ALERT_BAR_CLASS
+E_ALERT_BAR_GET_CLASS
+EAlertBarClass
+e_alert_bar_get_type
+<SUBSECTION Private>
+EAlertBarPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-alert-dialog</FILE>
+<TITLE>EAlertDialog</TITLE>
+EAlertDialog
+e_alert_dialog_new
+e_alert_dialog_new_for_args
+e_alert_run_dialog
+e_alert_run_dialog_for_args
+e_alert_dialog_get_alert
+e_alert_dialog_get_content_area
+<SUBSECTION Standard>
+E_ALERT_DIALOG
+E_IS_ALERT_DIALOG
+E_TYPE_ALERT_DIALOG
+E_ALERT_DIALOG_CLASS
+E_IS_ALERT_DIALOG_CLASS
+E_ALERT_DIALOG_GET_CLASS
+EAlertDialogClass
+e_alert_dialog_get_type
+<SUBSECTION Private>
+EAlertDialogPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-alert-sink</FILE>
+<TITLE>EAlertSink</TITLE>
+EAlertSink
+EAlertSinkInterface
+e_alert_sink_submit_alert
+<SUBSECTION Standard>
+E_ALERT_SINK
+E_IS_ALERT_SINK
+E_TYPE_ALERT_SINK
+E_ALERT_SINK_INTERFACE
+E_IS_ALERT_SINK_INTERFACE
+E_ALERT_SINK_GET_INTERFACE
+e_alert_sink_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment</FILE>
+<TITLE>EAttachment</TITLE>
+EAttachment
+e_attachment_new
+e_attachment_new_for_path
+e_attachment_new_for_uri
+e_attachment_new_for_message
+e_attachment_add_to_multipart
+e_attachment_cancel
+e_attachment_get_can_show
+e_attachment_set_can_show
+e_attachment_get_disposition
+e_attachment_set_disposition
+e_attachment_get_file
+e_attachment_set_file
+e_attachment_get_file_info
+e_attachment_set_file_info
+e_attachment_get_icon
+e_attachment_get_loading
+e_attachment_get_mime_part
+e_attachment_set_mime_part
+e_attachment_get_percent
+e_attachment_get_reference
+e_attachment_set_reference
+e_attachment_get_saving
+e_attachment_get_shown
+e_attachment_set_shown
+e_attachment_get_encrypted
+e_attachment_set_encrypted
+e_attachment_get_signed
+e_attachment_set_signed
+e_attachment_get_description
+e_attachment_get_thumbnail_path
+e_attachment_is_rfc822
+e_attachment_list_apps
+e_attachment_load_async
+e_attachment_load_finish
+e_attachment_open_async
+e_attachment_open_finish
+e_attachment_save_async
+e_attachment_save_finish
+e_attachment_load_handle_error
+e_attachment_open_handle_error
+e_attachment_save_handle_error
+<SUBSECTION Standard>
+E_ATTACHMENT
+E_IS_ATTACHMENT
+E_TYPE_ATTACHMENT
+E_ATTACHMENT_CLASS
+E_IS_ATTACHMENT_CLASS
+E_ATTACHMENT_GET_CLASS
+EAttachmentClass
+e_attachment_get_type
+<SUBSECTION Private>
+EAttachmentPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-bar</FILE>
+<TITLE>EAttachmentBar</TITLE>
+EAttachmentBar
+e_attachment_bar_new
+e_attachment_bar_get_active_view
+e_attachment_bar_set_active_view
+e_attachment_bar_get_expanded
+e_attachment_bar_set_expanded
+e_attachment_bar_get_store
+<SUBSECTION Standard>
+E_ATTACHMENT_BAR
+E_IS_ATTACHMENT_BAR
+E_TYPE_ATTACHMENT_BAR
+E_ATTACHMENT_BAR_CLASS
+E_IS_ATTACHMENT_BAR_CLASS
+E_ATTACHMENT_BAR_GET_CLASS
+EAttachmentBarClass
+e_attachment_bar_get_type
+<SUBSECTION Private>
+EAttachmentBarPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-button</FILE>
+<TITLE>EAttachmentButton</TITLE>
+EAttachmentButton
+e_attachment_button_new
+e_attachment_button_get_view
+e_attachment_button_get_attachment
+e_attachment_button_set_attachment
+e_attachment_button_get_expandable
+e_attachment_button_set_expandable
+e_attachment_button_get_expanded
+e_attachment_button_set_expanded
+<SUBSECTION Standard>
+E_ATTACHMENT_BUTTON
+E_IS_ATTACHMENT_BUTTON
+E_TYPE_ATTACHMENT_BUTTON
+E_ATTACHMENT_BUTTON_CLASS
+E_IS_ATTACHMENT_BUTTON_CLASS
+E_ATTACHMENT_BUTTON_GET_CLASS
+EAttachmentButtonClass
+e_attachment_button_get_type
+<SUBSECTION Private>
+EAttachmentButtonPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-dialog</FILE>
+<TITLE>EAttachmentDialog</TITLE>
+EAttachmentDialog
+e_attachment_dialog_new
+e_attachment_dialog_get_attachment
+e_attachment_dialog_set_attachment
+<SUBSECTION Standard>
+E_ATTACHMENT_DIALOG
+E_IS_ATTACHMENT_DIALOG
+E_TYPE_ATTACHMENT_DIALOG
+E_ATTACHMENT_DIALOG_CLASS
+E_IS_ATTACHMENT_DIALOG_CLASS
+E_ATTACHMENT_DIALOG_GET_CLASS
+EAttachmentDialogClass
+e_attachment_dialog_get_type
+<SUBSECTION Private>
+EAttachmentDialogPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-handler</FILE>
+<TITLE>EAttachmentHandler</TITLE>
+EAttachmentHandler
+EAttachmentHandlerImage
+EAttachmentHandlerSendto
+e_attachment_handler_get_view
+e_attachment_handler_get_drag_actions
+e_attachment_handler_get_target_table
+<SUBSECTION Standard>
+E_ATTACHMENT_HANDLER
+E_IS_ATTACHMENT_HANDLER
+E_TYPE_ATTACHMENT_HANDLER
+E_ATTACHMENT_HANDLER_CLASS
+E_IS_ATTACHMENT_HANDLER_CLASS
+E_ATTACHMENT_HANDLER_GET_CLASS
+E_ATTACHMENT_HANDLER_IMAGE
+E_IS_ATTACHMENT_HANDLER_IMAGE
+E_TYPE_ATTACHMENT_HANDLER_IMAGE
+E_ATTACHMENT_HANDLER_IMAGE_CLASS
+E_IS_ATTACHMENT_HANDLER_IMAGE_CLASS
+E_ATTACHMENT_HANDLER_IMAGE_GET_CLASS
+E_ATTACHMENT_HANDLER_SENDTO
+E_IS_ATTACHMENT_HANDLER_SENDTO
+E_TYPE_ATTACHMENT_HANDLER_SENDTO
+E_ATTACHMENT_HANDLER_SENDTO_CLASS
+E_IS_ATTACHMENT_HANDLER_SENDTO_CLASS
+E_ATTACHMENT_HANDLER_SENDTO_GET_CLASS
+EAttachmentHandlerClass
+EAttachmentHandlerImageClass
+EAttachmentHandlerSendtoClass
+e_attachment_handler_get_type
+e_attachment_handler_image_get_type
+e_attachment_handler_sendto_get_type
+<SUBSECTION Private>
+EAttachmentHandlerPrivate
+EAttachmentHandlerImagePrivate
+EAttachmentHandlerSendtoPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-icon-view</FILE>
+<TITLE>EAttachmentIconView</TITLE>
+EAttachmentIconView
+e_attachment_icon_view_new
+e_attachment_icon_view_set_default_icon_size
+<SUBSECTION Standard>
+E_ATTACHMENT_ICON_VIEW
+E_IS_ATTACHMENT_ICON_VIEW
+E_TYPE_ATTACHMENT_ICON_VIEW
+E_ATTACHMENT_ICON_VIEW_CLASS
+E_IS_ATTACHMENT_ICON_VIEW_CLASS
+E_ATTACHMENT_ICON_VIEW_GET_CLASS
+EAttachmentIconViewClass
+e_attachment_icon_view_get_type
+<SUBSECTION Private>
+EAttachmentIconViewPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-paned</FILE>
+<TITLE>EAttachmentPaned</TITLE>
+EAttachmentPaned
+e_attachment_paned_new
+e_attachment_paned_get_content_area
+e_attachment_paned_get_active_view
+e_attachment_paned_set_active_view
+e_attachment_paned_get_expanded
+e_attachment_paned_set_expanded
+e_attachment_paned_drag_data_received
+e_attachment_paned_get_controls_container
+e_attachment_paned_get_view_combo
+e_attachment_paned_set_default_height
+<SUBSECTION Standard>
+E_ATTACHMENT_PANED
+E_IS_ATTACHMENT_PANED
+E_TYPE_ATTACHMENT_PANED
+E_ATTACHMENT_PANED_CLASS
+E_IS_ATTACHMENT_PANED_CLASS
+E_ATTACHMENT_PANED_GET_CLASS
+EAttachmentPanedClass
+e_attachment_paned_get_type
+<SUBSECTION Private>
+EAttachmentPanedPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-store</FILE>
+<TITLE>EAttachmentStore</TITLE>
+EAttachmentStore
+e_attachment_store_new
+e_attachment_store_add_attachment
+e_attachment_store_remove_attachment
+e_attachment_store_add_to_multipart
+e_attachment_store_get_attachments
+e_attachment_store_get_num_attachments
+e_attachment_store_get_num_loading
+e_attachment_store_get_total_size
+e_attachment_store_run_load_dialog
+e_attachment_store_run_save_dialog
+e_attachment_store_get_uris_async
+e_attachment_store_get_uris_finish
+e_attachment_store_load_async
+e_attachment_store_load_finish
+e_attachment_store_save_async
+e_attachment_store_save_finish
+<SUBSECTION Standard>
+E_ATTACHMENT_STORE
+E_IS_ATTACHMENT_STORE
+E_TYPE_ATTACHMENT_STORE
+E_ATTACHMENT_STORE_CLASS
+E_IS_ATTACHMENT_STORE_CLASS
+E_ATTACHMENT_STORE_GET_CLASS
+EAttachmentStoreClass
+e_attachment_store_get_type
+<SUBSECTION Private>
+EAttachmentStorePrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-tree-view</FILE>
+<TITLE>EAttachmentTreeView</TITLE>
+EAttachmentTreeView
+e_attachment_tree_view_new
+<SUBSECTION Standard>
+E_ATTACHMENT_TREE_VIEW
+E_IS_ATTACHMENT_TREE_VIEW
+E_TYPE_ATTACHMENT_TREE_VIEW
+E_ATTACHMENT_TREE_VIEW_CLASS
+E_IS_ATTACHMENT_TREE_VIEW_CLASS
+E_ATTACHMENT_TREE_VIEW_GET_CLASS
+EAttachmentTreeViewClass
+e_attachment_tree_view_get_type
+<SUBSECTION Private>
+EAttachmentTreeViewPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-attachment-view</FILE>
+<TITLE>EAttachmentView</TITLE>
+EAttachmentView
+e_attachment_view_init
+e_attachment_view_dispose
+e_attachment_view_finalize
+e_attachment_view_get_private
+e_attachment_view_get_store
+e_attachment_view_get_editable
+e_attachment_view_set_editable
+e_attachment_view_get_target_list
+e_attachment_view_get_drag_actions
+e_attachment_view_get_selected_attachments
+e_attachment_view_open_path
+e_attachment_view_remove_selected
+e_attachment_view_button_press_event
+e_attachment_view_button_release_event
+e_attachment_view_motion_notify_event
+e_attachment_view_key_press_event
+e_attachment_view_get_path_at_pos
+e_attachment_view_get_selected_paths
+e_attachment_view_path_is_selected
+e_attachment_view_select_path
+e_attachment_view_unselect_path
+e_attachment_view_select_all
+e_attachment_view_unselect_all
+e_attachment_view_sync_selection
+e_attachment_view_drag_source_set
+e_attachment_view_drag_source_unset
+e_attachment_view_drag_begin
+e_attachment_view_drag_end
+e_attachment_view_drag_data_get
+e_attachment_view_drag_dest_set
+e_attachment_view_drag_dest_unset
+e_attachment_view_drag_motion
+e_attachment_view_drag_drop
+e_attachment_view_drag_data_received
+e_attachment_view_get_action
+e_attachment_view_add_action_group
+e_attachment_view_get_action_group
+e_attachment_view_get_popup_menu
+e_attachment_view_get_ui_manager
+e_attachment_view_show_popup_menu
+e_attachment_view_update_actions
+<SUBSECTION Standard>
+E_ATTACHMENT_VIEW
+E_IS_ATTACHMENT_VIEW
+E_TYPE_ATTACHMENT_VIEW
+E_ATTACHMENT_VIEW_IFACE
+E_IS_ATTACHMENT_VIEW_IFACE
+E_ATTACHMENT_VIEW_GET_IFACE
+EAttachmentViewIface
+e_attachment_view_get_type
+<SUBSECTION Private>
+EAttachmentViewPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-auth-combo-box</FILE>
+<TITLE>EAuthComboBox</TITLE>
+EAuthComboBox
+e_auth_combo_box_new
+e_auth_combo_box_get_provider
+e_auth_combo_box_set_provider
+e_auth_combo_box_update_available
+<SUBSECTION Standard>
+E_AUTH_COMBO_BOX
+E_IS_AUTH_COMBO_BOX
+E_TYPE_AUTH_COMBO_BOX
+E_AUTH_COMBO_BOX_CLASS
+E_IS_AUTH_COMBO_BOX_CLASS
+E_AUTH_COMBO_BOX_GET_CLASS
+EAuthComboBoxClass
+e_auth_combo_box_get_type
+<SUBSECTION Private>
+EAuthComboBoxPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-autocomplete-selector</FILE>
+<TITLE>EAutocompleteSelector</TITLE>
+EAutocompleteSelector
+e_autocomplete_selector_new
+<SUBSECTION Standard>
+E_AUTOCOMPLETE_SELECTOR
+E_IS_AUTOCOMPLETE_SELECTOR
+E_TYPE_AUTOCOMPLETE_SELECTOR
+E_AUTOCOMPLETE_SELECTOR_CLASS
+E_IS_AUTOCOMPLETE_SELECTOR_CLASS
+E_AUTOCOMPLETE_SELECTOR_GET_CLASS
+EAutocompleteSelectorClass
+e_autocomplete_selector_get_type
+<SUBSECTION Private>
+EAutocompleteSelectorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-bit-array</FILE>
+<TITLE>Bit Arrays (Legacy)</TITLE>
+EBitArray
+e_bit_array_new
+e_bit_array_value_at
+e_bit_array_foreach
+e_bit_array_selected_count
+e_bit_array_select_all
+e_bit_array_invert_selection
+e_bit_array_bit_count
+e_bit_array_change_one_row
+e_bit_array_change_range
+e_bit_array_select_single_row
+e_bit_array_toggle_single_row
+e_bit_array_insert
+e_bit_array_delete
+e_bit_array_delete_single_mode
+e_bit_array_move_row
+<SUBSECTION Standard>
+E_BIT_ARRAY
+E_IS_BIT_ARRAY
+E_BIT_ARRAY_TYPE
+E_BIT_ARRAY_CLASS
+E_IS_BIT_ARRAY_CLASS
+EBitArrayClass
+e_bit_array_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-book-source-config</FILE>
+<TITLE>EBookSourceConfig</TITLE>
+EBookSourceConfig
+e_book_source_config_new
+e_book_source_config_add_offline_toggle
+<SUBSECTION Standard>
+E_BOOK_SOURCE_CONFIG
+E_IS_BOOK_SOURCE_CONFIG
+E_TYPE_BOOK_SOURCE_CONFIG
+E_BOOK_SOURCE_CONFIG_CLASS
+E_IS_BOOK_SOURCE_CONFIG_CLASS
+E_BOOK_SOURCE_CONFIG_GET_CLASS
+EBookSourceConfigClass
+e_book_source_config_get_type
+<SUBSECTION Private>
+EBookSourceConfigPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-cal-source-config</FILE>
+<TITLE>ECalSourceConfig</TITLE>
+ECalSourceConfig
+e_cal_source_config_new
+e_cal_source_config_get_source_type
+e_cal_source_config_add_offline_toggle
+<SUBSECTION Standard>
+E_CAL_SOURCE_CONFIG
+E_IS_CAL_SOURCE_CONFIG
+E_TYPE_CAL_SOURCE_CONFIG
+E_CAL_SOURCE_CONFIG_CLASS
+E_IS_CAL_SOURCE_CONFIG_CLASS
+E_CAL_SOURCE_CONFIG_GET_CLASS
+ECalSourceConfigClass
+e_cal_source_config_get_type
+<SUBSECTION Private>
+ECalSourceConfigPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-calendar</FILE>
+<TITLE>ECalendar</TITLE>
+ECalendar
+e_calendar_new
+e_calendar_set_minimum_size
+e_calendar_set_maximum_size
+e_calendar_get_border_size
+e_calendar_set_focusable
+<SUBSECTION Standard>
+E_CALENDAR
+E_IS_CALENDAR
+E_TYPE_CALENDAR
+E_CALENDAR_CLASS
+E_IS_CALENDAR_CLASS
+E_CALENDAR_GET_CLASS
+ECalendarClass
+e_calendar_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-calendar-item</FILE>
+<TITLE>ECalendarItem</TITLE>
+E_CALENDAR_ITEM_YPAD_ABOVE_MONTH_NAME
+E_CALENDAR_ITEM_YPAD_BELOW_MONTH_NAME
+E_CALENDAR_ITEM_MARK_BOLD
+E_CALENDAR_ITEM_MARK_ITALIC
+E_CALENDAR_ITEM_MIN_CELL_XPAD
+E_CALENDAR_ITEM_MIN_CELL_YPAD
+E_CALENDAR_ITEM_YPAD_ABOVE_DAY_LETTERS
+E_CALENDAR_ITEM_YPAD_BELOW_DAY_LETTERS
+E_CALENDAR_ITEM_YPAD_ABOVE_CELLS
+E_CALENDAR_ITEM_YPAD_BELOW_CELLS
+E_CALENDAR_ITEM_XPAD_BEFORE_MONTH_NAME_WITH_BUTTON
+E_CALENDAR_ITEM_XPAD_BEFORE_MONTH_NAME
+E_CALENDAR_ITEM_XPAD_AFTER_MONTH_NAME
+E_CALENDAR_ITEM_XPAD_AFTER_MONTH_NAME_WITH_BUTTON
+E_CALENDAR_ITEM_XPAD_BEFORE_WEEK_NUMBERS
+E_CALENDAR_ITEM_XPAD_AFTER_WEEK_NUMBERS
+E_CALENDAR_ITEM_XPAD_BEFORE_CELLS
+E_CALENDAR_ITEM_XPAD_AFTER_CELLS
+ECalendarItemColors
+ECalendarItem
+e_calendar_item_get_first_month
+e_calendar_item_set_first_month
+e_calendar_item_get_max_days_sel
+e_calendar_item_set_max_days_sel
+e_calendar_item_get_days_start_week_sel
+e_calendar_item_set_days_start_week_sel
+e_calendar_item_get_display_popup
+e_calendar_item_set_display_popup
+e_calendar_item_get_date_range
+e_calendar_item_get_selection
+e_calendar_item_set_selection
+e_calendar_item_clear_marks
+e_calendar_item_mark_day
+e_calendar_item_mark_days
+ECalendarItemStyleCallback
+e_calendar_item_set_style_callback
+ECalendarItemGetTimeCallback
+e_calendar_item_set_get_time_callback
+e_calendar_item_normalize_date
+e_calendar_item_get_week_number
+e_calendar_item_style_set
+<SUBSECTION Standard>
+E_CALENDAR_ITEM
+E_IS_CALENDAR_ITEM
+E_TYPE_CALENDAR_ITEM
+E_CALENDAR_ITEM_CLASS
+E_IS_CALENDAR_ITEM_CLASS
+E_CALENDAR_ITEM_GET_CLASS
+ECalendarItemClass
+e_calendar_item_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-canvas</FILE>
+<TITLE>ECanvas</TITLE>
+ECanvasItemSelectionFunc
+ECanvasItemSelectionCompareFunc
+ECanvasSelectionInfo
+ECanvas
+e_canvas_new
+e_canvas_item_grab_focus
+e_canvas_item_request_reflow
+e_canvas_item_request_parent_reflow
+ECanvasItemReflowFunc
+e_canvas_item_set_reflow_callback
+ECanvasItemGrabCancelled
+e_canvas_item_grab
+e_canvas_item_ungrab
+<SUBSECTION Standard>
+E_CANVAS
+E_IS_CANVAS
+E_TYPE_CANVAS
+E_CANVAS_CLASS
+E_IS_CANVAS_CLASS
+E_TYPE_CANVAS_CLASS
+ECanvasClass
+e_canvas_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-canvas-background</FILE>
+<TITLE>ECanvasBackground</TITLE>
+ECanvasBackground
+<SUBSECTION Standard>
+E_CANVAS_BACKGROUND
+E_IS_CANVAS_BACKGROUND
+E_TYPE_CANVAS_BACKGROUND
+E_CANVAS_BACKGROUND_CLASS
+E_IS_CANVAS_BACKGROUND_CLASS
+E_CANVAS_BACKGROUND_GET_CLASS
+ECanvasBackgroundClass
+e_canvas_background_get_type
+<SUBSECTION Private>
+ECanvasBackgroundPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-canvas-vbox</FILE>
+<TITLE>ECanvasVbox</TITLE>
+ECanvasVbox
+e_canvas_vbox_add_item
+e_canvas_vbox_add_item_start
+<SUBSECTION Standard>
+E_CANVAS_VBOX
+E_IS_CANVAS_VBOX
+E_TYPE_CANVAS_VBOX
+E_CANVAS_VBOX_CLASS
+E_IS_CANVAS_VBOX_CLASS
+E_CANVAS_VBOX_GET_CLASS
+ECanvasVboxClass
+e_canvas_vbox_get_type
+</SECTION>
+
+<SECTION>
+<FILE>e-categories-config</FILE>
+<TITLE>Categories</TITLE>
+e_categories_config_get_icon_for
+e_categories_config_open_dialog_for_entry
+</SECTION>
+
+<SECTION>
+<FILE>e-categories-dialog</FILE>
+<TITLE>ECategoriesDialog</TITLE>
+ECategoriesDialog
+e_categories_dialog_new
+e_categories_dialog_get_categories
+e_categories_dialog_set_categories
+<SUBSECTION Standard>
+E_CATEGORIES_DIALOG
+E_IS_CATEGORIES_DIALOG
+E_TYPE_CATEGORIES_DIALOG
+E_CATEGORIES_DIALOG_CLASS
+E_IS_CATEGORIES_DIALOG_CLASS
+E_CATEGORIES_DIALOG_GET_CLASS
+ECategoriesDialogClass
+e_categories_dialog_get_type
+<SUBSECTION Private>
+ECategoriesDialogPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-categories-editor</FILE>
+<TITLE>ECategoriesEditor</TITLE>
+ECategoriesEditor
+e_categories_editor_new
+e_categories_editor_get_categories
+e_categories_editor_set_categories
+e_categories_editor_get_entry_visible
+e_categories_editor_set_entry_visible
+<SUBSECTION Standard>
+E_CATEGORIES_EDITOR
+E_IS_CATEGORIES_EDITOR
+E_TYPE_CATEGORIES_EDITOR
+E_CATEGORIES_EDITOR_CLASS
+E_IS_CATEGORIES_EDITOR_CLASS
+E_CATEGORIES_EDITOR_GET_CLASS
+ECategoriesEditorClass
+e_categories_editor_get_type
+<SUBSECTION Private>
+ECategoriesEditorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-categories-selector</FILE>
+<TITLE>ECategoriesSelector</TITLE>
+ECategoriesSelector
+e_categories_selector_new
+e_categories_selector_get_checked
+e_categories_selector_set_checked
+e_categories_selector_get_items_checkable
+e_categories_selector_set_items_checkable
+e_categories_selector_delete_selection
+e_categories_selector_get_selected
+<SUBSECTION Standard>
+E_CATEGORIES_SELECTOR
+E_IS_CATEGORIES_SELECTOR
+E_TYPE_CATEGORIES_SELECTOR
+E_CATEGORIES_SELECTOR_CLASS
+E_IS_CATEGORIES_SELECTOR_CLASS
+E_CATEGORIES_SELECTOR_GET_CLASS
+ECategoriesSelectorClass
+e_categories_selector_get_type
+<SUBSECTION Private>
+ECategoriesSelectorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-category-completion</FILE>
+<TITLE>ECategoryCompletion</TITLE>
+ECategoryCompletion
+e_category_completion_new
+<SUBSECTION Standard>
+E_TYPE_CATEGORY_COMPLETION
+E_CATEGORY_COMPLETION
+E_CATEGORY_COMPLETION_CLASS
+E_IS_CATEGORY_COMPLETION
+E_IS_CATEGORY_COMPLETION_CLASS
+E_CATEGORY_COMPLETION_GET_CLASS
+ECategoryCompletionClass
+e_category_completion_get_type
+<SUBSECTION Private>
+ECategoryCompletionPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-category-editor</FILE>
+<TITLE>ECategoryEditor</TITLE>
+ECategoryEditor
+e_category_editor_new
+e_category_editor_create_category
+e_category_editor_edit_category
+<SUBSECTION Standard>
+E_CATEGORY_EDITOR
+E_IS_CATEGORY_EDITOR
+E_TYPE_CATEGORY_EDITOR
+E_CATEGORY_EDITOR_CLASS
+E_IS_CATEGORY_EDITOR_CLASS
+E_CATEGORY_EDITOR_GET_CLASS
+ECategoryEditorClass
+e_category_editor_get_type
+<SUBSECTION Private>
+ECategoryEditorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-cell-renderer-color</FILE>
+<TITLE>ECellRendererColor</TITLE>
+ECellRendererColor
+e_cell_renderer_color_new
+<SUBSECTION Standard>
+E_TYPE_CELL_RENDERER_COLOR
+E_CELL_RENDERER_COLOR
+E_CELL_RENDERER_COLOR_CLASS
+E_IS_CELL_RENDERER_COLOR
+E_IS_CELL_RENDERER_COLOR_CLASS
+E_CELL_RENDERER_COLOR_GET_CLASS
+ECellRendererColorClass
+e_cell_renderer_color_get_type
+<SUBSECTION Private>
+ECellRendererColorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-charset-combo-box</FILE>
+<TITLE>ECharsetComboBox</TITLE>
+ECharsetComboBox
+e_charset_combo_box_new
+e_charset_combo_box_get_charset
+e_charset_combo_box_set_charset
+<SUBSECTION Standard>
+E_CHARSET_COMBO_BOX
+E_IS_CHARSET_COMBO_BOX
+E_TYPE_CHARSET_COMBO_BOX
+E_CHARSET_COMBO_BOX_CLASS
+E_IS_CHARSET_COMBO_BOX_CLASS
+E_CHARSET_COMBO_BOX_GET_CLASS
+ECharsetComboBoxClass
+e_charset_combo_box_get_type
+<SUBSECTION Private>
+ECharsetComboBoxPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-client-utils</FILE>
+<TITLE>EClient Utilities</TITLE>
+EClientSourceType
+e_client_utils_new
+e_client_utils_open_new
+e_client_utils_open_new_finish
+</SECTION>
+
+<SECTION>
+<FILE>e-contact-store</FILE>
+<TITLE>EContactStore</TITLE>
+EContactStore
+e_contact_store_new
+e_contact_store_get_client
+e_contact_store_get_contact
+e_contact_store_find_contact
+e_contact_store_get_clients
+e_contact_store_add_client
+e_contact_store_remove_client
+e_contact_store_set_query
+e_contact_store_peek_query
+<SUBSECTION Standard>
+E_CONTACT_STORE
+E_IS_CONTACT_STORE
+E_TYPE_CONTACT_STORE
+E_CONTACT_STORE_CLASS
+E_IS_CONTACT_STORE_CLASS
+E_CONTACT_STORE_GET_CLASS
+EContactStoreClass
+e_contact_store_get_type
+<SUBSECTION Private>
+EContactStorePrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-date-edit</FILE>
+<TITLE>EDateEdit</TITLE>
+EDateEditGetTimeCallback
+e_date_edit_new
+e_date_edit_set_editable
+e_date_edit_date_is_valid
+e_date_edit_time_is_valid
+e_date_edit_get_time
+e_date_edit_set_time
+e_date_edit_get_date
+e_date_edit_set_date
+e_date_edit_get_time_of_day
+e_date_edit_set_time_of_day
+e_date_edit_set_date_and_time_of_day
+e_date_edit_get_show_date
+e_date_edit_set_show_date
+e_date_edit_get_show_time
+e_date_edit_set_show_time
+e_date_edit_get_week_start_day
+e_date_edit_set_week_start_day
+e_date_edit_get_show_week_numbers
+e_date_edit_set_show_week_numbers
+e_date_edit_get_use_24_hour_format
+e_date_edit_set_use_24_hour_format
+e_date_edit_get_allow_no_date_set
+e_date_edit_set_allow_no_date_set
+e_date_edit_get_time_popup_range
+e_date_edit_set_time_popup_range
+e_date_edit_get_make_time_insensitive
+e_date_edit_set_make_time_insensitive
+e_date_edit_get_twodigit_year_can_future
+e_date_edit_set_twodigit_year_can_future
+e_date_edit_set_get_time_callback
+e_date_edit_get_entry
+<SUBSECTION Standard>
+E_DATE_EDIT
+E_IS_DATE_EDIT
+E_TYPE_DATE_EDIT
+E_DATE_EDIT_CLASS
+E_IS_DATE_EDIT_CLASS
+E_DATE_EDIT_GET_CLASS
+EDateEditClass
+e_date_edit_get_type
+<SUBSECTION Private>
+EDateEditPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-datetime-format</FILE>
+<TITLE>Date and Time Formatting</TITLE>
+DTFormatKind
+e_datetime_format_add_setup_widget
+e_datetime_format_format
+e_datetime_format_format_tm
+</SECTION>
+
+<SECTION>
+<FILE>e-destination-store</FILE>
+<TITLE>EDestinationStore</TITLE>
+EDestinationStore
+EDestinationStoreColumnType
+e_destination_store_new
+e_destination_store_get_destination
+e_destination_store_list_destinations
+e_destination_store_insert_destination
+e_destination_store_append_destination
+e_destination_store_remove_destination
+e_destination_store_remove_destination_nth
+e_destination_store_get_destination_count
+e_destination_store_get_path
+e_destination_store_get_stamp
+<SUBSECTION Standard>
+E_DESTINATION_STORE
+E_IS_DESTINATION_STORE
+E_TYPE_DESTINATION_STORE
+E_DESTINATION_STORE_CLASS
+E_IS_DESTINATION_STORE_CLASS
+E_DESTINATION_STORE_GET_CLASS
+EDestinationStoreClass
+e_destination_store_get_type
+<SUBSECTION Private>
+EDestinationStorePrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-dialog-utils</FILE>
+<TITLE>Dialog Utilities (Legacy)</TITLE>
+e_notice
+e_dialog_combo_box_set
+e_dialog_combo_box_get
+</SECTION>
+
+<SECTION>
+<FILE>e-file-request</FILE>
+<TITLE>EFileRequest</TITLE>
+EFileRequest
+<SUBSECTION Standard>
+E_FILE_REQUEST
+E_IS_FILE_REQUEST
+E_TYPE_FILE_REQUEST
+E_FILE_REQUEST_CLASS
+E_IS_FILE_REQUEST_CLASS
+E_FILE_REQUEST_GET_CLASS
+EFileRequestClass
+e_file_request_get_type
+<SUBSECTION Private>
+EFileRequestPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-filter-code</FILE>
+<TITLE>EFilterCode</TITLE>
+EFilterCode
+e_filter_code_new
+<SUBSECTION Standard>
+E_FILTER_CODE
+E_IS_FILTER_CODE
+E_TYPE_FILTER_CODE
+E_FILTER_CODE_CLASS
+E_IS_FILTER_CODE_CLASS
+E_FILTER_CODE_GET_CLASS
+EFilterCodeClass
+e_filter_code_get_type
+<SUBSECTION Private>
+EFilterCodePrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-filter-color</FILE>
+<TITLE>EFilterColor</TITLE>
+EFilterColor
+e_filter_color_new
+<SUBSECTION Standard>
+E_FILTER_COLOR
+E_IS_FILTER_COLOR
+E_TYPE_FILTER_COLOR
+E_FILTER_COLOR_CLASS
+E_IS_FILTER_COLOR_CLASS
+E_FILTER_COLOR_GET_CLASS
+EFilterColorClass
+e_filter_color_get_type
+<SUBSECTION Private>
+EFilterColorPrivate
+</SUBSECTION>
+
+<SECTION>
+<FILE>e-filter-datespec</FILE>
+<TITLE>EFilterDatespec</TITLE>
+EFilterDatespec
+EFilterDatespecType
+e_filter_datespec_new
+<SUBSECTION Standard>
+E_FILTER_DATESPEC
+E_IS_FILTER_DATESPEC
+E_TYPE_FILTER_DATESPEC
+E_FILTER_DATESPEC_CLASS
+E_IS_FILTER_DATESPEC_CLASS
+E_FILTER_DATESPEC_GET_CLASS
+EFilterDatespecClass
+e_filter_datespec_get_type
+<SUBSECTION Private>
+EFilterDatespecPrivate
+</SUBSECTION>
+
+<SECTION>
+<FILE>e-filter-element</FILE>
+<TITLE>EFilterElement</TITLE>
+EFilterElement
+e_filter_element_new
+e_filter_element_set_data
+e_filter_element_validate
+e_filter_element_eq
+e_filter_element_xml_create
+e_filter_element_xml_encode
+e_filter_element_xml_decode
+e_filter_element_clone
+e_filter_element_copy_value
+e_filter_element_get_widget
+e_filter_element_build_code
+e_filter_element_format_sexp
+<SUBSECTION Standard>
+E_FILTER_ELEMENT
+E_IS_FILTER_ELEMENT
+E_TYPE_FILTER_ELEMENT
+E_FILTER_ELEMENT_CLASS
+E_IS_FILTER_ELEMENT_CLASS
+E_FILTER_ELEMENT_GET_CLASS
+EFilterElementClass
+e_filter_element_get_type
+<SUBSECTION Private>
+EFilterElementPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-filter-file</FILE>
+<TITLE>EFilterFile</TITLE>
+EFilterFile
+e_filter_file_new
+e_filter_file_new_type_name
+e_filter_file_set_path
+<SUBSECTION Standard>
+E_FILTER_FILE
+E_IS_FILTER_FILE
+E_TYPE_FILTER_FILE
+E_FILTER_FILE_CLASS
+E_IS_FILTER_FILE_CLASS
+E_FILTER_FILE_GET_CLASS
+EFilterFileClass
+e_filter_file_get_type
+<SUBSECTION Private>
+EFilterFilePrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-filter-input</FILE>
+<TITLE>EFilterInput</TITLE>
+EFilterInput
+e_filter_input_new
+e_filter_input_new_type_name
+e_filter_input_set_value
+<SUBSECTION Standard>
+E_FILTER_INPUT
+E_IS_FILTER_INPUT
+E_TYPE_FILTER_INPUT
+E_FILTER_INPUT_CLASS
+E_IS_FILTER_INPUT_CLASS
+E_TYPE_FILTER_INPUT_CLASS
+EFilterInputClass
+e_filter_input_get_type
+<SUBSECTION Private>
+EFilterInputPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-filter-int</FILE>
+<TITLE>EFilterInt</TITLE>
+EFilterInt
+e_filter_int_new
+e_filter_int_new_type
+e_filter_int_set_value
+<SUBSECTION Standard>
+E_FILTER_INT
+E_IS_FILTER_INT
+E_TYPE_FILTER_INT
+E_FILTER_INT_CLASS
+E_IS_FILTER_INT_CLASS
+E_FILTER_INT_GET_CLASS
+EFilterIntClass
+e_filter_int_get_type
+<SUBSECTION Private>
+EFilterIntPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-filter-option</FILE>
+<TITLE>EFilterOption</TITLE>
+EFilterOption
+e_filter_option_new
+e_filter_option_set_current
+e_filter_option_get_current
+e_filter_option_add
+e_filter_option_remove_all
+<SUBSECTION Standard>
+E_FILTER_OPTION
+E_IS_FILTER_OPTION
+E_TYPE_FILTER_OPTION
+E_FILTER_OPTION_CLASS
+E_IS_FILTER_OPTION_CLASS
+E_FILTER_OPTION_GET_CLASS
+EFilterOptionClass
+e_filter_option_get_type
+<SUBSECTION Private>
+EFilterOptionPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-filter-part</FILE>
+<TITLE>EFilterPart</TITLE>
+EFilterPart
+e_filter_part_new
+e_filter_part_validate
+e_filter_part_eq
+e_filter_part_xml_create
+e_filter_part_xml_encode
+e_filter_part_xml_decode
+e_filter_part_clone
+e_filter_part_copy_values
+e_filter_part_find_element
+e_filter_part_get_widget
+e_filter_part_build_code
+e_filter_part_expand_code
+e_filter_part_build_code_list
+e_filter_part_find_list
+e_filter_part_next_list
+<SUBSECTION Standard>
+E_FILTER_PART
+E_IS_FILTER_PART
+E_TYPE_FILTER_PART
+E_FILTER_PART_CLASS
+E_IS_FILTER_PART_CLASS
+E_FILTER_PART_GET_CLASS
+EFilterPartClass
+e_filter_part_get_type
+<SUBSECTION Private>
+EFilterPartPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-filter-rule</FILE>
+<TITLE>EFilterRule</TITLE>
+EFilterRule
+e_filter_rule_new
+e_filter_rule_clone
+e_filter_rule_set_name
+E_FILTER_SOURCE_INCOMING
+E_FILTER_SOURCE_DEMAND
+E_FILTER_SOURCE_OUTGOING
+E_FILTER_SOURCE_JUNKTEST
+e_filter_rule_set_source
+e_filter_rule_validate
+e_filter_rule_eq
+e_filter_rule_xml_encode
+e_filter_rule_xml_decode
+e_filter_rule_copy
+e_filter_rule_add_part
+e_filter_rule_remove_part
+e_filter_rule_replace_part
+e_filter_rule_get_widget
+e_filter_rule_build_code
+e_filter_rule_emit_changed
+e_filter_rule_next_list
+e_filter_rule_find_list
+<SUBSECTION Standard>
+E_FILTER_RULE
+E_IS_FILTER_RULE
+E_TYPE_FILTER_RULE
+E_FILTER_RULE_CLASS
+E_IS_FILTER_RULE_CLASS
+E_FILTER_RULE_GET_CLASS
+EFilterRuleClass
+e_filter_rule_get_type
+<SUBSECTION Private>
+EFilterRulePrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-focus-tracker</FILE>
+<TITLE>EFocusTracker</TITLE>
+EFocusTracker
+e_focus_tracker_new
+e_focus_tracker_get_focus
+e_focus_tracker_get_window
+e_focus_tracker_get_cut_clipboard_action
+e_focus_tracker_set_cut_clipboard_action
+e_focus_tracker_get_copy_clipboard_action
+e_focus_tracker_set_copy_clipboard_action
+e_focus_tracker_get_paste_clipboard_action
+e_focus_tracker_set_paste_clipboard_action
+e_focus_tracker_get_delete_selection_action
+e_focus_tracker_set_delete_selection_action
+e_focus_tracker_get_select_all_action
+e_focus_tracker_set_select_all_action
+e_focus_tracker_update_actions
+e_focus_tracker_cut_clipboard
+e_focus_tracker_copy_clipboard
+e_focus_tracker_paste_clipboard
+e_focus_tracker_delete_selection
+e_focus_tracker_select_all
+<SUBSECTION Standard>
+E_FOCUS_TRACKER
+E_IS_FOCUS_TRACKER
+E_TYPE_FOCUS_TRACKER
+E_FOCUS_TRACKER_CLASS
+E_IS_FOCUS_TRACKER_CLASS
+E_FOCUS_TRACKER_GET_CLASS
+EFocusTrackerClass
+e_focus_tracker_get_type
+<SUBSECTION Private>
+EFocusTrackerPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-html-utils</FILE>
+<TITLE>Text to HTML Conversion</TITLE>
+E_TEXT_TO_HTML_PRE
+E_TEXT_TO_HTML_CONVERT_NL
+E_TEXT_TO_HTML_CONVERT_SPACES
+E_TEXT_TO_HTML_CONVERT_URLS
+E_TEXT_TO_HTML_MARK_CITATION
+E_TEXT_TO_HTML_CONVERT_ADDRESSES
+E_TEXT_TO_HTML_ESCAPE_8BIT
+E_TEXT_TO_HTML_CITE
+e_text_to_html_full
+e_text_to_html
+</SECTION>
+
+<SECTION>
+<FILE>e-icon-factory</FILE>
+<TITLE>Icon Utilities (Legacy)</TITLE>
+e_icon_factory_get_icon_filename
+e_icon_factory_get_icon
+e_icon_factory_pixbuf_scale
+e_icon_factory_create_thumbnail
+</SECTION>
+
+<SECTION>
+<FILE>e-mail-identity-combo-box</FILE>
+<TITLE>EMailIdentityComboBox</TITLE>
+EMailIdentityComboBox
+e_mail_identity_combo_box_new
+e_mail_identity_combo_box_refresh
+e_mail_identity_combo_box_get_registry
+<SUBSECTION Standard>
+E_MAIL_IDENTITY_COMBO_BOX
+E_IS_MAIL_IDENTITY_COMBO_BOX
+E_TYPE_MAIL_IDENTITY_COMBO_BOX
+E_MAIL_IDENTITY_COMBO_BOX_CLASS
+E_IS_MAIL_IDENTITY_COMBO_BOX_CLASS
+E_MAIL_IDENTITY_COMBO_BOX_GET_CLASS
+EMailIdentityComboBoxClass
+e_mail_identity_combo_box_get_type
+<SUBSECTION Private>
+EMailIdentityComboBoxPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-misc-utils</FILE>
+<TITLE>Miscellaneous Utilities</TITLE>
+e_get_accels_filename
+e_show_uri
+e_display_help
+e_lookup_action
+e_lookup_action_group
+e_action_compare_by_label
+e_action_group_remove_all_actions
+e_radio_action_get_current_action
+e_categories_add_change_hook
+e_str_without_underscores
+e_str_compare
+e_str_case_compare
+e_collate_compare
+e_int_compare
+e_color_to_value
+e_format_number
+ESortCompareFunc
+e_bsearch
+e_strftime_fix_am_pm
+e_utf8_strftime_fix_am_pm
+e_get_month_name
+e_get_weekday_name
+e_flexible_strtod
+e_ascii_dtostr
+e_file_lock_create
+e_file_lock_destroy
+e_file_lock_exists
+e_util_guess_mime_type
+e_util_get_category_filter_options
+e_binding_transform_color_to_string
+e_binding_transform_string_to_color
+e_binding_transform_source_to_uid
+e_binding_transform_uid_to_source
+e_charset_add_radio_actions
+e_file_replace_contents_async
+e_file_replace_contents_finish
+e_mktemp
+e_mkstemp
+e_mkdtemp
+</SECTION>
+
+<SECTION>
+<FILE>e-name-selector</FILE>
+<TITLE>ENameSelector</TITLE>
+ENameSelector
+e_name_selector_new
+e_name_selector_get_registry
+e_name_selector_peek_model
+e_name_selector_peek_dialog
+e_name_selector_peek_section_entry
+e_name_selector_peek_section_list
+e_name_selector_show_dialog
+e_name_selector_load_books
+e_name_selector_cancel_loading
+<SUBSECTION Standard>
+E_NAME_SELECTOR
+E_IS_NAME_SELECTOR
+E_TYPE_NAME_SELECTOR
+E_NAME_SELECTOR_CLASS
+E_IS_NAME_SELECTOR_CLASS
+E_NAME_SELECTOR_GET_CLASS
+ENameSelectorClass
+e_name_selector_get_type
+<SUBSECTION Private>
+ENameSelectorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-name-selector-dialog</FILE>
+<TITLE>ENameSelectorDialog</TITLE>
+ENameSelectorDialog
+e_name_selector_dialog_new
+e_name_selector_dialog_get_registry
+e_name_selector_dialog_peek_model
+e_name_selector_dialog_set_model
+e_name_selector_dialog_set_destination_index
+e_name_selector_dialog_set_scrolling_policy
+e_name_selector_dialog_get_section_visible
+e_name_selector_dialog_set_section_visible
+<SUBSECTION Standard>
+E_NAME_SELECTOR_DIALOG
+E_IS_NAME_SELECTOR_DIALOG
+E_TYPE_NAME_SELECTOR_DIALOG
+E_NAME_SELECTOR_DIALOG_CLASS
+E_IS_NAME_SELECTOR_DIALOG_CLASS
+E_NAME_SELECTOR_DIALOG_GET_CLASS
+ENameSelectorDialogClass
+e_name_selector_dialog_get_type
+<SUBSECTION Private>
+ENameSelectorDialogPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-name-selector-entry</FILE>
+<TITLE>ENameSelectorEntry</TITLE>
+ENameSelectorEntry
+e_name_selector_entry_new
+e_name_selector_entry_get_registry
+e_name_selector_entry_set_registry
+e_name_selector_entry_get_minimum_query_length
+e_name_selector_entry_set_minimum_query_length
+e_name_selector_entry_get_show_address
+e_name_selector_entry_set_show_address
+e_name_selector_entry_peek_contact_store
+e_name_selector_entry_set_contact_store
+e_name_selector_entry_peek_destination_store
+e_name_selector_entry_set_destination_store
+e_name_selector_entry_get_popup_destination
+e_name_selector_entry_set_contact_editor_func
+e_name_selector_entry_set_contact_list_editor_func
+ens_util_populate_user_query_fields
+<SUBSECTION Standard>
+E_NAME_SELECTOR_ENTRY
+E_IS_NAME_SELECTOR_ENTRY
+E_TYPE_NAME_SELECTOR_ENTRY
+E_NAME_SELECTOR_ENTRY_CLASS
+E_IS_NAME_SELECTOR_ENTRY_CLASS
+E_NAME_SELECTOR_ENTRY_GET_CLASS
+ENameSelectorEntryClass
+e_name_selector_entry_get_type
+<SUBSECTION Private>
+ENameSelectorEntryPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-name-selector-list</FILE>
+<TITLE>ENameSelectorList</TITLE>
+ENameSelectorList
+e_name_selector_list_new
+e_name_selector_list_expand_clicked
+<SUBSECTION Standard>
+E_NAME_SELECTOR_LIST
+E_IS_NAME_SELECTOR_LIST
+E_TYPE_NAME_SELECTOR_LIST
+E_NAME_SELECTOR_LIST_CLASS
+E_IS_NAME_SELECTOR_LIST_CLASS
+E_NAME_SELECTOR_LIST_GET_CLASS
+ENameSelectorListClass
+e_name_selector_list_get_type
+<SUBSECTION Private>
+ENameSelectorListPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-name-selector-model</FILE>
+<TITLE>ENameSelectorModel</TITLE>
+ENameSelectorModel
+e_name_selector_model_new
+e_name_selector_model_peek_contact_store
+e_name_selector_model_peek_contact_filter
+e_name_selector_model_list_sections
+e_name_selector_model_peek_section
+e_name_selector_model_add_section
+e_name_selector_model_remove_section
+e_name_selector_model_get_contact_emails_without_used
+e_name_selector_model_free_emails_list
+<SUBSECTION Standard>
+E_NAME_SELECTOR_MODEL
+E_IS_NAME_SELECTOR_MODEL
+E_TYPE_NAME_SELECTOR_MODEL
+E_NAME_SELECTOR_MODEL_CLASS
+E_IS_NAME_SELECTOR_MODEL_CLASS
+E_NAME_SELECTOR_MODEL_GET_CLASS
+ENameSelectorModelClass
+e_name_selector_model_get_type
+<SUBSECTION Private>
+ENameSelectorModelPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-passwords</FILE>
+<TITLE>Password Utilities (Legacy)</TITLE>
+e_passwords_init
+e_passwords_shutdown
+e_passwords_cancel
+e_passwords_set_online
+e_passwords_remember_password
+e_passwords_add_password
+e_passwords_get_password
+e_passwords_forget_password
+e_passwords_forget_passwords
+e_passwords_clear_passwords
+EPasswordsRememberType
+e_passwords_ask_password
+</SECTION>
+
+<SECTION>
+<FILE>e-poolv</FILE>
+<TITLE>EPoolv</TITLE>
+EPoolv
+e_poolv_new
+e_poolv_set
+e_poolv_get
+e_poolv_destroy
+</SECTION>
+
+<SECTION>
+<FILE>e-popup-action</FILE>
+<TITLE>EPopupAction</TITLE>
+EPopupAction
+e_popup_action_new
+EPopupActionEntry
+e_action_group_add_popup_actions
+<SUBSECTION Standard>
+E_POPUP_ACTION
+E_IS_POPUP_ACTION
+E_TYPE_POPUP_ACTION
+E_POPUP_ACTION_CLASS
+E_IS_POPUP_ACTION_CLASS
+E_POPUP_ACTION_GET_CLASS
+EPopupActionClass
+e_popup_action_get_type
+<SUBSECTION Private>
+EPopupActionPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-print</FILE>
+<TITLE>Printing</TITLE>
+e_print_operation_new
+e_print_run_page_setup_dialog
+</SECTION>
+
+<SECTION>
+<FILE>e-rule-context</FILE>
+<TITLE>ERuleContext</TITLE>
+ERuleContext
+ERuleContextRegisterFunc
+ERuleContextPartFunc
+ERuleContextRuleFunc
+ERuleContextNextPartFunc
+ERuleContextNextRuleFunc
+e_rule_context_new
+e_rule_context_load
+e_rule_context_save
+e_rule_context_revert
+e_rule_context_add_part
+e_rule_context_find_part
+e_rule_context_create_part
+e_rule_context_next_part
+e_rule_context_next_rule
+e_rule_context_find_rule
+e_rule_context_find_rank_rule
+e_rule_context_add_rule
+e_rule_context_add_rule_gui
+e_rule_context_remove_rule
+e_rule_context_rank_rule
+e_rule_context_get_rank_rule
+e_rule_context_add_part_set
+e_rule_context_add_rule_set
+e_rule_context_new_element
+e_rule_context_delete_uri
+e_rule_context_rename_uri
+e_rule_context_free_uri_list
+<SUBSECTION Standard>
+E_RULE_CONTEXT
+E_IS_RULE_CONTEXT
+E_TYPE_RULE_CONTEXT
+E_RULE_CONTEXT_CLASS
+E_IS_RULE_CONTEXT_CLASS
+E_RULE_CONTEXT_GET_CLASS
+ERuleContextClass
+e_rule_context_get_type
+<SUBSECTION Private>
+ERuleContextPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-rule-editor</FILE>
+<TITLE>ERuleEditor</TITLE>
+ERuleEditor
+ERuleEditorUndo
+e_rule_editor_new
+e_rule_editor_construct
+e_rule_editor_set_source
+e_rule_editor_set_sensitive
+e_rule_editor_create_rule
+<SUBSECTION Standard>
+E_RULE_EDITOR
+E_IS_RULE_EDITOR
+E_TYPE_RULE_EDITOR
+E_RULE_EDITOR_CLASS
+E_IS_RULE_EDITOR_CLASS
+E_RULE_EDITOR_GET_CLASS
+ERuleEditorClass
+e_rule_editor_get_type
+<SUBSECTION Private>
+ERuleEditorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-selection</FILE>
+<TITLE>Selections</TITLE>
+e_target_list_add_calendar_targets
+e_target_list_add_directory_targets
+e_selection_data_set_calendar
+e_selection_data_set_directory
+e_selection_data_get_calendar
+e_selection_data_get_directory
+e_selection_data_targets_include_calendar
+e_selection_data_targets_include_directory
+e_targets_include_calendar
+e_targets_include_directory
+e_clipboard_set_calendar
+e_clipboard_set_directory
+e_clipboard_request_calendar
+e_clipboard_request_directory
+e_clipboard_wait_for_calendar
+e_clipboard_wait_for_directory
+e_clipboard_wait_is_calendar_available
+e_clipboard_wait_is_directory_available
+</SECTION>
+
+<SECTION>
+<FILE>e-source-combo-box</FILE>
+<TITLE>ESourceComboBox</TITLE>
+ESourceComboBox
+e_source_combo_box_new
+e_source_combo_box_get_registry
+e_source_combo_box_set_registry
+e_source_combo_box_get_extension_name
+e_source_combo_box_set_extension_name
+e_source_combo_box_get_show_colors
+e_source_combo_box_set_show_colors
+e_source_combo_box_ref_active
+e_source_combo_box_set_active
+<SUBSECTION Standard>
+E_SOURCE_COMBO_BOX
+E_IS_SOURCE_COMBO_BOX
+E_TYPE_SOURCE_COMBO_BOX
+E_SOURCE_COMBO_BOX_CLASS
+E_IS_SOURCE_COMBO_BOX_CLASS
+E_SOURCE_COMBO_BOX_GET_CLASS
+ESourceComboBoxClass
+e_source_combo_box_get_type
+<SUBSECTION Private>
+ESourceComboBoxPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-source-selector</FILE>
+<TITLE>ESourceSelector</TITLE>
+ESourceSelector
+e_source_selector_new
+e_source_selector_get_registry
+e_source_selector_get_extension_name
+e_source_selector_get_show_colors
+e_source_selector_set_show_colors
+e_source_selector_get_show_toggles
+e_source_selector_set_show_toggles
+e_source_selector_select_source
+e_source_selector_unselect_source
+e_source_selector_select_exclusive
+e_source_selector_source_is_selected
+e_source_selector_get_selection
+e_source_selector_free_selection
+e_source_selector_set_select_new
+e_source_selector_edit_primary_selection
+e_source_selector_ref_primary_selection
+e_source_selector_set_primary_selection
+e_source_selector_ref_source_by_path
+e_source_selector_queue_write
+<SUBSECTION Standard>
+E_SOURCE_SELECTOR
+E_IS_SOURCE_SELECTOR
+E_TYPE_SOURCE_SELECTOR
+E_SOURCE_SELECTOR_CLASS
+E_IS_SOURCE_SELECTOR_CLASS
+E_SOURCE_SELECTOR_GET_CLASS
+ESourceSelectorClass
+e_source_selector_get_type
+<SUBSECTION Private>
+ESourceSelectorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-source-selector-dialog</FILE>
+<TITLE>ESourceSelectorDialog</TITLE>
+ESourceSelectorDialog
+e_source_selector_dialog_new
+e_source_selector_dialog_get_registry
+e_source_selector_dialog_get_extension_name
+e_source_selector_dialog_get_selector
+e_source_selector_dialog_peek_primary_selection
+<SUBSECTION Standard>
+E_SOURCE_SELECTOR_DIALOG
+E_IS_SOURCE_SELECTOR_DIALOG
+E_TYPE_SOURCE_SELECTOR_DIALOG
+E_SOURCE_SELECTOR_DIALOG_CLASS
+E_IS_SOURCE_SELECTOR_DIALOG_CLASS
+E_SOURCE_SELECTOR_DIALOG_GET_CLASS
+ESourceSelectorDialogClass
+e_source_selector_dialog_get_type
+<SUBSECTION Private>
+ESourceSelectorDialogPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-tree-model-generator</FILE>
+<TITLE>ETreeModelGenerator</TITLE>
+ETreeModelGeneratorGenerateFunc
+ETreeModelGeneratorModifyFunc
+ETreeModelGenerator
+e_tree_model_generator_new
+e_tree_model_generator_get_model
+e_tree_model_generator_set_generate_func
+e_tree_model_generator_set_modify_func
+e_tree_model_generator_convert_child_path_to_path
+e_tree_model_generator_convert_child_iter_to_iter
+e_tree_model_generator_convert_path_to_child_path
+e_tree_model_generator_convert_iter_to_child_iter
+<SUBSECTION Standard>
+E_TREE_MODEL_GENERATOR
+E_IS_TREE_MODEL_GENERATOR
+E_TYPE_TREE_MODEL_GENERATOR
+E_TREE_MODEL_GENERATOR_CLASS
+E_IS_TREE_MODEL_GENERATOR_CLASS
+E_TREE_MODEL_GENERATOR_GET_CLASS
+ETreeModelGeneratorClass
+e_tree_model_generator_get_type
+<SUBSECTION Private>
+ETreeModelGeneratorPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-web-view</FILE>
+<TITLE>EWebView</TITLE>
+EWebView
+e_web_view_new
+e_web_view_clear
+e_web_view_load_string
+e_web_view_get_caret_mode
+e_web_view_set_caret_mode
+e_web_view_get_copy_target_list
+e_web_view_get_disable_printing
+e_web_view_set_disable_printing
+e_web_view_get_disable_save_to_disk
+e_web_view_set_disable_save_to_disk
+e_web_view_get_editable
+e_web_view_set_editable
+e_web_view_get_inline_spelling
+e_web_view_set_inline_spelling
+e_web_view_get_magic_links
+e_web_view_set_magic_links
+e_web_view_get_magic_smileys
+e_web_view_set_magic_smileys
+e_web_view_get_selected_uri
+e_web_view_set_selected_uri
+e_web_view_get_open_proxy
+e_web_view_set_open_proxy
+e_web_view_get_paste_target_list
+e_web_view_get_print_proxy
+e_web_view_set_print_proxy
+e_web_view_get_save_as_proxy
+e_web_view_set_save_as_proxy
+e_web_view_get_action
+e_web_view_get_action_group
+e_web_view_extract_uri
+e_web_view_copy_clipboard
+e_web_view_cut_clipboard
+e_web_view_is_selection_active
+e_web_view_paste_clipboard
+e_web_view_scroll_forward
+e_web_view_scroll_backward
+e_web_view_select_all
+e_web_view_unselect_all
+e_web_view_zoom_100
+e_web_view_zoom_in
+e_web_view_zoom_out
+e_web_view_get_ui_manager
+e_web_view_get_popup_menu
+e_web_view_show_popup_menu
+e_web_view_status_message
+e_web_view_stop_loading
+e_web_view_update_actions
+<SUBSECTION Standard>
+E_WEB_VIEW
+E_IS_WEB_VIEW
+E_TYPE_WEB_VIEW
+E_WEB_VIEW_CLASS
+E_IS_WEB_VIEW_CLASS
+E_WEB_VIEW_GET_CLASS
+EWebViewClass
+e_web_view_get_type
+<SUBSECTION Private>
+EWebViewPrivate
+</SECTION>
+
+<SECTION>
+<FILE>e-xml-utils</FILE>
+<TITLE>Reading and Writing XML</TITLE>
+e_xml_get_child_by_name_by_lang
+e_xml_get_child_by_name_by_lang_list
+e_xml_get_child_by_name_no_lang
+e_xml_get_integer_prop_by_name
+e_xml_get_integer_prop_by_name_with_default
+e_xml_set_integer_prop_by_name
+e_xml_get_uint_prop_by_name
+e_xml_get_uint_prop_by_name_with_default
+e_xml_set_uint_prop_by_name
+e_xml_get_bool_prop_by_name
+e_xml_get_bool_prop_by_name_with_default
+e_xml_set_bool_prop_by_name
+e_xml_get_double_prop_by_name
+e_xml_get_double_prop_by_name_with_default
+e_xml_set_double_prop_by_name
+e_xml_get_string_prop_by_name
+e_xml_get_string_prop_by_name_with_default
+e_xml_set_string_prop_by_name
+e_xml_get_translated_string_prop_by_name
+</SECTION>
+
diff --git a/doc/reference/libeutil/libeutil.types b/doc/reference/libeutil/libeutil.types
new file mode 100644
index 0000000000..b78b7ade94
--- /dev/null
+++ b/doc/reference/libeutil/libeutil.types
@@ -0,0 +1,170 @@
+#include <e-util/e-util.h>
+
+e_action_combo_box_get_type
+e_activity_bar_get_type
+e_activity_get_type
+e_activity_proxy_get_type
+e_alarm_selector_get_type
+e_alert_bar_get_type
+e_alert_dialog_get_type
+e_alert_get_type
+e_alert_sink_get_type
+e_attachment_bar_get_type
+e_attachment_button_get_type
+e_attachment_dialog_get_type
+e_attachment_get_type
+e_attachment_handler_get_type
+e_attachment_handler_image_get_type
+e_attachment_handler_sendto_get_type
+e_attachment_icon_view_get_type
+e_attachment_paned_get_type
+e_attachment_store_get_type
+e_attachment_tree_view_get_type
+e_attachment_view_get_type
+e_auth_combo_box_get_type
+e_bit_array_get_type
+e_book_source_config_get_type
+e_cal_source_config_get_type
+e_calendar_get_type
+e_calendar_item_get_type
+e_canvas_background_get_type
+e_canvas_get_type
+e_canvas_vbox_get_type
+e_categories_dialog_get_type
+e_categories_editor_get_type
+e_categories_selector_get_type
+e_category_completion_get_type
+e_category_editor_get_type
+e_cell_checkbox_get_type
+e_cell_combo_get_type
+e_cell_date_edit_get_type
+e_cell_date_get_type
+e_cell_get_type
+e_cell_hbox_get_type
+e_cell_number_get_type
+e_cell_percent_get_type
+e_cell_pixbuf_get_type
+e_cell_popup_get_type
+e_cell_renderer_color_get_type
+e_cell_size_get_type
+e_cell_text_get_type
+e_cell_toggle_get_type
+e_cell_tree_get_type
+e_cell_vbox_get_type
+e_charset_combo_box_get_type
+e_config_get_type
+e_config_hook_get_type
+e_contact_store_get_type
+e_date_edit_get_type
+e_destination_store_get_type
+e_event_get_type
+e_event_hook_get_type
+e_file_request_get_type
+e_filter_code_get_type
+e_filter_color_get_type
+e_filter_datespec_get_type
+e_filter_element_get_type
+e_filter_file_get_type
+e_filter_input_get_type
+e_filter_int_get_type
+e_filter_option_get_type
+e_filter_part_get_type
+e_filter_rule_get_type
+e_focus_tracker_get_type
+e_image_chooser_get_type
+e_import_assistant_get_type
+e_import_get_type
+e_import_hook_get_type
+e_interval_chooser_get_type
+e_map_get_type
+e_menu_tool_action_get_type
+e_menu_tool_button_get_type
+e_name_selector_dialog_get_type
+e_name_selector_entry_get_type
+e_name_selector_get_type
+e_name_selector_list_get_type
+e_name_selector_model_get_type
+e_online_button_get_type
+e_paned_get_type
+e_picture_gallery_get_type
+e_plugin_get_type
+e_plugin_hook_get_type
+e_plugin_ui_hook_get_type
+e_popup_action_get_type
+e_port_entry_get_type
+e_preferences_window_get_type
+e_preview_pane_get_type
+e_printable_get_type
+e_reflow_get_type
+e_reflow_model_get_type
+e_rule_context_get_type
+e_rule_editor_get_type
+e_search_bar_get_type
+e_selectable_get_type
+e_selection_model_array_get_type
+e_selection_model_get_type
+e_selection_model_simple_get_type
+e_send_options_dialog_get_type
+e_sorter_array_get_type
+e_sorter_get_type
+e_source_combo_box_get_type
+e_source_config_dialog_get_type
+e_source_config_get_type
+e_source_selector_dialog_get_type
+e_source_selector_get_type
+e_spell_entry_get_type
+e_stock_request_get_type
+e_table_click_to_add_get_type
+e_table_col_get_type
+e_table_column_specification_get_type
+e_table_config_get_type
+e_table_extras_get_type
+e_table_field_chooser_dialog_get_type
+e_table_field_chooser_get_type
+e_table_field_chooser_item_get_type
+e_table_get_type
+e_table_group_get_type
+e_table_group_leaf_get_type
+e_table_header_get_type
+e_table_header_item_get_type
+e_table_item_get_type
+e_table_memory_get_type
+e_table_memory_store_get_type
+e_table_model_get_type
+e_table_one_get_type
+e_table_search_get_type
+e_table_selection_model_get_type
+e_table_sort_info_get_type
+e_table_sorted_get_type
+e_table_sorter_get_type
+e_table_specification_get_type
+e_table_state_get_type
+e_table_subset_get_type
+e_table_without_get_type
+e_text_event_processor_emacs_like_get_type
+e_text_event_processor_get_type
+e_text_get_type
+e_text_model_get_type
+e_timezone_dialog_get_type
+e_tree_get_type
+e_tree_memory_get_type
+e_tree_model_generator_get_type
+e_tree_model_get_type
+e_tree_selection_model_get_type
+e_tree_sorted_get_type
+e_tree_table_adapter_get_type
+e_ui_manager_get_type
+e_url_entry_get_type
+e_web_view_get_type
+e_web_view_gtkhtml_get_type
+e_web_view_preview_get_type
+gal_define_views_dialog_get_type
+gal_define_views_model_get_type
+gal_view_collection_get_type
+gal_view_etable_get_type
+gal_view_factory_etable_get_type
+gal_view_factory_get_type
+gal_view_get_type
+gal_view_instance_get_type
+gal_view_instance_save_as_dialog_get_type
+gal_view_new_dialog_get_type
diff --git a/doc/reference/shell/eshell-sections.txt b/doc/reference/shell/eshell-sections.txt
deleted file mode 100644
index 27fbe428c2..0000000000
--- a/doc/reference/shell/eshell-sections.txt
+++ /dev/null
@@ -1,1096 +0,0 @@
-<SECTION>
-<FILE>e-shell</FILE>
-<TITLE>EShell</TITLE>
-EShell
-e_shell_get_default
-e_shell_load_modules
-e_shell_get_shell_backends
-e_shell_get_canonical_name
-e_shell_get_backend_by_name
-e_shell_get_backend_by_scheme
-e_shell_get_shell_settings
-e_shell_create_shell_window
-e_shell_handle_uris
-e_shell_submit_alert
-e_shell_get_active_window
-e_shell_get_meego_mode
-e_shell_get_express_mode
-e_shell_get_small_screen_mode
-e_shell_get_module_directory
-e_shell_get_network_available
-e_shell_set_network_available
-e_shell_lock_network_available
-e_shell_get_online
-e_shell_set_online
-e_shell_get_preferences_window
-e_shell_event
-EShellQuitReason
-e_shell_quit
-e_shell_cancel_quit
-e_shell_adapt_window_size
-e_shell_set_startup_view
-e_shell_get_startup_view
-E_SHELL_MIGRATE_ERROR
-EShellMigrateError
-e_shell_migrate_attempt
-e_shell_detect_meego
-<SUBSECTION Standard>
-E_SHELL
-E_IS_SHELL
-E_TYPE_SHELL
-E_SHELL_CLASS
-E_IS_SHELL_CLASS
-E_SHELL_GET_CLASS
-EShellClass
-e_shell_get_type
-e_shell_quit_reason_get_type
-<SUBSECTION Private>
-EShellPrivate
-e_shell_migrate_error_quark
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-backend</FILE>
-<TITLE>EShellBackend</TITLE>
-EShellBackend
-e_shell_backend_compare
-e_shell_backend_get_config_dir
-e_shell_backend_get_data_dir
-e_shell_backend_get_shell
-e_shell_backend_add_activity
-e_shell_backend_cancel_all
-e_shell_backend_is_busy
-e_shell_backend_start
-e_shell_backend_is_started
-e_shell_backend_migrate
-<SUBSECTION Standard>
-E_SHELL_BACKEND
-E_IS_SHELL_BACKEND
-E_TYPE_SHELL_BACKEND
-E_SHELL_BACKEND_CLASS
-E_IS_SHELL_BACKEND_CLASS
-E_SHELL_BACKEND_GET_CLASS
-EShellBackendClass
-e_shell_backend_get_type
-<SUBSECTION Private>
-EShellBackendPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-content</FILE>
-<TITLE>EShellContent</TITLE>
-EShellContent
-e_shell_content_new
-e_shell_content_set_searchbar
-e_shell_content_check_state
-e_shell_content_focus_search_results
-e_shell_content_get_alert_bar
-e_shell_content_get_shell_view
-e_shell_content_get_view_id
-e_shell_content_set_view_id
-e_shell_content_run_advanced_search_dialog
-e_shell_content_run_edit_searches_dialog
-e_shell_content_run_save_search_dialog
-<SUBSECTION Standard>
-E_SHELL_CONTENT
-E_IS_SHELL_CONTENT
-E_TYPE_SHELL_CONTENT
-E_SHELL_CONTENT_CLASS
-E_IS_SHELL_CONTENT_CLASS
-E_SHELL_CONTENT_GET_CLASS
-EShellContentClass
-e_shell_content_get_type
-<SUBSECTION Private>
-EShellContentPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-searchbar</FILE>
-<TITLE>EShellSearchbar</TITLE>
-EShellSearchbar
-e_shell_searchbar_new
-e_shell_searchbar_get_shell_view
-e_shell_searchbar_get_express_mode
-e_shell_searchbar_set_express_mode
-e_shell_searchbar_get_filter_combo_box
-e_shell_searchbar_get_filter_visible
-e_shell_searchbar_set_filter_visible
-e_shell_searchbar_get_labels_visible
-e_shell_searchbar_set_labels_visible
-e_shell_searchbar_get_search_hint
-e_shell_searchbar_set_search_hint
-e_shell_searchbar_get_search_option
-e_shell_searchbar_set_search_option
-e_shell_searchbar_get_search_text
-e_shell_searchbar_set_search_text
-e_shell_searchbar_get_search_visible
-e_shell_searchbar_set_search_visible
-e_shell_searchbar_get_scope_combo_box
-e_shell_searchbar_get_scope_visible
-e_shell_searchbar_set_scope_visible
-e_shell_searchbar_set_state_dirty
-e_shell_searchbar_get_state_group
-e_shell_searchbar_set_state_group
-e_shell_searchbar_load_state
-e_shell_searchbar_save_state
-<SUBSECTION Standard>
-E_SHELL_SEARCHBAR
-E_IS_SHELL_SEARCHBAR
-E_TYPE_SHELL_SEARCHBAR
-E_SHELL_SEARCHBAR_CLASS
-E_IS_SHELL_SEARCHBAR_CLASS
-E_SHELL_SEARCHBAR_GET_CLASS
-EShellSearchbarClass
-e_shell_searchbar_get_type
-<SUBSECTION Private>
-EShellSearchbarPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-settings</FILE>
-<TITLE>EShellSettings</TITLE>
-EShellSettings
-e_shell_settings_install_property
-e_shell_settings_install_property_for_key
-e_shell_settings_enable_debug
-e_shell_settings_get_boolean
-e_shell_settings_set_boolean
-e_shell_settings_get_int
-e_shell_settings_set_int
-e_shell_settings_get_string
-e_shell_settings_set_string
-e_shell_settings_get_object
-e_shell_settings_set_object
-e_shell_settings_get_pointer
-e_shell_settings_set_pointer
-<SUBSECTION Standard>
-E_SHELL_SETTINGS
-E_IS_SHELL_SETTINGS
-E_TYPE_SHELL_SETTINGS
-E_SHELL_SETTINGS_CLASS
-E_IS_SHELL_SETTINGS_CLASS
-E_SHELL_SETTINGS_GET_CLASS
-EShellSettingsClass
-e_shell_settings_get_type
-<SUBSECTION Private>
-EShellSettingsPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-sidebar</FILE>
-<TITLE>EShellSidebar</TITLE>
-EShellSidebar
-e_shell_sidebar_new
-e_shell_sidebar_check_state
-e_shell_sidebar_get_shell_view
-e_shell_sidebar_get_icon_name
-e_shell_sidebar_set_icon_name
-e_shell_sidebar_get_primary_text
-e_shell_sidebar_set_primary_text
-e_shell_sidebar_get_secondary_text
-e_shell_sidebar_set_secondary_text
-<SUBSECTION Standard>
-E_SHELL_SIDEBAR
-E_IS_SHELL_SIDEBAR
-E_TYPE_SHELL_SIDEBAR
-E_SHELL_SIDEBAR_CLASS
-E_IS_SHELL_SIDEBAR_CLASS
-E_SHELL_SIDEBAR_GET_CLASS
-EShellSidebarClass
-e_shell_sidebar_get_type
-<SUBSECTION Private>
-EShellSidebarPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-switcher</FILE>
-<TITLE>EShellSwitcher</TITLE>
-EShellSwitcher
-e_shell_switcher_new
-e_shell_switcher_add_action
-e_shell_switcher_get_style
-e_shell_switcher_set_style
-e_shell_switcher_unset_style
-e_shell_switcher_get_visible
-e_shell_switcher_set_visible
-<SUBSECTION Standard>
-E_SHELL_SWITCHER
-E_IS_SHELL_SWITCHER
-E_TYPE_SHELL_SWITCHER
-E_SHELL_SWITCHER_CLASS
-E_IS_SHELL_SWITCHER_CLASS
-E_SHELL_SWITCHER_GET_CLASS
-EShellSwitcherClass
-e_shell_switcher_get_type
-<SUBSECTION Private>
-EShellSwitcherPrivate
-E_SHELL_SWITCHER_DEFAULT_TOOLBAR_STYLE
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-taskbar</FILE>
-<TITLE>EShellTaskbar</TITLE>
-EShellTaskbar
-e_shell_taskbar_new
-e_shell_taskbar_get_shell_view
-e_shell_taskbar_get_message
-e_shell_taskbar_set_message
-e_shell_taskbar_unset_message
-e_shell_taskbar_get_activity_count
-<SUBSECTION Standard>
-E_SHELL_TASKBAR
-E_IS_SHELL_TASKBAR
-E_TYPE_SHELL_TASKBAR
-E_SHELL_TASKBAR_CLASS
-E_IS_SHELL_TASKBAR_CLASS
-E_SHELL_TASKBAR_GET_CLASS
-EShellTaskbarClass
-e_shell_taskbar_get_type
-<SUBSECTION Private>
-EShellTaskbarPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-utils</FILE>
-<TITLE>Shell Utilities</TITLE>
-e_shell_configure_ui_manager
-e_shell_run_open_dialog
-e_shell_run_save_dialog
-e_shell_utils_import_uris
-e_shell_hide_widgets_for_express_mode
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-view</FILE>
-<TITLE>EShellView</TITLE>
-EShellView
-EShellViewClass
-e_shell_view_get_name
-e_shell_view_get_action
-e_shell_view_get_title
-e_shell_view_set_title
-e_shell_view_get_view_id
-e_shell_view_set_view_id
-e_shell_view_is_active
-e_shell_view_get_page_num
-e_shell_view_set_page_num
-e_shell_view_get_searchbar
-e_shell_view_get_search_name
-e_shell_view_get_search_rule
-e_shell_view_set_search_rule
-e_shell_view_get_search_query
-e_shell_view_get_size_group
-e_shell_view_get_shell_backend
-e_shell_view_get_shell_content
-e_shell_view_get_shell_sidebar
-e_shell_view_get_shell_taskbar
-e_shell_view_get_shell_window
-e_shell_view_get_state_key_file
-e_shell_view_set_state_dirty
-e_shell_view_clear_search
-e_shell_view_custom_search
-e_shell_view_execute_search
-e_shell_view_block_execute_search
-e_shell_view_unblock_execute_search
-e_shell_view_update_actions
-e_shell_view_block_update_actions
-e_shell_view_unblock_update_actions
-e_shell_view_show_popup_menu
-e_shell_view_new_view_instance
-<SUBSECTION Standard>
-E_SHELL_VIEW
-E_IS_SHELL_VIEW
-E_TYPE_SHELL_VIEW
-E_SHELL_VIEW_CLASS
-E_IS_SHELL_VIEW_CLASS
-E_SHELL_VIEW_GET_CLASS
-e_shell_view_get_type
-<SUBSECTION Private>
-EShellViewPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-shell-window</FILE>
-<TITLE>EShellWindow</TITLE>
-EShellWindow
-e_shell_window_new
-e_shell_window_get_shell
-e_shell_window_get_shell_view
-e_shell_window_peek_shell_view
-e_shell_window_get_shell_view_action
-e_shell_window_get_alert_bar
-e_shell_window_get_focus_tracker
-e_shell_window_get_ui_manager
-e_shell_window_get_action
-e_shell_window_get_action_group
-e_shell_window_get_managed_widget
-e_shell_window_get_active_view
-e_shell_window_set_active_view
-e_shell_window_get_safe_mode
-e_shell_window_set_safe_mode
-e_shell_window_add_action_group
-e_shell_window_get_sidebar_visible
-e_shell_window_set_sidebar_visible
-e_shell_window_get_switcher_visible
-e_shell_window_set_switcher_visible
-e_shell_window_get_taskbar_visible
-e_shell_window_set_taskbar_visible
-e_shell_window_get_toolbar_visible
-e_shell_window_set_toolbar_visible
-e_shell_window_register_new_item_actions
-e_shell_window_register_new_source_actions
-e_shell_window_get_menu_bar_box
-<SUBSECTION Standard>
-E_SHELL_WINDOW
-E_IS_SHELL_WINDOW
-E_TYPE_SHELL_WINDOW
-E_SHELL_WINDOW_CLASS
-E_IS_SHELL_WINDOW_CLASS
-E_SHELL_WINDOW_GET_CLASS
-EShellWindowClass
-e_shell_window_get_type
-<SUBSECTION Private>
-EShellWindowPrivate
-E_SHELL_WINDOW_ACTION
-E_SHELL_WINDOW_ACTION_GROUP
-</SECTION>
-
-<SECTION>
-<FILE>e-action-combo-box</FILE>
-EActionComboBox
-e_action_combo_box_new
-e_action_combo_box_new_with_action
-e_action_combo_box_get_action
-e_action_combo_box_set_action
-e_action_combo_box_get_current_value
-e_action_combo_box_set_current_value
-e_action_combo_box_add_separator_before
-e_action_combo_box_add_separator_after
-<SUBSECTION Standard>
-E_ACTION_COMBO_BOX
-E_IS_ACTION_COMBO_BOX
-E_TYPE_ACTION_COMBO_BOX
-E_ACTION_COMBO_BOX_CLASS
-E_IS_ACTION_COMBO_BOX_CLASS
-E_ACTION_COMBO_BOX_GET_CLASS
-EActionComboBoxClass
-e_action_combo_box_get_type
-<SUBSECTION Private>
-EActionComboBoxPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-activity</FILE>
-EActivity
-e_activity_new
-e_activity_describe
-e_activity_get_alert_sink
-e_activity_set_alert_sink
-e_activity_get_cancellable
-e_activity_set_cancellable
-e_activity_get_icon_name
-e_activity_set_icon_name
-e_activity_get_percent
-e_activity_set_percent
-e_activity_get_state
-e_activity_set_state
-e_activity_get_text
-e_activity_set_text
-<SUBSECTION Standard>
-E_ACTIVITY
-E_IS_ACTIVITY
-E_TYPE_ACTIVITY
-E_ACTIVITY_CLASS
-E_IS_ACTIVITY_CLASS
-E_ACTIVITY_GET_CLASS
-EActivityClass
-e_activity_get_type
-<SUBSECTION Private>
-EActivityPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-activity-proxy</FILE>
-EActivityProxy
-e_activity_proxy_new
-e_activity_proxy_get_activity
-<SUBSECTION Standard>
-E_ACTIVITY_PROXY
-E_IS_ACTIVITY_PROXY
-E_TYPE_ACTIVITY_PROXY
-E_ACTIVITY_PROXY_CLASS
-E_IS_ACTIVITY_PROXY_CLASS
-E_ACTIVITY_PROXY_GET_CLASS
-EActivityProxyClass
-e_activity_proxy_get_type
-<SUBSECTION Private>
-EActivityProxyPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-alert</FILE>
-<TITLE>User Alert Handling</TITLE>
-E_ALERT_ASK_FILE_EXISTS_OVERWRITE
-E_ALERT_NO_SAVE_FILE
-E_ALERT_NO_LOAD_FILE
-EAlert
-e_alert_new
-e_alert_run_dialog
-e_alert_run_dialog_for_args
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment</FILE>
-EAttachment
-e_attachment_new
-e_attachment_new_for_path
-e_attachment_new_for_uri
-e_attachment_new_for_message
-e_attachment_add_to_multipart
-e_attachment_cancel
-e_attachment_get_can_show
-e_attachment_set_can_show
-e_attachment_get_disposition
-e_attachment_set_disposition
-e_attachment_get_file
-e_attachment_set_file
-e_attachment_get_file_info
-e_attachment_set_file_info
-e_attachment_get_icon
-e_attachment_get_loading
-e_attachment_get_mime_part
-e_attachment_set_mime_part
-e_attachment_get_percent
-e_attachment_get_reference
-e_attachment_set_reference
-e_attachment_get_saving
-e_attachment_get_shown
-e_attachment_set_shown
-e_attachment_get_encrypted
-e_attachment_set_encrypted
-e_attachment_get_signed
-e_attachment_set_signed
-e_attachment_get_description
-e_attachment_get_thumbnail_path
-e_attachment_is_rfc822
-e_attachment_list_apps
-e_attachment_load_async
-e_attachment_load_finish
-e_attachment_open_async
-e_attachment_open_finish
-e_attachment_save_async
-e_attachment_save_finish
-e_attachment_load_handle_error
-e_attachment_open_handle_error
-e_attachment_save_handle_error
-<SUBSECTION Standard>
-E_ATTACHMENT
-E_IS_ATTACHMENT
-E_TYPE_ATTACHMENT
-E_ATTACHMENT_CLASS
-E_IS_ATTACHMENT_CLASS
-E_ATTACHMENT_GET_CLASS
-EAttachmentClass
-e_attachment_get_type
-<SUBSECTION Private>
-EAttachmentPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment-button</FILE>
-EAttachmentButton
-e_attachment_button_new
-e_attachment_button_get_view
-e_attachment_button_get_attachment
-e_attachment_button_set_attachment
-e_attachment_button_get_expandable
-e_attachment_button_set_expandable
-e_attachment_button_get_expanded
-e_attachment_button_set_expanded
-<SUBSECTION Standard>
-E_ATTACHMENT_BUTTON
-E_IS_ATTACHMENT_BUTTON
-E_TYPE_ATTACHMENT_BUTTON
-E_ATTACHMENT_BUTTON_CLASS
-E_IS_ATTACHMENT_BUTTON_CLASS
-E_ATTACHMENT_BUTTON_GET_CLASS
-EAttachmentButtonClass
-e_attachment_button_get_type
-<SUBSECTION Private>
-EAttachmentButtonPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment-dialog</FILE>
-EAttachmentDialog
-e_attachment_dialog_new
-e_attachment_dialog_get_attachment
-e_attachment_dialog_set_attachment
-<SUBSECTION Standard>
-E_ATTACHMENT_DIALOG
-E_IS_ATTACHMENT_DIALOG
-E_TYPE_ATTACHMENT_DIALOG
-E_ATTACHMENT_DIALOG_CLASS
-E_IS_ATTACHMENT_DIALOG_CLASS
-E_ATTACHMENT_DIALOG_GET_CLASS
-EAttachmentDialogClass
-e_attachment_dialog_get_type
-<SUBSECTION Private>
-EAttachmentDialogPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment-handler</FILE>
-EAttachmentHandler
-e_attachment_handler_get_view
-e_attachment_handler_get_drag_actions
-e_attachment_handler_get_target_table
-<SUBSECTION Standard>
-E_ATTACHMENT_HANDLER
-E_IS_ATTACHMENT_HANDLER
-E_TYPE_ATTACHMENT_HANDLER
-E_ATTACHMENT_HANDLER_CLASS
-E_IS_ATTACHMENT_HANDLER_CLASS
-E_ATTACHMENT_HANDLER_GET_CLASS
-EAttachmentHandlerClass
-e_attachment_handler_get_type
-e_attachment_handler_image_get_type
-e_attachment_handler_sendto_get_type
-<SUBSECTION Private>
-EAttachmentHandlerPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment-icon-view</FILE>
-EAttachmentIconView
-e_attachment_icon_view_new
-e_attachment_icon_view_set_default_icon_size
-<SUBSECTION Standard>
-E_ATTACHMENT_ICON_VIEW
-E_IS_ATTACHMENT_ICON_VIEW
-E_TYPE_ATTACHMENT_ICON_VIEW
-E_ATTACHMENT_ICON_VIEW_CLASS
-E_IS_ATTACHMENT_ICON_VIEW_CLASS
-E_ATTACHMENT_ICON_VIEW_GET_CLASS
-EAttachmentIconViewClass
-e_attachment_icon_view_get_type
-<SUBSECTION Private>
-EAttachmentIconViewPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment-paned</FILE>
-EAttachmentPaned
-e_attachment_paned_new
-e_attachment_paned_get_content_area
-e_attachment_paned_get_active_view
-e_attachment_paned_set_active_view
-e_attachment_paned_get_expanded
-e_attachment_paned_set_expanded
-e_attachment_paned_drag_data_received
-e_attachment_paned_get_controls_container
-e_attachment_paned_get_view_combo
-e_attachment_paned_set_default_height
-<SUBSECTION Standard>
-E_ATTACHMENT_PANED
-E_IS_ATTACHMENT_PANED
-E_TYPE_ATTACHMENT_PANED
-E_ATTACHMENT_PANED_CLASS
-E_IS_ATTACHMENT_PANED_CLASS
-E_ATTACHMENT_PANED_GET_CLASS
-EAttachmentPanedClass
-e_attachment_paned_get_type
-<SUBSECTION Private>
-EAttachmentPanedPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment-store</FILE>
-EAttachmentStore
-e_attachment_store_new
-e_attachment_store_add_attachment
-e_attachment_store_remove_attachment
-e_attachment_store_add_to_multipart
-e_attachment_store_get_attachments
-e_attachment_store_get_num_attachments
-e_attachment_store_get_num_loading
-e_attachment_store_get_total_size
-e_attachment_store_run_load_dialog
-e_attachment_store_run_save_dialog
-e_attachment_store_get_uris_async
-e_attachment_store_get_uris_finish
-e_attachment_store_load_async
-e_attachment_store_load_finish
-e_attachment_store_save_async
-e_attachment_store_save_finish
-<SUBSECTION Standard>
-E_ATTACHMENT_STORE
-E_IS_ATTACHMENT_STORE
-E_TYPE_ATTACHMENT_STORE
-E_ATTACHMENT_STORE_CLASS
-E_IS_ATTACHMENT_STORE_CLASS
-E_ATTACHMENT_STORE_GET_CLASS
-EAttachmentStoreClass
-e_attachment_store_get_type
-<SUBSECTION Private>
-EAttachmentStorePrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment-tree-view</FILE>
-EAttachmentTreeView
-e_attachment_tree_view_new
-<SUBSECTION Standard>
-E_ATTACHMENT_TREE_VIEW
-E_IS_ATTACHMENT_TREE_VIEW
-E_TYPE_ATTACHMENT_TREE_VIEW
-E_ATTACHMENT_TREE_VIEW_CLASS
-E_IS_ATTACHMENT_TREE_VIEW_CLASS
-E_ATTACHMENT_TREE_VIEW_GET_CLASS
-EAttachmentTreeViewClass
-e_attachment_tree_view_get_type
-<SUBSECTION Private>
-EAttachmentTreeViewPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-attachment-view</FILE>
-EAttachmentView
-e_attachment_view_init
-e_attachment_view_dispose
-e_attachment_view_finalize
-e_attachment_view_get_private
-e_attachment_view_get_store
-e_attachment_view_get_editable
-e_attachment_view_set_editable
-e_attachment_view_get_target_list
-e_attachment_view_get_drag_actions
-e_attachment_view_get_selected_attachments
-e_attachment_view_open_path
-e_attachment_view_remove_selected
-e_attachment_view_button_press_event
-e_attachment_view_button_release_event
-e_attachment_view_motion_notify_event
-e_attachment_view_key_press_event
-e_attachment_view_get_path_at_pos
-e_attachment_view_get_selected_paths
-e_attachment_view_path_is_selected
-e_attachment_view_select_path
-e_attachment_view_unselect_path
-e_attachment_view_select_all
-e_attachment_view_unselect_all
-e_attachment_view_sync_selection
-e_attachment_view_drag_source_set
-e_attachment_view_drag_source_unset
-e_attachment_view_drag_begin
-e_attachment_view_drag_end
-e_attachment_view_drag_data_get
-e_attachment_view_drag_dest_set
-e_attachment_view_drag_dest_unset
-e_attachment_view_drag_motion
-e_attachment_view_drag_drop
-e_attachment_view_drag_data_received
-e_attachment_view_get_action
-e_attachment_view_add_action_group
-e_attachment_view_get_action_group
-e_attachment_view_get_popup_menu
-e_attachment_view_get_ui_manager
-e_attachment_view_recent_action_new
-e_attachment_view_show_popup_menu
-e_attachment_view_update_actions
-<SUBSECTION Standard>
-E_ATTACHMENT_VIEW
-E_IS_ATTACHMENT_VIEW
-E_TYPE_ATTACHMENT_VIEW
-E_ATTACHMENT_VIEW_IFACE
-E_IS_ATTACHMENT_VIEW_IFACE
-E_ATTACHMENT_VIEW_GET_IFACE
-EAttachmentViewIface
-e_attachment_view_get_type
-<SUBSECTION Private>
-EAttachmentViewPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-bit-array</FILE>
-<TITLE>Bit Arrays (Legacy)</TITLE>
-EBitArray
-e_bit_array_new
-e_bit_array_value_at
-e_bit_array_foreach
-e_bit_array_selected_count
-e_bit_array_select_all
-e_bit_array_invert_selection
-e_bit_array_bit_count
-e_bit_array_change_one_row
-e_bit_array_change_range
-e_bit_array_select_single_row
-e_bit_array_toggle_single_row
-e_bit_array_insert
-e_bit_array_delete
-e_bit_array_delete_single_mode
-e_bit_array_move_row
-<SUBSECTION Standard>
-E_BIT_ARRAY
-E_IS_BIT_ARRAY
-E_BIT_ARRAY_TYPE
-E_BIT_ARRAY_CLASS
-E_IS_BIT_ARRAY_CLASS
-EBitArrayClass
-e_bit_array_get_type
-</SECTION>
-
-<SECTION>
-<FILE>e-categories-config</FILE>
-<TITLE>Categories</TITLE>
-e_categories_config_get_icon_for
-e_categories_config_open_dialog_for_entry
-</SECTION>
-
-<SECTION>
-<FILE>e-datetime-format</FILE>
-<TITLE>Date and Time Formatting</TITLE>
-DTFormatKind
-e_datetime_format_add_setup_widget
-e_datetime_format_format
-e_datetime_format_format_tm
-</SECTION>
-
-<SECTION>
-<FILE>e-dialog-utils</FILE>
-<TITLE>Dialog Utilities (Legacy)</TITLE>
-e_notice
-e_dialog_combo_box_set
-e_dialog_combo_box_get
-</SECTION>
-
-<SECTION>
-<FILE>e-html-utils</FILE>
-<TITLE>Text to HTML Conversion</TITLE>
-E_TEXT_TO_HTML_PRE
-E_TEXT_TO_HTML_CONVERT_NL
-E_TEXT_TO_HTML_CONVERT_SPACES
-E_TEXT_TO_HTML_CONVERT_URLS
-E_TEXT_TO_HTML_MARK_CITATION
-E_TEXT_TO_HTML_CONVERT_ADDRESSES
-E_TEXT_TO_HTML_ESCAPE_8BIT
-E_TEXT_TO_HTML_CITE
-e_text_to_html_full
-e_text_to_html
-</SECTION>
-
-<SECTION>
-<FILE>e-icon-factory</FILE>
-<TITLE>Icon Utilities (Legacy)</TITLE>
-e_icon_factory_get_icon_filename
-e_icon_factory_get_icon
-e_icon_factory_pixbuf_scale
-e_icon_factory_create_thumbnail
-</SECTION>
-
-<SECTION>
-<FILE>e-mail-account-manager</FILE>
-EMailAccountManager
-e_mail_account_manager_new
-e_mail_account_manager_add_account
-e_mail_account_manager_edit_account
-e_mail_account_manager_delete_account
-e_mail_account_manager_get_registry
-<SUBSECTION Standard>
-E_MAIL_ACCOUNT_MANAGER
-E_IS_MAIL_ACCOUNT_MANAGER
-E_TYPE_MAIL_ACCOUNT_MANAGER
-E_MAIL_ACCOUNT_MANAGER_CLASS
-E_IS_MAIL_ACCOUNT_MANAGER_CLASS
-E_MAIL_ACCOUNT_MANAGER_GET_CLASS
-e_mail_account_manager_get_type
-<SUBSECTION Private>
-EMailAccountManagerPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-mail-account-tree-view</FILE>
-EMailAccountTreeView
-e_mail_account_tree_view_new
-e_mail_account_tree_view_refresh
-e_mail_account_tree_view_enable_selected
-e_mail_account_tree_view_disable_selected
-e_mail_account_tree_view_get_registry
-e_mail_account_tree_view_get_selected_source
-e_mail_account_tree_view_set_selected_source
-<SUBSECTION Standard>
-E_MAIL_ACCOUNT_TREE_VIEW
-E_IS_MAIL_ACCOUNT_TREE_VIEW
-E_TYPE_MAIL_ACCOUNT_TREE_VIEW
-E_MAIL_ACCOUNT_TREE_VIEW_CLASS
-E_IS_MAIL_ACCOUNT_TREE_VIEW_CLASS
-E_MAIL_ACCOUNT_TREE_VIEW_GET_CLASS
-EMailAccountTreeViewClass
-e_mail_account_tree_view_get_type
-<SUBSECTION Private>
-EMailAccountTreeViewPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-mail-identity-combo-box</FILE>
-EMailIdentityComboBox
-e_mail_identity_combo_box_new
-e_mail_identity_combo_box_refresh
-e_mail_identity_combo_box_get_registry
-<SUBSECTION Standard>
-E_MAIL_IDENTITY_COMBO_BOX
-E_IS_MAIL_IDENTITY_COMBO_BOX
-E_TYPE_MAIL_IDENTITY_COMBO_BOX
-E_MAIL_IDENTITY_COMBO_BOX_CLASS
-E_IS_MAIL_IDENTITY_COMBO_BOX_CLASS
-E_MAIL_IDENTITY_COMBO_BOX_GET_CLASS
-EMailIdentityComboBoxClass
-e_mail_identity_combo_box_get_type
-<SUBSECTION Private>
-EMailIdentityComboBoxPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-poolv</FILE>
-<TITLE>EPoolv</TITLE>
-EPoolv
-e_poolv_new
-e_poolv_set
-e_poolv_get
-e_poolv_destroy
-</SECTION>
-
-<SECTION>
-<FILE>e-popup-action</FILE>
-EPopupAction
-e_popup_action_new
-EPopupActionEntry
-e_action_group_add_popup_actions
-<SUBSECTION Standard>
-E_POPUP_ACTION
-E_IS_POPUP_ACTION
-E_TYPE_POPUP_ACTION
-E_POPUP_ACTION_CLASS
-E_IS_POPUP_ACTION_CLASS
-E_POPUP_ACTION_GET_CLASS
-EPopupActionClass
-e_popup_action_get_type
-<SUBSECTION Private>
-EPopupActionPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-print</FILE>
-<TITLE>Printing</TITLE>
-e_print_operation_new
-e_print_run_page_setup_dialog
-</SECTION>
-
-<SECTION>
-<FILE>e-selection</FILE>
-<TITLE>Selections</TITLE>
-e_target_list_add_calendar_targets
-e_target_list_add_directory_targets
-e_selection_data_set_calendar
-e_selection_data_set_directory
-e_selection_data_get_calendar
-e_selection_data_get_directory
-e_selection_data_targets_include_calendar
-e_selection_data_targets_include_directory
-e_targets_include_calendar
-e_targets_include_directory
-e_clipboard_set_calendar
-e_clipboard_set_directory
-e_clipboard_request_calendar
-e_clipboard_request_directory
-e_clipboard_wait_for_calendar
-e_clipboard_wait_for_directory
-e_clipboard_wait_is_calendar_available
-e_clipboard_wait_is_directory_available
-</SECTION>
-
-<SECTION>
-EWebView
-e_web_view_new
-e_web_view_clear
-e_web_view_load_string
-e_web_view_get_animate
-e_web_view_set_animate
-e_web_view_get_caret_mode
-e_web_view_set_caret_mode
-e_web_view_get_copy_target_list
-e_web_view_get_disable_printing
-e_web_view_set_disable_printing
-e_web_view_get_disable_save_to_disk
-e_web_view_set_disable_save_to_disk
-e_web_view_get_editable
-e_web_view_set_editable
-e_web_view_get_inline_spelling
-e_web_view_set_inline_spelling
-e_web_view_get_magic_links
-e_web_view_set_magic_links
-e_web_view_get_magic_smileys
-e_web_view_set_magic_smileys
-e_web_view_get_selected_uri
-e_web_view_set_selected_uri
-e_web_view_get_open_proxy
-e_web_view_set_open_proxy
-e_web_view_get_paste_target_list
-e_web_view_get_print_proxy
-e_web_view_set_print_proxy
-e_web_view_get_save_as_proxy
-e_web_view_set_save_as_proxy
-e_web_view_get_action
-e_web_view_get_action_group
-e_web_view_extract_uri
-e_web_view_copy_clipboard
-e_web_view_cut_clipboard
-e_web_view_is_selection_active
-e_web_view_paste_clipboard
-e_web_view_scroll_forward
-e_web_view_scroll_backward
-e_web_view_select_all
-e_web_view_unselect_all
-e_web_view_zoom_100
-e_web_view_zoom_in
-e_web_view_zoom_out
-e_web_view_get_ui_manager
-e_web_view_get_popup_menu
-e_web_view_show_popup_menu
-e_web_view_status_message
-e_web_view_stop_loading
-e_web_view_update_actions
-<SUBSECTION Standard>
-E_WEB_VIEW
-E_IS_WEB_VIEW
-E_TYPE_WEB_VIEW
-E_WEB_VIEW_CLASS
-E_IS_WEB_VIEW_CLASS
-E_WEB_VIEW_GET_CLASS
-EWebViewClass
-e_web_view_get_type
-<SUBSECTION Private>
-EWebViewPrivate
-</SECTION>
-
-<SECTION>
-<FILE>e-util</FILE>
-<TITLE>Miscellaneous Utilities</TITLE>
-e_get_accels_filename
-e_show_uri
-e_display_help
-e_lookup_action
-e_lookup_action_group
-e_action_compare_by_label
-e_action_group_remove_all_actions
-e_radio_action_get_current_action
-e_categories_add_change_hook
-e_str_without_underscores
-e_str_compare
-e_str_case_compare
-e_collate_compare
-e_int_compare
-e_color_to_value
-e_format_number
-ESortCompareFunc
-e_bsearch
-e_strftime_fix_am_pm
-e_utf8_strftime_fix_am_pm
-e_get_month_name
-e_get_weekday_name
-e_flexible_strtod
-e_ascii_dtostr
-e_file_lock_create
-e_file_lock_destroy
-e_file_lock_exists
-e_util_guess_mime_type
-e_util_get_category_filter_options
-e_binding_transform_color_to_string
-e_binding_transform_string_to_color
-e_binding_transform_source_to_uid
-e_binding_transform_uid_to_source
-e_charset_add_radio_actions
-e_file_replace_contents_async
-e_file_replace_contents_finish
-e_mktemp
-e_mkstemp
-e_mkdtemp
-<SUBSECTION Standard>
-E_TYPE_CAMEL_OBJECT
-e_camel_object_get_type
-</SECTION>
-
-<SECTION>
-<FILE>e-xml-utils</FILE>
-<TITLE>Reading and Writing XML</TITLE>
-e_xml_get_child_by_name_by_lang
-e_xml_get_child_by_name_by_lang_list
-e_xml_get_child_by_name_no_lang
-e_xml_get_integer_prop_by_name
-e_xml_get_integer_prop_by_name_with_default
-e_xml_set_integer_prop_by_name
-e_xml_get_uint_prop_by_name
-e_xml_get_uint_prop_by_name_with_default
-e_xml_set_uint_prop_by_name
-e_xml_get_bool_prop_by_name
-e_xml_get_bool_prop_by_name_with_default
-e_xml_set_bool_prop_by_name
-e_xml_get_double_prop_by_name
-e_xml_get_double_prop_by_name_with_default
-e_xml_set_double_prop_by_name
-e_xml_get_string_prop_by_name
-e_xml_get_string_prop_by_name_with_default
-e_xml_set_string_prop_by_name
-e_xml_get_translated_string_prop_by_name
-</SECTION>
-
-<SECTION>
-<FILE>shell-actions</FILE>
-<TITLE>Shell Actions</TITLE>
-E_SHELL_WINDOW_ACTION_ABOUT
-E_SHELL_WINDOW_ACTION_CLOSE
-E_SHELL_WINDOW_ACTION_CONTENTS
-E_SHELL_WINDOW_ACTION_FORGET_PASSWORDS
-E_SHELL_WINDOW_ACTION_GAL_CUSTOM_VIEW
-E_SHELL_WINDOW_ACTION_GAL_DEFINE_VIEWS
-E_SHELL_WINDOW_ACTION_GAL_SAVE_CUSTOM_VIEW
-E_SHELL_WINDOW_ACTION_IMPORT
-E_SHELL_WINDOW_ACTION_NEW_WINDOW
-E_SHELL_WINDOW_ACTION_PAGE_SETUP
-E_SHELL_WINDOW_ACTION_PREFERENCES
-E_SHELL_WINDOW_ACTION_QUICK_REFERENCE
-E_SHELL_WINDOW_ACTION_QUIT
-E_SHELL_WINDOW_ACTION_SEARCH_ADVANCED
-E_SHELL_WINDOW_ACTION_SEARCH_CLEAR
-E_SHELL_WINDOW_ACTION_SEARCH_EDIT
-E_SHELL_WINDOW_ACTION_SEARCH_OPTIONS
-E_SHELL_WINDOW_ACTION_SEARCH_QUICK
-E_SHELL_WINDOW_ACTION_SEARCH_SAVE
-E_SHELL_WINDOW_ACTION_SHOW_SIDEBAR
-E_SHELL_WINDOW_ACTION_SHOW_SWITCHER
-E_SHELL_WINDOW_ACTION_SHOW_TASKBAR
-E_SHELL_WINDOW_ACTION_SHOW_TOOLBAR
-E_SHELL_WINDOW_ACTION_SUBMIT_BUG
-E_SHELL_WINDOW_ACTION_SWITCHER_INITIAL
-E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_BOTH
-E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_ICONS
-E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_TEXT
-E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_USER
-E_SHELL_WINDOW_ACTION_WORK_OFFLINE
-E_SHELL_WINDOW_ACTION_WORK_ONLINE
-</SECTION>
-
-<SECTION>
-<FILE>action-groups</FILE>
-<TITLE>Action Groups</TITLE>
-E_SHELL_WINDOW_ACTION_GROUP_SHELL
-E_SHELL_WINDOW_ACTION_GROUP_SWITCHER
-E_SHELL_WINDOW_ACTION_GROUP_NEW_ITEM
-E_SHELL_WINDOW_ACTION_GROUP_NEW_SOURCE
-E_SHELL_WINDOW_ACTION_GROUP_CUSTOM_RULES
-E_SHELL_WINDOW_ACTION_GROUP_GAL_VIEW
-E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_APPLICATION_HANDLERS
-E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_PRINTING
-E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_PRINT_SETUP
-E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_SAVE_TO_DISK
-</SECTION>