From d09d8de870b6697c8a8b262e7e077b871a69b315 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 10 Dec 2012 08:09:59 -0500 Subject: 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. --- doc/reference/Makefile.am | 2 +- doc/reference/libeshell/Makefile.am | 80 + doc/reference/libeshell/libeshell-docs.sgml | 44 + doc/reference/libeshell/libeshell-overrides.txt | 0 doc/reference/libeshell/libeshell-sections.txt | 423 +++++ doc/reference/libeshell/libeshell.types | 9 + .../libeshell/tmpl/e-mail-account-manager.sgml | 72 + .../libeshell/tmpl/e-mail-account-tree-view.sgml | 90 + .../libeshell/tmpl/e-mail-identity-combo-box.sgml | 56 + doc/reference/libeutil/Makefile.am | 67 + doc/reference/libeutil/libeutil-docs.sgml | 263 +++ doc/reference/libeutil/libeutil-overrides.txt | 0 doc/reference/libeutil/libeutil-sections.txt | 1900 ++++++++++++++++++++ doc/reference/libeutil/libeutil.types | 170 ++ doc/reference/shell/Makefile.am | 81 - doc/reference/shell/eshell-docs.sgml | 59 - doc/reference/shell/eshell-overrides.txt | 0 doc/reference/shell/eshell-sections.txt | 1096 ----------- doc/reference/shell/eshell.types | 10 - .../shell/tmpl/e-mail-account-manager.sgml | 72 - .../shell/tmpl/e-mail-account-tree-view.sgml | 90 - .../shell/tmpl/e-mail-identity-combo-box.sgml | 56 - 22 files changed, 3175 insertions(+), 1465 deletions(-) create mode 100644 doc/reference/libeshell/Makefile.am create mode 100644 doc/reference/libeshell/libeshell-docs.sgml create mode 100644 doc/reference/libeshell/libeshell-overrides.txt create mode 100644 doc/reference/libeshell/libeshell-sections.txt create mode 100644 doc/reference/libeshell/libeshell.types create mode 100644 doc/reference/libeshell/tmpl/e-mail-account-manager.sgml create mode 100644 doc/reference/libeshell/tmpl/e-mail-account-tree-view.sgml create mode 100644 doc/reference/libeshell/tmpl/e-mail-identity-combo-box.sgml create mode 100644 doc/reference/libeutil/Makefile.am create mode 100644 doc/reference/libeutil/libeutil-docs.sgml create mode 100644 doc/reference/libeutil/libeutil-overrides.txt create mode 100644 doc/reference/libeutil/libeutil-sections.txt create mode 100644 doc/reference/libeutil/libeutil.types delete mode 100644 doc/reference/shell/Makefile.am delete mode 100644 doc/reference/shell/eshell-docs.sgml delete mode 100644 doc/reference/shell/eshell-overrides.txt delete mode 100644 doc/reference/shell/eshell-sections.txt delete mode 100644 doc/reference/shell/eshell.types delete mode 100644 doc/reference/shell/tmpl/e-mail-account-manager.sgml delete mode 100644 doc/reference/shell/tmpl/e-mail-account-tree-view.sgml delete mode 100644 doc/reference/shell/tmpl/e-mail-identity-combo-box.sgml (limited to 'doc') 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/libeshell/Makefile.am b/doc/reference/libeshell/Makefile.am new file mode 100644 index 0000000000..7262075b74 --- /dev/null +++ b/doc/reference/libeshell/Makefile.am @@ -0,0 +1,80 @@ +# The name of the module, e.g. 'glib'. +DOC_MODULE=libeshell + +# The top-level SGML file. You can change this if you want to. +DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml + +# The directory containing the source code. Relative to $(srcdir). +# 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=../../../shell + +# Extra options to pass to gtkdoc-scangobj. Not normally needed. +SCANGOBJ_OPTIONS= + +# Extra options to supply to gtkdoc-scan. +# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" +SCAN_OPTIONS= + +# Extra options to supply to gtkdoc-mkdb. +MKDB_OPTIONS=--sgml-mode --output-format=xml --name-space=e + +# Extra options to supply to gtkdoc-mktmpl +# e.g. MKTMPL_OPTIONS=--only-section-tmpl +MKTMPL_OPTIONS= + +# Extra options to supply to gtkdoc-fixref. Not normally needed. +# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html +FIXXREF_OPTIONS= + +# Used for dependencies. The docs will be rebuilt if any of these change. +HFILE_GLOB=$(top_srcdir)/shell/*.h +CFILE_GLOB=$(top_srcdir)/shell/*.c + +# Header files to ignore when scanning. +IGNORE_HFILES= \ + evo-version.h \ + e-shell-window-private.h \ + es-event.h + +# Images to copy into HTML directory. +HTML_IMAGES= + +# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). +content_files= + +# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded +# These files must be listed here *and* in content_files +expand_content_files= + +# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library. +# Only needed if you are using gtkdoc-scangobj to dynamically query widget +# signals and properties. +GTKDOC_CFLAGS= \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + $(EVOLUTION_DATA_SERVER_CFLAGS) \ + $(GTKHTML_CFLAGS) +GTKDOC_LIBS= \ + $(top_builddir)/libemail-engine/libemail-engine.la \ + $(top_builddir)/shell/libeshell.la \ + $(top_builddir)/e-util/libeutil.la \ + $(EVOLUTION_DATA_SERVER_LIBS) \ + $(GTKHTML_LIBS) + +# This includes the standard gtk-doc make rules, copied by gtkdocize. +include $(top_srcdir)/gtk-doc.make + +# Other files to distribute +# e.g. EXTRA_DIST += version.xml.in +EXTRA_DIST += + +# Files not to distribute +# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types +# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt +#DISTCLEANFILES += + +#TESTS = $(GTKDOC_CHECK) + +-include $(top_srcdir)/git.mk diff --git a/doc/reference/libeshell/libeshell-docs.sgml b/doc/reference/libeshell/libeshell-docs.sgml new file mode 100644 index 0000000000..8a9404fdc9 --- /dev/null +++ b/doc/reference/libeshell/libeshell-docs.sgml @@ -0,0 +1,44 @@ + + + + + Evolution Shell (libeshell) + + The latest version of this documentation can be found on-line at + http://library.gnome.org/devel/libeshell/. + + + + + The Shell + + + + + + + + + + + + + + + Actions + + + + + + Object Hierarchy + + + + + Index + + + + diff --git a/doc/reference/libeshell/libeshell-overrides.txt b/doc/reference/libeshell/libeshell-overrides.txt new file mode 100644 index 0000000000..e69de29bb2 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 @@ +
+e-shell +EShell +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 + +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 + +EShellPrivate +e_shell_migrate_error_quark +
+ +
+e-shell-backend +EShellBackend +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 + +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 + +EShellBackendPrivate +
+ +
+e-shell-content +EShellContent +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 + +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 + +EShellContentPrivate +
+ +
+e-shell-searchbar +EShellSearchbar +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 + +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 + +EShellSearchbarPrivate +
+ +
+e-shell-settings +EShellSettings +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 + +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 + +EShellSettingsPrivate +
+ +
+e-shell-sidebar +EShellSidebar +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 + +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 + +EShellSidebarPrivate +
+ +
+e-shell-switcher +EShellSwitcher +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 + +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 + +EShellSwitcherPrivate +E_SHELL_SWITCHER_DEFAULT_TOOLBAR_STYLE +
+ +
+e-shell-taskbar +EShellTaskbar +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 + +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 + +EShellTaskbarPrivate +
+ +
+e-shell-utils +Shell Utilities +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 +
+ +
+e-shell-view +EShellView +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 + +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 + +EShellViewPrivate +
+ +
+e-shell-window +EShellWindow +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 + +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 + +EShellWindowPrivate +E_SHELL_WINDOW_ACTION +E_SHELL_WINDOW_ACTION_GROUP +
+ +
+shell-actions +Shell Actions +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 +
+ +
+action-groups +Action Groups +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 +
diff --git a/doc/reference/libeshell/libeshell.types b/doc/reference/libeshell/libeshell.types new file mode 100644 index 0000000000..b0038d55e1 --- /dev/null +++ b/doc/reference/libeshell/libeshell.types @@ -0,0 +1,9 @@ +e_shell_get_type +e_shell_backend_get_type +e_shell_content_get_type +e_shell_searchbar_get_type +e_shell_sidebar_get_type +e_shell_switcher_get_type +e_shell_taskbar_get_type +e_shell_view_get_type +e_shell_window_get_type diff --git a/doc/reference/libeshell/tmpl/e-mail-account-manager.sgml b/doc/reference/libeshell/tmpl/e-mail-account-manager.sgml new file mode 100644 index 0000000000..49fe04bdf2 --- /dev/null +++ b/doc/reference/libeshell/tmpl/e-mail-account-manager.sgml @@ -0,0 +1,72 @@ + +e-mail-account-manager + + + + + + + + + + + + + + + + + + + + + + + + + +@parent: +@priv: + + + + + + +@registry: +@Returns: + + + + + + + +@manager: + + + + + + + +@manager: + + + + + + + +@manager: + + + + + + + +@manager: +@Returns: + + diff --git a/doc/reference/libeshell/tmpl/e-mail-account-tree-view.sgml b/doc/reference/libeshell/tmpl/e-mail-account-tree-view.sgml new file mode 100644 index 0000000000..eaee2f12c5 --- /dev/null +++ b/doc/reference/libeshell/tmpl/e-mail-account-tree-view.sgml @@ -0,0 +1,90 @@ + +e-mail-account-tree-view + + + + + + + + + + + + + + + + + + + + + + + + + +@parent: +@priv: + + + + + + +@registry: +@Returns: + + + + + + + +@tree_view: + + + + + + + +@tree_view: + + + + + + + +@tree_view: + + + + + + + +@tree_view: +@Returns: + + + + + + + +@tree_view: +@Returns: + + + + + + + +@tree_view: +@source: + + diff --git a/doc/reference/libeshell/tmpl/e-mail-identity-combo-box.sgml b/doc/reference/libeshell/tmpl/e-mail-identity-combo-box.sgml new file mode 100644 index 0000000000..fec8130b21 --- /dev/null +++ b/doc/reference/libeshell/tmpl/e-mail-identity-combo-box.sgml @@ -0,0 +1,56 @@ + +e-mail-identity-combo-box + + + + + + + + + + + + + + + + + + + + + + + + + +@parent: +@priv: + + + + + + +@registry: +@Returns: + + + + + + + +@combo_box: + + + + + + + +@combo_box: +@Returns: + + 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 @@ + + +]> + + + Evolution Utilities (libeutil) + + The latest version of this documentation can be found on-line at + http://library.gnome.org/devel/libeutil/. + + + + + Basic Utility Functions + + + + + + + + + + + + + + + + Attachment Management + + + + + + + + + + + + + + Category Management + + + + + + + + + + Filtering and Searching + + + + + + + + + + + + + + + + Tables and Trees + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Text Processing + + + + + + + + + + + + View Management + + + + + + + + + + + + + + (Unsorted Sections) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Object Hierarchy + + + + + Index + + + + + + diff --git a/doc/reference/libeutil/libeutil-overrides.txt b/doc/reference/libeutil/libeutil-overrides.txt new file mode 100644 index 0000000000..e69de29bb2 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 @@ +
+e-action-combo-box +EActionComboBox +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 + +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 + +EActionComboBoxPrivate +
+ +
+e-activity +EActivity +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 + +E_ACTIVITY +E_IS_ACTIVITY +E_TYPE_ACTIVITY +E_ACTIVITY_CLASS +E_IS_ACTIVITY_CLASS +E_ACTIVITY_GET_CLASS +EActivityClass +e_activity_get_type + +EActivityPrivate +
+ +
+e-activity-bar +EActivityBar +EActivityBar +e_activity_bar_new +e_activity_bar_get_activity +e_activity_bar_set_activity + +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 + +EActivityBarPrivate +
+ +
+e-activity-proxy +EActivityProxy +EActivityProxy +e_activity_proxy_new +e_activity_proxy_get_activity + +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 + +EActivityProxyPrivate +
+ +
+e-alarm-selector +EAlarmSelector +EAlarmSelector +e_alarm_selector_new + +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 + +EAlarmSelectorPrivate +
+ +
+e-alert +EAlert +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 + +E_ALERT +E_IS_ALERT +E_TYPE_ALERT +E_ALERT_CLASS +E_IS_ALERT_CLASS +E_ALERT_GET_CLASS +EAlertClass +e_alert_get_type + +EAlertPrivate +
+ +
+e-alert-bar +EAlertBar +EAlertBar +e_alert_bar_new +e_alert_bar_clear +e_alert_bar_add_alert + +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 + +EAlertBarPrivate +
+ +
+e-alert-dialog +EAlertDialog +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 + +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 + +EAlertDialogPrivate +
+ +
+e-alert-sink +EAlertSink +EAlertSink +EAlertSinkInterface +e_alert_sink_submit_alert + +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 +
+ +
+e-attachment +EAttachment +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 + +E_ATTACHMENT +E_IS_ATTACHMENT +E_TYPE_ATTACHMENT +E_ATTACHMENT_CLASS +E_IS_ATTACHMENT_CLASS +E_ATTACHMENT_GET_CLASS +EAttachmentClass +e_attachment_get_type + +EAttachmentPrivate +
+ +
+e-attachment-bar +EAttachmentBar +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 + +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 + +EAttachmentBarPrivate +
+ +
+e-attachment-button +EAttachmentButton +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 + +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 + +EAttachmentButtonPrivate +
+ +
+e-attachment-dialog +EAttachmentDialog +EAttachmentDialog +e_attachment_dialog_new +e_attachment_dialog_get_attachment +e_attachment_dialog_set_attachment + +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 + +EAttachmentDialogPrivate +
+ +
+e-attachment-handler +EAttachmentHandler +EAttachmentHandler +EAttachmentHandlerImage +EAttachmentHandlerSendto +e_attachment_handler_get_view +e_attachment_handler_get_drag_actions +e_attachment_handler_get_target_table + +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 + +EAttachmentHandlerPrivate +EAttachmentHandlerImagePrivate +EAttachmentHandlerSendtoPrivate +
+ +
+e-attachment-icon-view +EAttachmentIconView +EAttachmentIconView +e_attachment_icon_view_new +e_attachment_icon_view_set_default_icon_size + +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 + +EAttachmentIconViewPrivate +
+ +
+e-attachment-paned +EAttachmentPaned +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 + +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 + +EAttachmentPanedPrivate +
+ +
+e-attachment-store +EAttachmentStore +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 + +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 + +EAttachmentStorePrivate +
+ +
+e-attachment-tree-view +EAttachmentTreeView +EAttachmentTreeView +e_attachment_tree_view_new + +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 + +EAttachmentTreeViewPrivate +
+ +
+e-attachment-view +EAttachmentView +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 + +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 + +EAttachmentViewPrivate +
+ +
+e-auth-combo-box +EAuthComboBox +EAuthComboBox +e_auth_combo_box_new +e_auth_combo_box_get_provider +e_auth_combo_box_set_provider +e_auth_combo_box_update_available + +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 + +EAuthComboBoxPrivate +
+ +
+e-autocomplete-selector +EAutocompleteSelector +EAutocompleteSelector +e_autocomplete_selector_new + +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 + +EAutocompleteSelectorPrivate +
+ +
+e-bit-array +Bit Arrays (Legacy) +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 + +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 +
+ +
+e-book-source-config +EBookSourceConfig +EBookSourceConfig +e_book_source_config_new +e_book_source_config_add_offline_toggle + +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 + +EBookSourceConfigPrivate +
+ +
+e-cal-source-config +ECalSourceConfig +ECalSourceConfig +e_cal_source_config_new +e_cal_source_config_get_source_type +e_cal_source_config_add_offline_toggle + +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 + +ECalSourceConfigPrivate +
+ +
+e-calendar +ECalendar +ECalendar +e_calendar_new +e_calendar_set_minimum_size +e_calendar_set_maximum_size +e_calendar_get_border_size +e_calendar_set_focusable + +E_CALENDAR +E_IS_CALENDAR +E_TYPE_CALENDAR +E_CALENDAR_CLASS +E_IS_CALENDAR_CLASS +E_CALENDAR_GET_CLASS +ECalendarClass +e_calendar_get_type +
+ +
+e-calendar-item +ECalendarItem +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 + +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 +
+ +
+e-canvas +ECanvas +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 + +E_CANVAS +E_IS_CANVAS +E_TYPE_CANVAS +E_CANVAS_CLASS +E_IS_CANVAS_CLASS +E_TYPE_CANVAS_CLASS +ECanvasClass +e_canvas_get_type +
+ +
+e-canvas-background +ECanvasBackground +ECanvasBackground + +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 + +ECanvasBackgroundPrivate +
+ +
+e-canvas-vbox +ECanvasVbox +ECanvasVbox +e_canvas_vbox_add_item +e_canvas_vbox_add_item_start + +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 +
+ +
+e-categories-config +Categories +e_categories_config_get_icon_for +e_categories_config_open_dialog_for_entry +
+ +
+e-categories-dialog +ECategoriesDialog +ECategoriesDialog +e_categories_dialog_new +e_categories_dialog_get_categories +e_categories_dialog_set_categories + +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 + +ECategoriesDialogPrivate +
+ +
+e-categories-editor +ECategoriesEditor +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 + +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 + +ECategoriesEditorPrivate +
+ +
+e-categories-selector +ECategoriesSelector +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 + +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 + +ECategoriesSelectorPrivate +
+ +
+e-category-completion +ECategoryCompletion +ECategoryCompletion +e_category_completion_new + +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 + +ECategoryCompletionPrivate +
+ +
+e-category-editor +ECategoryEditor +ECategoryEditor +e_category_editor_new +e_category_editor_create_category +e_category_editor_edit_category + +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 + +ECategoryEditorPrivate +
+ +
+e-cell-renderer-color +ECellRendererColor +ECellRendererColor +e_cell_renderer_color_new + +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 + +ECellRendererColorPrivate +
+ +
+e-charset-combo-box +ECharsetComboBox +ECharsetComboBox +e_charset_combo_box_new +e_charset_combo_box_get_charset +e_charset_combo_box_set_charset + +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 + +ECharsetComboBoxPrivate +
+ +
+e-client-utils +EClient Utilities +EClientSourceType +e_client_utils_new +e_client_utils_open_new +e_client_utils_open_new_finish +
+ +
+e-contact-store +EContactStore +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 + +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 + +EContactStorePrivate +
+ +
+e-date-edit +EDateEdit +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 + +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 + +EDateEditPrivate +
+ +
+e-datetime-format +Date and Time Formatting +DTFormatKind +e_datetime_format_add_setup_widget +e_datetime_format_format +e_datetime_format_format_tm +
+ +
+e-destination-store +EDestinationStore +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 + +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 + +EDestinationStorePrivate +
+ +
+e-dialog-utils +Dialog Utilities (Legacy) +e_notice +e_dialog_combo_box_set +e_dialog_combo_box_get +
+ +
+e-file-request +EFileRequest +EFileRequest + +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 + +EFileRequestPrivate +
+ +
+e-filter-code +EFilterCode +EFilterCode +e_filter_code_new + +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 + +EFilterCodePrivate +
+ +
+e-filter-color +EFilterColor +EFilterColor +e_filter_color_new + +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 + +EFilterColorPrivate + + +
+e-filter-datespec +EFilterDatespec +EFilterDatespec +EFilterDatespecType +e_filter_datespec_new + +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 + +EFilterDatespecPrivate + + +
+e-filter-element +EFilterElement +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 + +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 + +EFilterElementPrivate +
+ +
+e-filter-file +EFilterFile +EFilterFile +e_filter_file_new +e_filter_file_new_type_name +e_filter_file_set_path + +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 + +EFilterFilePrivate +
+ +
+e-filter-input +EFilterInput +EFilterInput +e_filter_input_new +e_filter_input_new_type_name +e_filter_input_set_value + +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 + +EFilterInputPrivate +
+ +
+e-filter-int +EFilterInt +EFilterInt +e_filter_int_new +e_filter_int_new_type +e_filter_int_set_value + +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 + +EFilterIntPrivate +
+ +
+e-filter-option +EFilterOption +EFilterOption +e_filter_option_new +e_filter_option_set_current +e_filter_option_get_current +e_filter_option_add +e_filter_option_remove_all + +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 + +EFilterOptionPrivate +
+ +
+e-filter-part +EFilterPart +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 + +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 + +EFilterPartPrivate +
+ +
+e-filter-rule +EFilterRule +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 + +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 + +EFilterRulePrivate +
+ +
+e-focus-tracker +EFocusTracker +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 + +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 + +EFocusTrackerPrivate +
+ +
+e-html-utils +Text to HTML Conversion +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 +
+ +
+e-icon-factory +Icon Utilities (Legacy) +e_icon_factory_get_icon_filename +e_icon_factory_get_icon +e_icon_factory_pixbuf_scale +e_icon_factory_create_thumbnail +
+ +
+e-mail-identity-combo-box +EMailIdentityComboBox +EMailIdentityComboBox +e_mail_identity_combo_box_new +e_mail_identity_combo_box_refresh +e_mail_identity_combo_box_get_registry + +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 + +EMailIdentityComboBoxPrivate +
+ +
+e-misc-utils +Miscellaneous Utilities +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 +
+ +
+e-name-selector +ENameSelector +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 + +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 + +ENameSelectorPrivate +
+ +
+e-name-selector-dialog +ENameSelectorDialog +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 + +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 + +ENameSelectorDialogPrivate +
+ +
+e-name-selector-entry +ENameSelectorEntry +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 + +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 + +ENameSelectorEntryPrivate +
+ +
+e-name-selector-list +ENameSelectorList +ENameSelectorList +e_name_selector_list_new +e_name_selector_list_expand_clicked + +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 + +ENameSelectorListPrivate +
+ +
+e-name-selector-model +ENameSelectorModel +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 + +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 + +ENameSelectorModelPrivate +
+ +
+e-passwords +Password Utilities (Legacy) +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 +
+ +
+e-poolv +EPoolv +EPoolv +e_poolv_new +e_poolv_set +e_poolv_get +e_poolv_destroy +
+ +
+e-popup-action +EPopupAction +EPopupAction +e_popup_action_new +EPopupActionEntry +e_action_group_add_popup_actions + +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 + +EPopupActionPrivate +
+ +
+e-print +Printing +e_print_operation_new +e_print_run_page_setup_dialog +
+ +
+e-rule-context +ERuleContext +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 + +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 + +ERuleContextPrivate +
+ +
+e-rule-editor +ERuleEditor +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 + +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 + +ERuleEditorPrivate +
+ +
+e-selection +Selections +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 +
+ +
+e-source-combo-box +ESourceComboBox +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 + +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 + +ESourceComboBoxPrivate +
+ +
+e-source-selector +ESourceSelector +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 + +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 + +ESourceSelectorPrivate +
+ +
+e-source-selector-dialog +ESourceSelectorDialog +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 + +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 + +ESourceSelectorDialogPrivate +
+ +
+e-tree-model-generator +ETreeModelGenerator +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 + +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 + +ETreeModelGeneratorPrivate +
+ +
+e-web-view +EWebView +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 + +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 + +EWebViewPrivate +
+ +
+e-xml-utils +Reading and Writing XML +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 +
+ 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_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/Makefile.am b/doc/reference/shell/Makefile.am deleted file mode 100644 index 40004abf8c..0000000000 --- a/doc/reference/shell/Makefile.am +++ /dev/null @@ -1,81 +0,0 @@ -# The name of the module, e.g. 'glib'. -DOC_MODULE=eshell - -# The top-level SGML file. You can change this if you want to. -DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml - -# The directory containing the source code. Relative to $(srcdir). -# 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=../../.. - -# Extra options to pass to gtkdoc-scangobj. Not normally needed. -SCANGOBJ_OPTIONS= - -# Extra options to supply to gtkdoc-scan. -# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" -SCAN_OPTIONS= - -# Extra options to supply to gtkdoc-mkdb. -MKDB_OPTIONS=--sgml-mode --output-format=xml --name-space=e - -# Extra options to supply to gtkdoc-mktmpl -# e.g. MKTMPL_OPTIONS=--only-section-tmpl -MKTMPL_OPTIONS= - -# Extra options to supply to gtkdoc-fixref. Not normally needed. -# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html -FIXXREF_OPTIONS= - -# Used for dependencies. The docs will be rebuilt if any of these change. -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 - -# Images to copy into HTML directory. -HTML_IMAGES= - -# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). -content_files= - -# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded -# These files must be listed here *and* in content_files -expand_content_files= - -# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library. -# Only needed if you are using gtkdoc-scangobj to dynamically query widget -# signals and properties. -GTKDOC_CFLAGS= \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - $(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) - -# This includes the standard gtk-doc make rules, copied by gtkdocize. -include $(top_srcdir)/gtk-doc.make - -# Other files to distribute -# e.g. EXTRA_DIST += version.xml.in -EXTRA_DIST += - -# Files not to distribute -# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types -# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt -#DISTCLEANFILES += - -#TESTS = $(GTKDOC_CHECK) - --include $(top_srcdir)/git.mk diff --git a/doc/reference/shell/eshell-docs.sgml b/doc/reference/shell/eshell-docs.sgml deleted file mode 100644 index df6cd4354d..0000000000 --- a/doc/reference/shell/eshell-docs.sgml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - Evolution Shell Reference Manual - - The latest version of this documentation can be found on-line at - http://library.gnome.org/devel/eshell/unstable/. - - - - - The Shell - - - - - - - - - - - - - - - Basic Utility Functions - - - - - - - - - - - - - - - - Actions - - - - - - Object Hierarchy - - - - - Index - - - diff --git a/doc/reference/shell/eshell-overrides.txt b/doc/reference/shell/eshell-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 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 @@ -
-e-shell -EShell -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 - -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 - -EShellPrivate -e_shell_migrate_error_quark -
- -
-e-shell-backend -EShellBackend -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 - -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 - -EShellBackendPrivate -
- -
-e-shell-content -EShellContent -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 - -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 - -EShellContentPrivate -
- -
-e-shell-searchbar -EShellSearchbar -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 - -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 - -EShellSearchbarPrivate -
- -
-e-shell-settings -EShellSettings -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 - -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 - -EShellSettingsPrivate -
- -
-e-shell-sidebar -EShellSidebar -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 - -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 - -EShellSidebarPrivate -
- -
-e-shell-switcher -EShellSwitcher -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 - -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 - -EShellSwitcherPrivate -E_SHELL_SWITCHER_DEFAULT_TOOLBAR_STYLE -
- -
-e-shell-taskbar -EShellTaskbar -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 - -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 - -EShellTaskbarPrivate -
- -
-e-shell-utils -Shell Utilities -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 -
- -
-e-shell-view -EShellView -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 - -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 - -EShellViewPrivate -
- -
-e-shell-window -EShellWindow -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 - -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 - -EShellWindowPrivate -E_SHELL_WINDOW_ACTION -E_SHELL_WINDOW_ACTION_GROUP -
- -
-e-action-combo-box -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 - -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 - -EActionComboBoxPrivate -
- -
-e-activity -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 - -E_ACTIVITY -E_IS_ACTIVITY -E_TYPE_ACTIVITY -E_ACTIVITY_CLASS -E_IS_ACTIVITY_CLASS -E_ACTIVITY_GET_CLASS -EActivityClass -e_activity_get_type - -EActivityPrivate -
- -
-e-activity-proxy -EActivityProxy -e_activity_proxy_new -e_activity_proxy_get_activity - -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 - -EActivityProxyPrivate -
- -
-e-alert -User Alert Handling -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 -
- -
-e-attachment -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 - -E_ATTACHMENT -E_IS_ATTACHMENT -E_TYPE_ATTACHMENT -E_ATTACHMENT_CLASS -E_IS_ATTACHMENT_CLASS -E_ATTACHMENT_GET_CLASS -EAttachmentClass -e_attachment_get_type - -EAttachmentPrivate -
- -
-e-attachment-button -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 - -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 - -EAttachmentButtonPrivate -
- -
-e-attachment-dialog -EAttachmentDialog -e_attachment_dialog_new -e_attachment_dialog_get_attachment -e_attachment_dialog_set_attachment - -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 - -EAttachmentDialogPrivate -
- -
-e-attachment-handler -EAttachmentHandler -e_attachment_handler_get_view -e_attachment_handler_get_drag_actions -e_attachment_handler_get_target_table - -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 - -EAttachmentHandlerPrivate -
- -
-e-attachment-icon-view -EAttachmentIconView -e_attachment_icon_view_new -e_attachment_icon_view_set_default_icon_size - -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 - -EAttachmentIconViewPrivate -
- -
-e-attachment-paned -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 - -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 - -EAttachmentPanedPrivate -
- -
-e-attachment-store -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 - -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 - -EAttachmentStorePrivate -
- -
-e-attachment-tree-view -EAttachmentTreeView -e_attachment_tree_view_new - -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 - -EAttachmentTreeViewPrivate -
- -
-e-attachment-view -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 - -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 - -EAttachmentViewPrivate -
- -
-e-bit-array -Bit Arrays (Legacy) -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 - -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 -
- -
-e-categories-config -Categories -e_categories_config_get_icon_for -e_categories_config_open_dialog_for_entry -
- -
-e-datetime-format -Date and Time Formatting -DTFormatKind -e_datetime_format_add_setup_widget -e_datetime_format_format -e_datetime_format_format_tm -
- -
-e-dialog-utils -Dialog Utilities (Legacy) -e_notice -e_dialog_combo_box_set -e_dialog_combo_box_get -
- -
-e-html-utils -Text to HTML Conversion -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 -
- -
-e-icon-factory -Icon Utilities (Legacy) -e_icon_factory_get_icon_filename -e_icon_factory_get_icon -e_icon_factory_pixbuf_scale -e_icon_factory_create_thumbnail -
- -
-e-mail-account-manager -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 - -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 - -EMailAccountManagerPrivate -
- -
-e-mail-account-tree-view -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 - -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 - -EMailAccountTreeViewPrivate -
- -
-e-mail-identity-combo-box -EMailIdentityComboBox -e_mail_identity_combo_box_new -e_mail_identity_combo_box_refresh -e_mail_identity_combo_box_get_registry - -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 - -EMailIdentityComboBoxPrivate -
- -
-e-poolv -EPoolv -EPoolv -e_poolv_new -e_poolv_set -e_poolv_get -e_poolv_destroy -
- -
-e-popup-action -EPopupAction -e_popup_action_new -EPopupActionEntry -e_action_group_add_popup_actions - -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 - -EPopupActionPrivate -
- -
-e-print -Printing -e_print_operation_new -e_print_run_page_setup_dialog -
- -
-e-selection -Selections -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 -
- -
-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 - -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 - -EWebViewPrivate -
- -
-e-util -Miscellaneous Utilities -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 - -E_TYPE_CAMEL_OBJECT -e_camel_object_get_type -
- -
-e-xml-utils -Reading and Writing XML -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 -
- -
-shell-actions -Shell Actions -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 -
- -
-action-groups -Action Groups -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 -
diff --git a/doc/reference/shell/eshell.types b/doc/reference/shell/eshell.types deleted file mode 100644 index 0832576163..0000000000 --- a/doc/reference/shell/eshell.types +++ /dev/null @@ -1,10 +0,0 @@ -e_bit_array_get_type -e_shell_get_type -e_shell_backend_get_type -e_shell_content_get_type -e_shell_searchbar_get_type -e_shell_sidebar_get_type -e_shell_switcher_get_type -e_shell_taskbar_get_type -e_shell_view_get_type -e_shell_window_get_type diff --git a/doc/reference/shell/tmpl/e-mail-account-manager.sgml b/doc/reference/shell/tmpl/e-mail-account-manager.sgml deleted file mode 100644 index 49fe04bdf2..0000000000 --- a/doc/reference/shell/tmpl/e-mail-account-manager.sgml +++ /dev/null @@ -1,72 +0,0 @@ - -e-mail-account-manager - - - - - - - - - - - - - - - - - - - - - - - - - -@parent: -@priv: - - - - - - -@registry: -@Returns: - - - - - - - -@manager: - - - - - - - -@manager: - - - - - - - -@manager: - - - - - - - -@manager: -@Returns: - - diff --git a/doc/reference/shell/tmpl/e-mail-account-tree-view.sgml b/doc/reference/shell/tmpl/e-mail-account-tree-view.sgml deleted file mode 100644 index eaee2f12c5..0000000000 --- a/doc/reference/shell/tmpl/e-mail-account-tree-view.sgml +++ /dev/null @@ -1,90 +0,0 @@ - -e-mail-account-tree-view - - - - - - - - - - - - - - - - - - - - - - - - - -@parent: -@priv: - - - - - - -@registry: -@Returns: - - - - - - - -@tree_view: - - - - - - - -@tree_view: - - - - - - - -@tree_view: - - - - - - - -@tree_view: -@Returns: - - - - - - - -@tree_view: -@Returns: - - - - - - - -@tree_view: -@source: - - diff --git a/doc/reference/shell/tmpl/e-mail-identity-combo-box.sgml b/doc/reference/shell/tmpl/e-mail-identity-combo-box.sgml deleted file mode 100644 index fec8130b21..0000000000 --- a/doc/reference/shell/tmpl/e-mail-identity-combo-box.sgml +++ /dev/null @@ -1,56 +0,0 @@ - -e-mail-identity-combo-box - - - - - - - - - - - - - - - - - - - - - - - - - -@parent: -@priv: - - - - - - -@registry: -@Returns: - - - - - - - -@combo_box: - - - - - - - -@combo_box: -@Returns: - - -- cgit