diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-12-10 21:09:59 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-12-13 03:33:43 +0800 |
commit | d09d8de870b6697c8a8b262e7e077b871a69b315 (patch) | |
tree | 3b718882e7a0bb0a996daf2967a033d91714c9b5 /doc/reference/shell | |
parent | b61331ed03ac1c7a9b8614e25510040b9c60ae02 (diff) | |
download | gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.gz gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.bz2 gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.lz gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.xz gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.tar.zst gsoc2013-evolution-d09d8de870b6697c8a8b262e7e077b871a69b315.zip |
Consolidate base utility libraries into libeutil.
Evolution consists of entirely too many small utility libraries, which
increases linking and loading time, places a burden on higher layers of
the application (e.g. modules) which has to remember to link to all the
small in-tree utility libraries, and makes it difficult to generate API
documentation for these utility libraries in one Gtk-Doc module.
Merge the following utility libraries under the umbrella of libeutil,
and enforce a single-include policy on libeutil so we can reorganize
the files as desired without disrupting its pseudo-public API.
libemail-utils/libemail-utils.la
libevolution-utils/libevolution-utils.la
filter/libfilter.la
widgets/e-timezone-dialog/libetimezonedialog.la
widgets/menus/libmenus.la
widgets/misc/libemiscwidgets.la
widgets/table/libetable.la
widgets/text/libetext.la
This also merges libedataserverui from the Evolution-Data-Server module,
since Evolution is its only consumer nowadays, and I'd like to make some
improvements to those APIs without concern for backward-compatibility.
And finally, start a Gtk-Doc module for libeutil. It's going to be a
project just getting all the symbols _listed_ much less _documented_.
But the skeletal structure is in place and I'm off to a good start.
Diffstat (limited to 'doc/reference/shell')
-rw-r--r-- | doc/reference/shell/Makefile.am | 81 | ||||
-rw-r--r-- | doc/reference/shell/eshell-docs.sgml | 59 | ||||
-rw-r--r-- | doc/reference/shell/eshell-overrides.txt | 0 | ||||
-rw-r--r-- | doc/reference/shell/eshell-sections.txt | 1096 | ||||
-rw-r--r-- | doc/reference/shell/eshell.types | 10 | ||||
-rw-r--r-- | doc/reference/shell/tmpl/e-mail-account-manager.sgml | 72 | ||||
-rw-r--r-- | doc/reference/shell/tmpl/e-mail-account-tree-view.sgml | 90 | ||||
-rw-r--r-- | doc/reference/shell/tmpl/e-mail-identity-combo-box.sgml | 56 |
8 files changed, 0 insertions, 1464 deletions
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 @@ -<?xml version="1.0"?> -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude"> - <bookinfo> - <title>Evolution Shell Reference Manual</title> - <releaseinfo> - The latest version of this documentation can be found on-line at - <ulink role="online-location" url="http://library.gnome.org/devel/eshell/unstable/">http://library.gnome.org/devel/eshell/unstable/</ulink>. - </releaseinfo> - </bookinfo> - - <chapter> - <title>The Shell</title> - <xi:include href="xml/e-shell.xml"/> - <xi:include href="xml/e-shell-backend.xml"/> - <xi:include href="xml/e-shell-window.xml"/> - <xi:include href="xml/e-shell-view.xml"/> - <xi:include href="xml/e-shell-content.xml"/> - <xi:include href="xml/e-shell-sidebar.xml"/> - <xi:include href="xml/e-shell-taskbar.xml"/> - <xi:include href="xml/e-shell-searchbar.xml"/> - <xi:include href="xml/e-shell-settings.xml"/> - <xi:include href="xml/e-shell-switcher.xml"/> - <xi:include href="xml/e-shell-utils.xml"/> - </chapter> - - <chapter> - <title>Basic Utility Functions</title> - <xi:include href="xml/e-alert.xml"/> - <xi:include href="xml/e-bit-array.xml"/> - <xi:include href="xml/e-categories-config.xml"/> - <xi:include href="xml/e-datetime-format.xml"/> - <xi:include href="xml/e-dialog-utils.xml"/> - <xi:include href="xml/e-html-utils.xml"/> - <xi:include href="xml/e-icon-factory.xml"/> - <xi:include href="xml/e-poolv.xml"/> - <xi:include href="xml/e-print.xml"/> - <xi:include href="xml/e-selection.xml"/> - <xi:include href="xml/e-util.xml"/> - <xi:include href="xml/e-xml-utils.xml"/> - </chapter> - - <chapter> - <title>Actions</title> - <xi:include href="xml/shell-actions.xml"/> - <xi:include href="xml/action-groups.xml"/> - </chapter> - - <chapter> - <title>Object Hierarchy</title> - <xi:include href="xml/tree_index.sgml"/> - </chapter> - - <index> - <title>Index</title> - </index> - -</book> diff --git a/doc/reference/shell/eshell-overrides.txt b/doc/reference/shell/eshell-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 --- a/doc/reference/shell/eshell-overrides.txt +++ /dev/null diff --git a/doc/reference/shell/eshell-sections.txt b/doc/reference/shell/eshell-sections.txt deleted file mode 100644 index 27fbe428c2..0000000000 --- a/doc/reference/shell/eshell-sections.txt +++ /dev/null @@ -1,1096 +0,0 @@ -<SECTION> -<FILE>e-shell</FILE> -<TITLE>EShell</TITLE> -EShell -e_shell_get_default -e_shell_load_modules -e_shell_get_shell_backends -e_shell_get_canonical_name -e_shell_get_backend_by_name -e_shell_get_backend_by_scheme -e_shell_get_shell_settings -e_shell_create_shell_window -e_shell_handle_uris -e_shell_submit_alert -e_shell_get_active_window -e_shell_get_meego_mode -e_shell_get_express_mode -e_shell_get_small_screen_mode -e_shell_get_module_directory -e_shell_get_network_available -e_shell_set_network_available -e_shell_lock_network_available -e_shell_get_online -e_shell_set_online -e_shell_get_preferences_window -e_shell_event -EShellQuitReason -e_shell_quit -e_shell_cancel_quit -e_shell_adapt_window_size -e_shell_set_startup_view -e_shell_get_startup_view -E_SHELL_MIGRATE_ERROR -EShellMigrateError -e_shell_migrate_attempt -e_shell_detect_meego -<SUBSECTION Standard> -E_SHELL -E_IS_SHELL -E_TYPE_SHELL -E_SHELL_CLASS -E_IS_SHELL_CLASS -E_SHELL_GET_CLASS -EShellClass -e_shell_get_type -e_shell_quit_reason_get_type -<SUBSECTION Private> -EShellPrivate -e_shell_migrate_error_quark -</SECTION> - -<SECTION> -<FILE>e-shell-backend</FILE> -<TITLE>EShellBackend</TITLE> -EShellBackend -e_shell_backend_compare -e_shell_backend_get_config_dir -e_shell_backend_get_data_dir -e_shell_backend_get_shell -e_shell_backend_add_activity -e_shell_backend_cancel_all -e_shell_backend_is_busy -e_shell_backend_start -e_shell_backend_is_started -e_shell_backend_migrate -<SUBSECTION Standard> -E_SHELL_BACKEND -E_IS_SHELL_BACKEND -E_TYPE_SHELL_BACKEND -E_SHELL_BACKEND_CLASS -E_IS_SHELL_BACKEND_CLASS -E_SHELL_BACKEND_GET_CLASS -EShellBackendClass -e_shell_backend_get_type -<SUBSECTION Private> -EShellBackendPrivate -</SECTION> - -<SECTION> -<FILE>e-shell-content</FILE> -<TITLE>EShellContent</TITLE> -EShellContent -e_shell_content_new -e_shell_content_set_searchbar -e_shell_content_check_state -e_shell_content_focus_search_results -e_shell_content_get_alert_bar -e_shell_content_get_shell_view -e_shell_content_get_view_id -e_shell_content_set_view_id -e_shell_content_run_advanced_search_dialog -e_shell_content_run_edit_searches_dialog -e_shell_content_run_save_search_dialog -<SUBSECTION Standard> -E_SHELL_CONTENT -E_IS_SHELL_CONTENT -E_TYPE_SHELL_CONTENT -E_SHELL_CONTENT_CLASS -E_IS_SHELL_CONTENT_CLASS -E_SHELL_CONTENT_GET_CLASS -EShellContentClass -e_shell_content_get_type -<SUBSECTION Private> -EShellContentPrivate -</SECTION> - -<SECTION> -<FILE>e-shell-searchbar</FILE> -<TITLE>EShellSearchbar</TITLE> -EShellSearchbar -e_shell_searchbar_new -e_shell_searchbar_get_shell_view -e_shell_searchbar_get_express_mode -e_shell_searchbar_set_express_mode -e_shell_searchbar_get_filter_combo_box -e_shell_searchbar_get_filter_visible -e_shell_searchbar_set_filter_visible -e_shell_searchbar_get_labels_visible -e_shell_searchbar_set_labels_visible -e_shell_searchbar_get_search_hint -e_shell_searchbar_set_search_hint -e_shell_searchbar_get_search_option -e_shell_searchbar_set_search_option -e_shell_searchbar_get_search_text -e_shell_searchbar_set_search_text -e_shell_searchbar_get_search_visible -e_shell_searchbar_set_search_visible -e_shell_searchbar_get_scope_combo_box -e_shell_searchbar_get_scope_visible -e_shell_searchbar_set_scope_visible -e_shell_searchbar_set_state_dirty -e_shell_searchbar_get_state_group -e_shell_searchbar_set_state_group -e_shell_searchbar_load_state -e_shell_searchbar_save_state -<SUBSECTION Standard> -E_SHELL_SEARCHBAR -E_IS_SHELL_SEARCHBAR -E_TYPE_SHELL_SEARCHBAR -E_SHELL_SEARCHBAR_CLASS -E_IS_SHELL_SEARCHBAR_CLASS -E_SHELL_SEARCHBAR_GET_CLASS -EShellSearchbarClass -e_shell_searchbar_get_type -<SUBSECTION Private> -EShellSearchbarPrivate -</SECTION> - -<SECTION> -<FILE>e-shell-settings</FILE> -<TITLE>EShellSettings</TITLE> -EShellSettings -e_shell_settings_install_property -e_shell_settings_install_property_for_key -e_shell_settings_enable_debug -e_shell_settings_get_boolean -e_shell_settings_set_boolean -e_shell_settings_get_int -e_shell_settings_set_int -e_shell_settings_get_string -e_shell_settings_set_string -e_shell_settings_get_object -e_shell_settings_set_object -e_shell_settings_get_pointer -e_shell_settings_set_pointer -<SUBSECTION Standard> -E_SHELL_SETTINGS -E_IS_SHELL_SETTINGS -E_TYPE_SHELL_SETTINGS -E_SHELL_SETTINGS_CLASS -E_IS_SHELL_SETTINGS_CLASS -E_SHELL_SETTINGS_GET_CLASS -EShellSettingsClass -e_shell_settings_get_type -<SUBSECTION Private> -EShellSettingsPrivate -</SECTION> - -<SECTION> -<FILE>e-shell-sidebar</FILE> -<TITLE>EShellSidebar</TITLE> -EShellSidebar -e_shell_sidebar_new -e_shell_sidebar_check_state -e_shell_sidebar_get_shell_view -e_shell_sidebar_get_icon_name -e_shell_sidebar_set_icon_name -e_shell_sidebar_get_primary_text -e_shell_sidebar_set_primary_text -e_shell_sidebar_get_secondary_text -e_shell_sidebar_set_secondary_text -<SUBSECTION Standard> -E_SHELL_SIDEBAR -E_IS_SHELL_SIDEBAR -E_TYPE_SHELL_SIDEBAR -E_SHELL_SIDEBAR_CLASS -E_IS_SHELL_SIDEBAR_CLASS -E_SHELL_SIDEBAR_GET_CLASS -EShellSidebarClass -e_shell_sidebar_get_type -<SUBSECTION Private> -EShellSidebarPrivate -</SECTION> - -<SECTION> -<FILE>e-shell-switcher</FILE> -<TITLE>EShellSwitcher</TITLE> -EShellSwitcher -e_shell_switcher_new -e_shell_switcher_add_action -e_shell_switcher_get_style -e_shell_switcher_set_style -e_shell_switcher_unset_style -e_shell_switcher_get_visible -e_shell_switcher_set_visible -<SUBSECTION Standard> -E_SHELL_SWITCHER -E_IS_SHELL_SWITCHER -E_TYPE_SHELL_SWITCHER -E_SHELL_SWITCHER_CLASS -E_IS_SHELL_SWITCHER_CLASS -E_SHELL_SWITCHER_GET_CLASS -EShellSwitcherClass -e_shell_switcher_get_type -<SUBSECTION Private> -EShellSwitcherPrivate -E_SHELL_SWITCHER_DEFAULT_TOOLBAR_STYLE -</SECTION> - -<SECTION> -<FILE>e-shell-taskbar</FILE> -<TITLE>EShellTaskbar</TITLE> -EShellTaskbar -e_shell_taskbar_new -e_shell_taskbar_get_shell_view -e_shell_taskbar_get_message -e_shell_taskbar_set_message -e_shell_taskbar_unset_message -e_shell_taskbar_get_activity_count -<SUBSECTION Standard> -E_SHELL_TASKBAR -E_IS_SHELL_TASKBAR -E_TYPE_SHELL_TASKBAR -E_SHELL_TASKBAR_CLASS -E_IS_SHELL_TASKBAR_CLASS -E_SHELL_TASKBAR_GET_CLASS -EShellTaskbarClass -e_shell_taskbar_get_type -<SUBSECTION Private> -EShellTaskbarPrivate -</SECTION> - -<SECTION> -<FILE>e-shell-utils</FILE> -<TITLE>Shell Utilities</TITLE> -e_shell_configure_ui_manager -e_shell_run_open_dialog -e_shell_run_save_dialog -e_shell_utils_import_uris -e_shell_hide_widgets_for_express_mode -</SECTION> - -<SECTION> -<FILE>e-shell-view</FILE> -<TITLE>EShellView</TITLE> -EShellView -EShellViewClass -e_shell_view_get_name -e_shell_view_get_action -e_shell_view_get_title -e_shell_view_set_title -e_shell_view_get_view_id -e_shell_view_set_view_id -e_shell_view_is_active -e_shell_view_get_page_num -e_shell_view_set_page_num -e_shell_view_get_searchbar -e_shell_view_get_search_name -e_shell_view_get_search_rule -e_shell_view_set_search_rule -e_shell_view_get_search_query -e_shell_view_get_size_group -e_shell_view_get_shell_backend -e_shell_view_get_shell_content -e_shell_view_get_shell_sidebar -e_shell_view_get_shell_taskbar -e_shell_view_get_shell_window -e_shell_view_get_state_key_file -e_shell_view_set_state_dirty -e_shell_view_clear_search -e_shell_view_custom_search -e_shell_view_execute_search -e_shell_view_block_execute_search -e_shell_view_unblock_execute_search -e_shell_view_update_actions -e_shell_view_block_update_actions -e_shell_view_unblock_update_actions -e_shell_view_show_popup_menu -e_shell_view_new_view_instance -<SUBSECTION Standard> -E_SHELL_VIEW -E_IS_SHELL_VIEW -E_TYPE_SHELL_VIEW -E_SHELL_VIEW_CLASS -E_IS_SHELL_VIEW_CLASS -E_SHELL_VIEW_GET_CLASS -e_shell_view_get_type -<SUBSECTION Private> -EShellViewPrivate -</SECTION> - -<SECTION> -<FILE>e-shell-window</FILE> -<TITLE>EShellWindow</TITLE> -EShellWindow -e_shell_window_new -e_shell_window_get_shell -e_shell_window_get_shell_view -e_shell_window_peek_shell_view -e_shell_window_get_shell_view_action -e_shell_window_get_alert_bar -e_shell_window_get_focus_tracker -e_shell_window_get_ui_manager -e_shell_window_get_action -e_shell_window_get_action_group -e_shell_window_get_managed_widget -e_shell_window_get_active_view -e_shell_window_set_active_view -e_shell_window_get_safe_mode -e_shell_window_set_safe_mode -e_shell_window_add_action_group -e_shell_window_get_sidebar_visible -e_shell_window_set_sidebar_visible -e_shell_window_get_switcher_visible -e_shell_window_set_switcher_visible -e_shell_window_get_taskbar_visible -e_shell_window_set_taskbar_visible -e_shell_window_get_toolbar_visible -e_shell_window_set_toolbar_visible -e_shell_window_register_new_item_actions -e_shell_window_register_new_source_actions -e_shell_window_get_menu_bar_box -<SUBSECTION Standard> -E_SHELL_WINDOW -E_IS_SHELL_WINDOW -E_TYPE_SHELL_WINDOW -E_SHELL_WINDOW_CLASS -E_IS_SHELL_WINDOW_CLASS -E_SHELL_WINDOW_GET_CLASS -EShellWindowClass -e_shell_window_get_type -<SUBSECTION Private> -EShellWindowPrivate -E_SHELL_WINDOW_ACTION -E_SHELL_WINDOW_ACTION_GROUP -</SECTION> - -<SECTION> -<FILE>e-action-combo-box</FILE> -EActionComboBox -e_action_combo_box_new -e_action_combo_box_new_with_action -e_action_combo_box_get_action -e_action_combo_box_set_action -e_action_combo_box_get_current_value -e_action_combo_box_set_current_value -e_action_combo_box_add_separator_before -e_action_combo_box_add_separator_after -<SUBSECTION Standard> -E_ACTION_COMBO_BOX -E_IS_ACTION_COMBO_BOX -E_TYPE_ACTION_COMBO_BOX -E_ACTION_COMBO_BOX_CLASS -E_IS_ACTION_COMBO_BOX_CLASS -E_ACTION_COMBO_BOX_GET_CLASS -EActionComboBoxClass -e_action_combo_box_get_type -<SUBSECTION Private> -EActionComboBoxPrivate -</SECTION> - -<SECTION> -<FILE>e-activity</FILE> -EActivity -e_activity_new -e_activity_describe -e_activity_get_alert_sink -e_activity_set_alert_sink -e_activity_get_cancellable -e_activity_set_cancellable -e_activity_get_icon_name -e_activity_set_icon_name -e_activity_get_percent -e_activity_set_percent -e_activity_get_state -e_activity_set_state -e_activity_get_text -e_activity_set_text -<SUBSECTION Standard> -E_ACTIVITY -E_IS_ACTIVITY -E_TYPE_ACTIVITY -E_ACTIVITY_CLASS -E_IS_ACTIVITY_CLASS -E_ACTIVITY_GET_CLASS -EActivityClass -e_activity_get_type -<SUBSECTION Private> -EActivityPrivate -</SECTION> - -<SECTION> -<FILE>e-activity-proxy</FILE> -EActivityProxy -e_activity_proxy_new -e_activity_proxy_get_activity -<SUBSECTION Standard> -E_ACTIVITY_PROXY -E_IS_ACTIVITY_PROXY -E_TYPE_ACTIVITY_PROXY -E_ACTIVITY_PROXY_CLASS -E_IS_ACTIVITY_PROXY_CLASS -E_ACTIVITY_PROXY_GET_CLASS -EActivityProxyClass -e_activity_proxy_get_type -<SUBSECTION Private> -EActivityProxyPrivate -</SECTION> - -<SECTION> -<FILE>e-alert</FILE> -<TITLE>User Alert Handling</TITLE> -E_ALERT_ASK_FILE_EXISTS_OVERWRITE -E_ALERT_NO_SAVE_FILE -E_ALERT_NO_LOAD_FILE -EAlert -e_alert_new -e_alert_run_dialog -e_alert_run_dialog_for_args -</SECTION> - -<SECTION> -<FILE>e-attachment</FILE> -EAttachment -e_attachment_new -e_attachment_new_for_path -e_attachment_new_for_uri -e_attachment_new_for_message -e_attachment_add_to_multipart -e_attachment_cancel -e_attachment_get_can_show -e_attachment_set_can_show -e_attachment_get_disposition -e_attachment_set_disposition -e_attachment_get_file -e_attachment_set_file -e_attachment_get_file_info -e_attachment_set_file_info -e_attachment_get_icon -e_attachment_get_loading -e_attachment_get_mime_part -e_attachment_set_mime_part -e_attachment_get_percent -e_attachment_get_reference -e_attachment_set_reference -e_attachment_get_saving -e_attachment_get_shown -e_attachment_set_shown -e_attachment_get_encrypted -e_attachment_set_encrypted -e_attachment_get_signed -e_attachment_set_signed -e_attachment_get_description -e_attachment_get_thumbnail_path -e_attachment_is_rfc822 -e_attachment_list_apps -e_attachment_load_async -e_attachment_load_finish -e_attachment_open_async -e_attachment_open_finish -e_attachment_save_async -e_attachment_save_finish -e_attachment_load_handle_error -e_attachment_open_handle_error -e_attachment_save_handle_error -<SUBSECTION Standard> -E_ATTACHMENT -E_IS_ATTACHMENT -E_TYPE_ATTACHMENT -E_ATTACHMENT_CLASS -E_IS_ATTACHMENT_CLASS -E_ATTACHMENT_GET_CLASS -EAttachmentClass -e_attachment_get_type -<SUBSECTION Private> -EAttachmentPrivate -</SECTION> - -<SECTION> -<FILE>e-attachment-button</FILE> -EAttachmentButton -e_attachment_button_new -e_attachment_button_get_view -e_attachment_button_get_attachment -e_attachment_button_set_attachment -e_attachment_button_get_expandable -e_attachment_button_set_expandable -e_attachment_button_get_expanded -e_attachment_button_set_expanded -<SUBSECTION Standard> -E_ATTACHMENT_BUTTON -E_IS_ATTACHMENT_BUTTON -E_TYPE_ATTACHMENT_BUTTON -E_ATTACHMENT_BUTTON_CLASS -E_IS_ATTACHMENT_BUTTON_CLASS -E_ATTACHMENT_BUTTON_GET_CLASS -EAttachmentButtonClass -e_attachment_button_get_type -<SUBSECTION Private> -EAttachmentButtonPrivate -</SECTION> - -<SECTION> -<FILE>e-attachment-dialog</FILE> -EAttachmentDialog -e_attachment_dialog_new -e_attachment_dialog_get_attachment -e_attachment_dialog_set_attachment -<SUBSECTION Standard> -E_ATTACHMENT_DIALOG -E_IS_ATTACHMENT_DIALOG -E_TYPE_ATTACHMENT_DIALOG -E_ATTACHMENT_DIALOG_CLASS -E_IS_ATTACHMENT_DIALOG_CLASS -E_ATTACHMENT_DIALOG_GET_CLASS -EAttachmentDialogClass -e_attachment_dialog_get_type -<SUBSECTION Private> -EAttachmentDialogPrivate -</SECTION> - -<SECTION> -<FILE>e-attachment-handler</FILE> -EAttachmentHandler -e_attachment_handler_get_view -e_attachment_handler_get_drag_actions -e_attachment_handler_get_target_table -<SUBSECTION Standard> -E_ATTACHMENT_HANDLER -E_IS_ATTACHMENT_HANDLER -E_TYPE_ATTACHMENT_HANDLER -E_ATTACHMENT_HANDLER_CLASS -E_IS_ATTACHMENT_HANDLER_CLASS -E_ATTACHMENT_HANDLER_GET_CLASS -EAttachmentHandlerClass -e_attachment_handler_get_type -e_attachment_handler_image_get_type -e_attachment_handler_sendto_get_type -<SUBSECTION Private> -EAttachmentHandlerPrivate -</SECTION> - -<SECTION> -<FILE>e-attachment-icon-view</FILE> -EAttachmentIconView -e_attachment_icon_view_new -e_attachment_icon_view_set_default_icon_size -<SUBSECTION Standard> -E_ATTACHMENT_ICON_VIEW -E_IS_ATTACHMENT_ICON_VIEW -E_TYPE_ATTACHMENT_ICON_VIEW -E_ATTACHMENT_ICON_VIEW_CLASS -E_IS_ATTACHMENT_ICON_VIEW_CLASS -E_ATTACHMENT_ICON_VIEW_GET_CLASS -EAttachmentIconViewClass -e_attachment_icon_view_get_type -<SUBSECTION Private> -EAttachmentIconViewPrivate -</SECTION> - -<SECTION> -<FILE>e-attachment-paned</FILE> -EAttachmentPaned -e_attachment_paned_new -e_attachment_paned_get_content_area -e_attachment_paned_get_active_view -e_attachment_paned_set_active_view -e_attachment_paned_get_expanded -e_attachment_paned_set_expanded -e_attachment_paned_drag_data_received -e_attachment_paned_get_controls_container -e_attachment_paned_get_view_combo -e_attachment_paned_set_default_height -<SUBSECTION Standard> -E_ATTACHMENT_PANED -E_IS_ATTACHMENT_PANED -E_TYPE_ATTACHMENT_PANED -E_ATTACHMENT_PANED_CLASS -E_IS_ATTACHMENT_PANED_CLASS -E_ATTACHMENT_PANED_GET_CLASS -EAttachmentPanedClass -e_attachment_paned_get_type -<SUBSECTION Private> -EAttachmentPanedPrivate -</SECTION> - -<SECTION> -<FILE>e-attachment-store</FILE> -EAttachmentStore -e_attachment_store_new -e_attachment_store_add_attachment -e_attachment_store_remove_attachment -e_attachment_store_add_to_multipart -e_attachment_store_get_attachments -e_attachment_store_get_num_attachments -e_attachment_store_get_num_loading -e_attachment_store_get_total_size -e_attachment_store_run_load_dialog -e_attachment_store_run_save_dialog -e_attachment_store_get_uris_async -e_attachment_store_get_uris_finish -e_attachment_store_load_async -e_attachment_store_load_finish -e_attachment_store_save_async -e_attachment_store_save_finish -<SUBSECTION Standard> -E_ATTACHMENT_STORE -E_IS_ATTACHMENT_STORE -E_TYPE_ATTACHMENT_STORE -E_ATTACHMENT_STORE_CLASS -E_IS_ATTACHMENT_STORE_CLASS -E_ATTACHMENT_STORE_GET_CLASS -EAttachmentStoreClass -e_attachment_store_get_type -<SUBSECTION Private> -EAttachmentStorePrivate -</SECTION> - -<SECTION> -<FILE>e-attachment-tree-view</FILE> -EAttachmentTreeView -e_attachment_tree_view_new -<SUBSECTION Standard> -E_ATTACHMENT_TREE_VIEW -E_IS_ATTACHMENT_TREE_VIEW -E_TYPE_ATTACHMENT_TREE_VIEW -E_ATTACHMENT_TREE_VIEW_CLASS -E_IS_ATTACHMENT_TREE_VIEW_CLASS -E_ATTACHMENT_TREE_VIEW_GET_CLASS -EAttachmentTreeViewClass -e_attachment_tree_view_get_type -<SUBSECTION Private> -EAttachmentTreeViewPrivate -</SECTION> - -<SECTION> -<FILE>e-attachment-view</FILE> -EAttachmentView -e_attachment_view_init -e_attachment_view_dispose -e_attachment_view_finalize -e_attachment_view_get_private -e_attachment_view_get_store -e_attachment_view_get_editable -e_attachment_view_set_editable -e_attachment_view_get_target_list -e_attachment_view_get_drag_actions -e_attachment_view_get_selected_attachments -e_attachment_view_open_path -e_attachment_view_remove_selected -e_attachment_view_button_press_event -e_attachment_view_button_release_event -e_attachment_view_motion_notify_event -e_attachment_view_key_press_event -e_attachment_view_get_path_at_pos -e_attachment_view_get_selected_paths -e_attachment_view_path_is_selected -e_attachment_view_select_path -e_attachment_view_unselect_path -e_attachment_view_select_all -e_attachment_view_unselect_all -e_attachment_view_sync_selection -e_attachment_view_drag_source_set -e_attachment_view_drag_source_unset -e_attachment_view_drag_begin -e_attachment_view_drag_end -e_attachment_view_drag_data_get -e_attachment_view_drag_dest_set -e_attachment_view_drag_dest_unset -e_attachment_view_drag_motion -e_attachment_view_drag_drop -e_attachment_view_drag_data_received -e_attachment_view_get_action -e_attachment_view_add_action_group -e_attachment_view_get_action_group -e_attachment_view_get_popup_menu -e_attachment_view_get_ui_manager -e_attachment_view_recent_action_new -e_attachment_view_show_popup_menu -e_attachment_view_update_actions -<SUBSECTION Standard> -E_ATTACHMENT_VIEW -E_IS_ATTACHMENT_VIEW -E_TYPE_ATTACHMENT_VIEW -E_ATTACHMENT_VIEW_IFACE -E_IS_ATTACHMENT_VIEW_IFACE -E_ATTACHMENT_VIEW_GET_IFACE -EAttachmentViewIface -e_attachment_view_get_type -<SUBSECTION Private> -EAttachmentViewPrivate -</SECTION> - -<SECTION> -<FILE>e-bit-array</FILE> -<TITLE>Bit Arrays (Legacy)</TITLE> -EBitArray -e_bit_array_new -e_bit_array_value_at -e_bit_array_foreach -e_bit_array_selected_count -e_bit_array_select_all -e_bit_array_invert_selection -e_bit_array_bit_count -e_bit_array_change_one_row -e_bit_array_change_range -e_bit_array_select_single_row -e_bit_array_toggle_single_row -e_bit_array_insert -e_bit_array_delete -e_bit_array_delete_single_mode -e_bit_array_move_row -<SUBSECTION Standard> -E_BIT_ARRAY -E_IS_BIT_ARRAY -E_BIT_ARRAY_TYPE -E_BIT_ARRAY_CLASS -E_IS_BIT_ARRAY_CLASS -EBitArrayClass -e_bit_array_get_type -</SECTION> - -<SECTION> -<FILE>e-categories-config</FILE> -<TITLE>Categories</TITLE> -e_categories_config_get_icon_for -e_categories_config_open_dialog_for_entry -</SECTION> - -<SECTION> -<FILE>e-datetime-format</FILE> -<TITLE>Date and Time Formatting</TITLE> -DTFormatKind -e_datetime_format_add_setup_widget -e_datetime_format_format -e_datetime_format_format_tm -</SECTION> - -<SECTION> -<FILE>e-dialog-utils</FILE> -<TITLE>Dialog Utilities (Legacy)</TITLE> -e_notice -e_dialog_combo_box_set -e_dialog_combo_box_get -</SECTION> - -<SECTION> -<FILE>e-html-utils</FILE> -<TITLE>Text to HTML Conversion</TITLE> -E_TEXT_TO_HTML_PRE -E_TEXT_TO_HTML_CONVERT_NL -E_TEXT_TO_HTML_CONVERT_SPACES -E_TEXT_TO_HTML_CONVERT_URLS -E_TEXT_TO_HTML_MARK_CITATION -E_TEXT_TO_HTML_CONVERT_ADDRESSES -E_TEXT_TO_HTML_ESCAPE_8BIT -E_TEXT_TO_HTML_CITE -e_text_to_html_full -e_text_to_html -</SECTION> - -<SECTION> -<FILE>e-icon-factory</FILE> -<TITLE>Icon Utilities (Legacy)</TITLE> -e_icon_factory_get_icon_filename -e_icon_factory_get_icon -e_icon_factory_pixbuf_scale -e_icon_factory_create_thumbnail -</SECTION> - -<SECTION> -<FILE>e-mail-account-manager</FILE> -EMailAccountManager -e_mail_account_manager_new -e_mail_account_manager_add_account -e_mail_account_manager_edit_account -e_mail_account_manager_delete_account -e_mail_account_manager_get_registry -<SUBSECTION Standard> -E_MAIL_ACCOUNT_MANAGER -E_IS_MAIL_ACCOUNT_MANAGER -E_TYPE_MAIL_ACCOUNT_MANAGER -E_MAIL_ACCOUNT_MANAGER_CLASS -E_IS_MAIL_ACCOUNT_MANAGER_CLASS -E_MAIL_ACCOUNT_MANAGER_GET_CLASS -e_mail_account_manager_get_type -<SUBSECTION Private> -EMailAccountManagerPrivate -</SECTION> - -<SECTION> -<FILE>e-mail-account-tree-view</FILE> -EMailAccountTreeView -e_mail_account_tree_view_new -e_mail_account_tree_view_refresh -e_mail_account_tree_view_enable_selected -e_mail_account_tree_view_disable_selected -e_mail_account_tree_view_get_registry -e_mail_account_tree_view_get_selected_source -e_mail_account_tree_view_set_selected_source -<SUBSECTION Standard> -E_MAIL_ACCOUNT_TREE_VIEW -E_IS_MAIL_ACCOUNT_TREE_VIEW -E_TYPE_MAIL_ACCOUNT_TREE_VIEW -E_MAIL_ACCOUNT_TREE_VIEW_CLASS -E_IS_MAIL_ACCOUNT_TREE_VIEW_CLASS -E_MAIL_ACCOUNT_TREE_VIEW_GET_CLASS -EMailAccountTreeViewClass -e_mail_account_tree_view_get_type -<SUBSECTION Private> -EMailAccountTreeViewPrivate -</SECTION> - -<SECTION> -<FILE>e-mail-identity-combo-box</FILE> -EMailIdentityComboBox -e_mail_identity_combo_box_new -e_mail_identity_combo_box_refresh -e_mail_identity_combo_box_get_registry -<SUBSECTION Standard> -E_MAIL_IDENTITY_COMBO_BOX -E_IS_MAIL_IDENTITY_COMBO_BOX -E_TYPE_MAIL_IDENTITY_COMBO_BOX -E_MAIL_IDENTITY_COMBO_BOX_CLASS -E_IS_MAIL_IDENTITY_COMBO_BOX_CLASS -E_MAIL_IDENTITY_COMBO_BOX_GET_CLASS -EMailIdentityComboBoxClass -e_mail_identity_combo_box_get_type -<SUBSECTION Private> -EMailIdentityComboBoxPrivate -</SECTION> - -<SECTION> -<FILE>e-poolv</FILE> -<TITLE>EPoolv</TITLE> -EPoolv -e_poolv_new -e_poolv_set -e_poolv_get -e_poolv_destroy -</SECTION> - -<SECTION> -<FILE>e-popup-action</FILE> -EPopupAction -e_popup_action_new -EPopupActionEntry -e_action_group_add_popup_actions -<SUBSECTION Standard> -E_POPUP_ACTION -E_IS_POPUP_ACTION -E_TYPE_POPUP_ACTION -E_POPUP_ACTION_CLASS -E_IS_POPUP_ACTION_CLASS -E_POPUP_ACTION_GET_CLASS -EPopupActionClass -e_popup_action_get_type -<SUBSECTION Private> -EPopupActionPrivate -</SECTION> - -<SECTION> -<FILE>e-print</FILE> -<TITLE>Printing</TITLE> -e_print_operation_new -e_print_run_page_setup_dialog -</SECTION> - -<SECTION> -<FILE>e-selection</FILE> -<TITLE>Selections</TITLE> -e_target_list_add_calendar_targets -e_target_list_add_directory_targets -e_selection_data_set_calendar -e_selection_data_set_directory -e_selection_data_get_calendar -e_selection_data_get_directory -e_selection_data_targets_include_calendar -e_selection_data_targets_include_directory -e_targets_include_calendar -e_targets_include_directory -e_clipboard_set_calendar -e_clipboard_set_directory -e_clipboard_request_calendar -e_clipboard_request_directory -e_clipboard_wait_for_calendar -e_clipboard_wait_for_directory -e_clipboard_wait_is_calendar_available -e_clipboard_wait_is_directory_available -</SECTION> - -<SECTION> -EWebView -e_web_view_new -e_web_view_clear -e_web_view_load_string -e_web_view_get_animate -e_web_view_set_animate -e_web_view_get_caret_mode -e_web_view_set_caret_mode -e_web_view_get_copy_target_list -e_web_view_get_disable_printing -e_web_view_set_disable_printing -e_web_view_get_disable_save_to_disk -e_web_view_set_disable_save_to_disk -e_web_view_get_editable -e_web_view_set_editable -e_web_view_get_inline_spelling -e_web_view_set_inline_spelling -e_web_view_get_magic_links -e_web_view_set_magic_links -e_web_view_get_magic_smileys -e_web_view_set_magic_smileys -e_web_view_get_selected_uri -e_web_view_set_selected_uri -e_web_view_get_open_proxy -e_web_view_set_open_proxy -e_web_view_get_paste_target_list -e_web_view_get_print_proxy -e_web_view_set_print_proxy -e_web_view_get_save_as_proxy -e_web_view_set_save_as_proxy -e_web_view_get_action -e_web_view_get_action_group -e_web_view_extract_uri -e_web_view_copy_clipboard -e_web_view_cut_clipboard -e_web_view_is_selection_active -e_web_view_paste_clipboard -e_web_view_scroll_forward -e_web_view_scroll_backward -e_web_view_select_all -e_web_view_unselect_all -e_web_view_zoom_100 -e_web_view_zoom_in -e_web_view_zoom_out -e_web_view_get_ui_manager -e_web_view_get_popup_menu -e_web_view_show_popup_menu -e_web_view_status_message -e_web_view_stop_loading -e_web_view_update_actions -<SUBSECTION Standard> -E_WEB_VIEW -E_IS_WEB_VIEW -E_TYPE_WEB_VIEW -E_WEB_VIEW_CLASS -E_IS_WEB_VIEW_CLASS -E_WEB_VIEW_GET_CLASS -EWebViewClass -e_web_view_get_type -<SUBSECTION Private> -EWebViewPrivate -</SECTION> - -<SECTION> -<FILE>e-util</FILE> -<TITLE>Miscellaneous Utilities</TITLE> -e_get_accels_filename -e_show_uri -e_display_help -e_lookup_action -e_lookup_action_group -e_action_compare_by_label -e_action_group_remove_all_actions -e_radio_action_get_current_action -e_categories_add_change_hook -e_str_without_underscores -e_str_compare -e_str_case_compare -e_collate_compare -e_int_compare -e_color_to_value -e_format_number -ESortCompareFunc -e_bsearch -e_strftime_fix_am_pm -e_utf8_strftime_fix_am_pm -e_get_month_name -e_get_weekday_name -e_flexible_strtod -e_ascii_dtostr -e_file_lock_create -e_file_lock_destroy -e_file_lock_exists -e_util_guess_mime_type -e_util_get_category_filter_options -e_binding_transform_color_to_string -e_binding_transform_string_to_color -e_binding_transform_source_to_uid -e_binding_transform_uid_to_source -e_charset_add_radio_actions -e_file_replace_contents_async -e_file_replace_contents_finish -e_mktemp -e_mkstemp -e_mkdtemp -<SUBSECTION Standard> -E_TYPE_CAMEL_OBJECT -e_camel_object_get_type -</SECTION> - -<SECTION> -<FILE>e-xml-utils</FILE> -<TITLE>Reading and Writing XML</TITLE> -e_xml_get_child_by_name_by_lang -e_xml_get_child_by_name_by_lang_list -e_xml_get_child_by_name_no_lang -e_xml_get_integer_prop_by_name -e_xml_get_integer_prop_by_name_with_default -e_xml_set_integer_prop_by_name -e_xml_get_uint_prop_by_name -e_xml_get_uint_prop_by_name_with_default -e_xml_set_uint_prop_by_name -e_xml_get_bool_prop_by_name -e_xml_get_bool_prop_by_name_with_default -e_xml_set_bool_prop_by_name -e_xml_get_double_prop_by_name -e_xml_get_double_prop_by_name_with_default -e_xml_set_double_prop_by_name -e_xml_get_string_prop_by_name -e_xml_get_string_prop_by_name_with_default -e_xml_set_string_prop_by_name -e_xml_get_translated_string_prop_by_name -</SECTION> - -<SECTION> -<FILE>shell-actions</FILE> -<TITLE>Shell Actions</TITLE> -E_SHELL_WINDOW_ACTION_ABOUT -E_SHELL_WINDOW_ACTION_CLOSE -E_SHELL_WINDOW_ACTION_CONTENTS -E_SHELL_WINDOW_ACTION_FORGET_PASSWORDS -E_SHELL_WINDOW_ACTION_GAL_CUSTOM_VIEW -E_SHELL_WINDOW_ACTION_GAL_DEFINE_VIEWS -E_SHELL_WINDOW_ACTION_GAL_SAVE_CUSTOM_VIEW -E_SHELL_WINDOW_ACTION_IMPORT -E_SHELL_WINDOW_ACTION_NEW_WINDOW -E_SHELL_WINDOW_ACTION_PAGE_SETUP -E_SHELL_WINDOW_ACTION_PREFERENCES -E_SHELL_WINDOW_ACTION_QUICK_REFERENCE -E_SHELL_WINDOW_ACTION_QUIT -E_SHELL_WINDOW_ACTION_SEARCH_ADVANCED -E_SHELL_WINDOW_ACTION_SEARCH_CLEAR -E_SHELL_WINDOW_ACTION_SEARCH_EDIT -E_SHELL_WINDOW_ACTION_SEARCH_OPTIONS -E_SHELL_WINDOW_ACTION_SEARCH_QUICK -E_SHELL_WINDOW_ACTION_SEARCH_SAVE -E_SHELL_WINDOW_ACTION_SHOW_SIDEBAR -E_SHELL_WINDOW_ACTION_SHOW_SWITCHER -E_SHELL_WINDOW_ACTION_SHOW_TASKBAR -E_SHELL_WINDOW_ACTION_SHOW_TOOLBAR -E_SHELL_WINDOW_ACTION_SUBMIT_BUG -E_SHELL_WINDOW_ACTION_SWITCHER_INITIAL -E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_BOTH -E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_ICONS -E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_TEXT -E_SHELL_WINDOW_ACTION_SWITCHER_STYLE_USER -E_SHELL_WINDOW_ACTION_WORK_OFFLINE -E_SHELL_WINDOW_ACTION_WORK_ONLINE -</SECTION> - -<SECTION> -<FILE>action-groups</FILE> -<TITLE>Action Groups</TITLE> -E_SHELL_WINDOW_ACTION_GROUP_SHELL -E_SHELL_WINDOW_ACTION_GROUP_SWITCHER -E_SHELL_WINDOW_ACTION_GROUP_NEW_ITEM -E_SHELL_WINDOW_ACTION_GROUP_NEW_SOURCE -E_SHELL_WINDOW_ACTION_GROUP_CUSTOM_RULES -E_SHELL_WINDOW_ACTION_GROUP_GAL_VIEW -E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_APPLICATION_HANDLERS -E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_PRINTING -E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_PRINT_SETUP -E_SHELL_WINDOW_ACTION_GROUP_LOCKDOWN_SAVE_TO_DISK -</SECTION> 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 @@ -<!-- ##### SECTION Title ##### --> -e-mail-account-manager - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### STRUCT EMailAccountManager ##### --> -<para> - -</para> - -@parent: -@priv: - -<!-- ##### FUNCTION e_mail_account_manager_new ##### --> -<para> - -</para> - -@registry: -@Returns: - - -<!-- ##### FUNCTION e_mail_account_manager_add_account ##### --> -<para> - -</para> - -@manager: - - -<!-- ##### FUNCTION e_mail_account_manager_edit_account ##### --> -<para> - -</para> - -@manager: - - -<!-- ##### FUNCTION e_mail_account_manager_delete_account ##### --> -<para> - -</para> - -@manager: - - -<!-- ##### FUNCTION e_mail_account_manager_get_registry ##### --> -<para> - -</para> - -@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 @@ -<!-- ##### SECTION Title ##### --> -e-mail-account-tree-view - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### STRUCT EMailAccountTreeView ##### --> -<para> - -</para> - -@parent: -@priv: - -<!-- ##### FUNCTION e_mail_account_tree_view_new ##### --> -<para> - -</para> - -@registry: -@Returns: - - -<!-- ##### FUNCTION e_mail_account_tree_view_refresh ##### --> -<para> - -</para> - -@tree_view: - - -<!-- ##### FUNCTION e_mail_account_tree_view_enable_selected ##### --> -<para> - -</para> - -@tree_view: - - -<!-- ##### FUNCTION e_mail_account_tree_view_disable_selected ##### --> -<para> - -</para> - -@tree_view: - - -<!-- ##### FUNCTION e_mail_account_tree_view_get_registry ##### --> -<para> - -</para> - -@tree_view: -@Returns: - - -<!-- ##### FUNCTION e_mail_account_tree_view_get_selected_source ##### --> -<para> - -</para> - -@tree_view: -@Returns: - - -<!-- ##### FUNCTION e_mail_account_tree_view_set_selected_source ##### --> -<para> - -</para> - -@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 @@ -<!-- ##### SECTION Title ##### --> -e-mail-identity-combo-box - -<!-- ##### SECTION Short_Description ##### --> - - -<!-- ##### SECTION Long_Description ##### --> -<para> - -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### STRUCT EMailIdentityComboBox ##### --> -<para> - -</para> - -@parent: -@priv: - -<!-- ##### FUNCTION e_mail_identity_combo_box_new ##### --> -<para> - -</para> - -@registry: -@Returns: - - -<!-- ##### FUNCTION e_mail_identity_combo_box_refresh ##### --> -<para> - -</para> - -@combo_box: - - -<!-- ##### FUNCTION e_mail_identity_combo_box_get_registry ##### --> -<para> - -</para> - -@combo_box: -@Returns: - - |