diff options
author | Perberos <[email protected]> | 2011-11-09 18:17:43 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-09 18:17:43 -0300 |
commit | f6ce926719943751cf65cacde7fae050593eb2d6 (patch) | |
tree | 9224d1751678cf2d1fbd0431f128b711311c0287 /help/reference/shell | |
download | atril-f6ce926719943751cf65cacde7fae050593eb2d6.tar.bz2 atril-f6ce926719943751cf65cacde7fae050593eb2d6.tar.xz |
inicial
Diffstat (limited to 'help/reference/shell')
-rw-r--r-- | help/reference/shell/Makefile.am | 150 | ||||
-rw-r--r-- | help/reference/shell/evince-docs.xml | 163 | ||||
-rw-r--r-- | help/reference/shell/evince-overrides.txt | 0 | ||||
-rw-r--r-- | help/reference/shell/evince-sections.txt | 472 | ||||
-rw-r--r-- | help/reference/shell/evince.types | 24 | ||||
-rw-r--r-- | help/reference/shell/version.xml.in | 1 |
6 files changed, 810 insertions, 0 deletions
diff --git a/help/reference/shell/Makefile.am b/help/reference/shell/Makefile.am new file mode 100644 index 00000000..628b1a30 --- /dev/null +++ b/help/reference/shell/Makefile.am @@ -0,0 +1,150 @@ +# We require automake 1.10 for $(abs_builddir) +AUTOMAKE_OPTIONS = 1.10 + +# This is a blank Makefile.am for using gtk-doc. +# Copy this to your project's API docs directory and modify the variables to +# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples +# of using the various options. + +# The name of the module, e.g. 'glib'. +DOC_MODULE = evince + +# Uncomment for versioned docs and specify the version of the module, e.g. '2'. +# DOC_MODULE_VERSION = $(EV_API_VERSION) + +# The top-level SGML file. You can change this if you want to. +DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.xml + +# The directory containing the source code. Relative to $(srcdir). +# gtk-doc will search all .c & .h files beneath here for inline comments +# evinceing the functions and macros. +# e.g. DOC_SOURCE_DIR=../../../gtk +DOC_SOURCE_DIR = $(top_srcdir)/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. +# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml +MKDB_OPTIONS = --sgml-mode --output-format=xml --name-space=ev + +# Extra options to supply to gtkdoc-mktmpl +# e.g. MKTMPL_OPTIONS=--only-section-tmpl +# MKTMPL_OPTIONS = + +# Extra options to supply to gtkdoc-mkhtml +# Add the builddir to the HTML path so that version.xml is found +MKHTML_OPTIONS = --path="$(abs_builddir)" + +# 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 = \ + --extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/glib \ + --extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html/gio \ + --extra-dir=$(GTK_PREFIX)/share/gtk-doc/html/gdk \ + --extra-dir=$(GTK_PREFIX)/share/gtk-doc/html/gdk-pixbuf \ + --extra-dir=$(GTK_PREFIX)/share/gtk-doc/html/gtk + +# Used for dependencies. The docs will be rebuilt if any of these change. +# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h +# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c +HFILE_GLOB = $(top_srcdir)/shell/*.h +CFILE_GLOB = $(top_srcdir)/shell/*.c + +# Extra header to include when scanning, which are not under DOC_SOURCE_DIR +# e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h +# EXTRA_HFILES = $(top_builddir)/evince/ev-version.h +EXTRA_HFILES = + +# Header files to ignore when scanning. Use base file name, no paths +# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h +IGNORE_HFILES = \ + config.h \ + ev-marshal.h + +# Images to copy into HTML directory. +# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png +HTML_IMAGES = + +# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). +# e.g. content_files=running.sgml building.sgml changes-2.0.sgml +content_files = \ + version.xml + +# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded +# These files must be listed here *and* in content_files +# e.g. expand_content_files=running.sgml +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. +# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) +# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) +GTKDOC_CFLAGS = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ + -I$(top_srcdir)/shell \ + -I$(top_builddir)/shell \ + -I$(top_srcdir)/cut-n-paste/zoom-control/ \ + -I$(top_srcdir)/cut-n-paste/toolbar-editor/ \ + -I$(top_srcdir)/cut-n-paste/totem-screensaver/ \ + -I$(top_srcdir)/libdocument \ + -I$(top_builddir)/libdocument \ + -I$(top_srcdir)/libview \ + -I$(top_srcdir)/libmisc \ + -I$(top_builddir)/libview \ + -I$(top_srcdir)/properties \ + -DEVINCEDATADIR=\"$(pkgdatadir)\" \ + -DMATEDATADIR=\"$(datadir)\" \ + -DMATELOCALEDIR=\"$(datadir)/locale\" \ + -DMATEICONDIR=\""$(datadir)/pixmaps"\" \ + -DEVINCE_COMPILATION \ + $(SHELL_CFLAGS) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED) \ + $(GTK_PRINT_CFLAGS) + +FILTER_OUT = \ + $(top_builddir)/shell/main.o \ + $(top_builddir)/shell/evinced-ev-daemon.o \ + $(top_builddir)/shell/ev-convert-metadata.o + +GTKDOC_LIBS = \ + $(top_builddir)/cut-n-paste/zoom-control/libephyzoom.la \ + $(top_builddir)/cut-n-paste/toolbar-editor/libtoolbareditor.la \ + $(top_builddir)/cut-n-paste/totem-screensaver/libtotemscrsaver.la \ + $(top_builddir)/cut-n-paste/gimpcellrenderertoggle/libgimpcellrenderertoggle.la \ + $(top_builddir)/cut-n-paste/smclient/libsmclient.la \ + $(top_builddir)/properties/libevproperties.la \ + $(top_builddir)/libdocument/libevdocument.la \ + $(top_builddir)/libview/libevview.la \ + $(top_builddir)/libmisc/libevmisc.la \ + $(SHELL_LIBS) \ + $(GTK_PRINT_LIBS) \ + $(filter-out $(FILTER_OUT),$(wildcard $(top_builddir)/shell/*.o)) + +# 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 += \ + version.xml.in + +# 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 += + +# Comment this out if you want your docs-status tested during 'make check' +if ENABLE_GTK_DOC +#TESTS_ENVIRONMENT = cd $(srcsrc) && +#TESTS = $(GTKDOC_CHECK) +endif + +-include $(top_srcdir)/git.mk diff --git a/help/reference/shell/evince-docs.xml b/help/reference/shell/evince-docs.xml new file mode 100644 index 00000000..a08acf76 --- /dev/null +++ b/help/reference/shell/evince-docs.xml @@ -0,0 +1,163 @@ +<?xml version="1.0"?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" + "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" +[ + <!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'"> + <!ENTITY version SYSTEM "version.xml"> +]> +<book id="evince"> + <!-- + Copyright © 2009, 2010 Christian Persch + + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU General Public License, Version 2 + as published by the Free Software Foundation; or (at your option) any + later version. + + A copy of the license is included in the COPYING file. + --> + <bookinfo> + <title>Evince Programmer's Reference Manual</title> + <releaseinfo> + For Evince version &version;. + The latest version of this documentation can be found on-line at the + <ulink role="online-location" url="http://library.mate.org/devel/evince/index.html">MATE Library</ulink>. + </releaseinfo> + + <copyright> + <year>2007</year> + <year>2008</year> + <year>2009</year> + <holder>Nickolay V. Shmyrev</holder> + </copyright> + + <copyright> + <year>2008</year> + <year>2009</year> + <year>2010</year> + <holder>Carlos Garcia Campos</holder> + </copyright> + + <copyright> + <year>2009</year> + <year>2010</year> + <holder>Christian Persch</holder> + </copyright> + + <legalnotice> + <para> + Permission is granted to copy, distribute and/or modify this document + under the terms of the <citetitle>GNU General Public Licence</citetitle> + published by the Free Software Foundation; either version 2 of the License, + or (at your option) any later version. + + You may obtain a copy of the <citetitle>GNU General Public Licence</citetitle> + from the Free Software Foundation at + <ulink type="http" url="http://www.gnu.org/licences/">GNU Licences web site</ulink> + or by writing to: + + <address> + The Free Software Foundation, Inc., + <street>51 Franklin St</street> – Fifth Floor, + <city>Boston</city>, <state>MA</state> <postcode>02110-1301</postcode>, + <country>USA</country> + </address> + </para> + </legalnotice> + </bookinfo> + + <part id="evince-frontend"> + <title>Frontend</title> + <partintro> + <para> + Evince frontend. + </para> + </partintro> + + <xi:include href="xml/ev-sidebar-attachments.xml"/> + <xi:include href="xml/ev-properties-dialog.xml"/> + <xi:include href="xml/ev-properties-fonts.xml"/> + <xi:include href="xml/ev-sidebar-page.xml"/> + <xi:include href="xml/ev-open-recent-action.xml"/> + <xi:include href="xml/ev-application.xml"/> + <xi:include href="xml/ev-sidebar-thumbnails.xml"/> + <xi:include href="xml/ev-sidebar-links.xml"/> + <xi:include href="xml/ev-sidebar.xml"/> + <xi:include href="xml/ev-properties-license.xml"/> + <xi:include href="xml/ev-message-area.xml"/> + <xi:include href="xml/ev-progress-message-area.xml"/> + <xi:include href="xml/ev-metadata.xml"/> + <xi:include href="xml/ev-window.xml"/> + <xi:include href="xml/ev-history.xml"/> + <xi:include href="xml/ev-sidebar-layers.xml"/> + <xi:include href="xml/ev-password-view.xml"/> + <xi:include href="xml/eggfindbar.xml"/> + <xi:include href="xml/ev-media-player-keys.xml"/> + <xi:include href="xml/ev-navigation-action.xml"/> + <xi:include href="xml/ev-file-monitor.xml"/> + <xi:include href="xml/ev-page-action.xml"/> + <xi:include href="xml/ev-window-title.xml"/> + <xi:include href="xml/ev-navigation-action-widget.xml"/> + <xi:include href="xml/ev-application-service.xml"/> + <xi:include href="xml/ev-keyring.xml"/> + <xi:include href="xml/ev-utils.xml"/> + <xi:include href="xml/ev-page-action-widget.xml"/> + </part> + + <chapter id="object-tree"> + <title>Object Hierarchy</title> + <xi:include href="xml/tree_index.sgml"/> + </chapter> + <index id="api-index-full"> + <title>API Index</title> + <xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include> + </index> + <!-- + <index id="api-index-deprecated" role="deprecated"> + <title>Index of deprecated symbols</title> + <xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include> + </index> + --> + <!-- + <index id="api-index-2-30" role="2.30"> + <title>Index of new symbols in 2.30</title> + <xi:include href="xml/api-index-2.30.xml"><xi:fallback /></xi:include> + </index> + --> + + <xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include> + + <appendix id="licence"> + <title>Licence</title> + + <para> + This library is free software; you can redistribute it and/or + modify it under the terms of the <citetitle>GNU General Public + Licence</citetitle> as published by the Free Software Foundation; either + version 2 of the Licence, or (at your option) any later version. + </para> + + <para> + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + <citetitle>GNU General Public Licence</citetitle> for + more details. + </para> + + <para> + You may obtain a copy of the <citetitle>GNU General Public Licence</citetitle> + from the Free Software Foundation at + <ulink type="http" url="http://www.gnu.org/licences/">GNU Licences web site</ulink> + or by writing to: + + <address> + The Free Software Foundation, Inc., + <street>51 Franklin St</street> – Fifth Floor, + <city>Boston</city>, <state>MA</state> <postcode>02110-1301</postcode>, + <country>USA</country> + </address> + </para> + </appendix> + +</book> diff --git a/help/reference/shell/evince-overrides.txt b/help/reference/shell/evince-overrides.txt new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/help/reference/shell/evince-overrides.txt diff --git a/help/reference/shell/evince-sections.txt b/help/reference/shell/evince-sections.txt new file mode 100644 index 00000000..a775f7e2 --- /dev/null +++ b/help/reference/shell/evince-sections.txt @@ -0,0 +1,472 @@ +<SECTION> +<FILE>ev-sidebar-attachments</FILE> +<TITLE>EvSidebarAttachments</TITLE> +EvSidebarAttachments +EvSidebarAttachmentsClass +EvSidebarAttachmentsPrivate +ev_sidebar_attachments_new +<SUBSECTION Standard> +EV_SIDEBAR_ATTACHMENTS +EV_IS_SIDEBAR_ATTACHMENTS +EV_TYPE_SIDEBAR_ATTACHMENTS +ev_sidebar_attachments_get_type +EV_SIDEBAR_ATTACHMENTS_CLASS +EV_IS_SIDEBAR_ATTACHMENTS_CLASS +EV_SIDEBAR_ATTACHMENTS_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-properties-dialog</FILE> +EvPropertiesDialog +EvPropertiesDialogClass +EvPropertiesDialogPrivate +ev_properties_dialog_new +ev_properties_dialog_set_document +<SUBSECTION Standard> +EV_PROPERTIES_DIALOG +EV_IS_PROPERTIES_DIALOG +EV_TYPE_PROPERTIES_DIALOG +ev_properties_dialog_get_type +EV_PROPERTIES_DIALOG_CLASS +EV_IS_PROPERTIES_DIALOG_CLASS +EV_PROPERTIES_DIALOG_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-properties-fonts</FILE> +EvPropertiesFonts +EvPropertiesFontsClass +EvPropertiesFontsPrivate +EV_TYPE_PROPERTIES_FONTS +EV_PROPERTIES_FONTS +EV_PROPERTIES_FONTS_CLASS +EV_PROPERTIES_FONTS_GET_CLASS +ev_properties_fonts_new +ev_properties_fonts_set_document +<SUBSECTION Standard> +EV_IS_PROPERTIES +ev_properties_fonts_get_type +EV_IS_PROPERTIES_CLASS +</SECTION> + +<SECTION> +<FILE>ev-sidebar-page</FILE> +<TITLE>EvSidebarPage</TITLE> +EV_SIDEBAR_PAGE_IFACE +EV_IS_SIDEBAR_PAGE_IFACE +EvSidebarPage +EvSidebarPageIface +ev_sidebar_page_support_document +ev_sidebar_page_set_model +ev_sidebar_page_get_label +<SUBSECTION Standard> +EV_SIDEBAR_PAGE +EV_IS_SIDEBAR_PAGE +EV_TYPE_SIDEBAR_PAGE +ev_sidebar_page_get_type +EV_SIDEBAR_PAGE_GET_IFACE +</SECTION> + +<SECTION> +<FILE>ev-open-recent-action</FILE> +<TITLE>EvOpenRecentAction</TITLE> +EvOpenRecentAction +EvOpenRecentActionClass +<SUBSECTION Standard> +EV_OPEN_RECENT_ACTION +EV_IS_OPEN_RECENT_ACTION +EV_TYPE_OPEN_RECENT_ACTION +ev_open_recent_action_get_type +EV_OPEN_RECENT_ACTION_CLASS +EV_IS_OPEN_RECENT_ACTION_CLASS +EV_OPEN_RECENT_ACTION_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-application</FILE> +EvApplication +EvApplicationClass +EV_APP +ev_application_get_instance +ev_application_shutdown +ev_application_load_session +ev_application_open_window +ev_application_open_uri_at_dest +ev_application_open_uri_list +ev_application_has_window +ev_application_get_uri +ev_application_get_media_keys +ev_application_set_filechooser_uri +ev_application_get_filechooser_uri +ev_application_screensaver_enable +ev_application_screensaver_disable +ev_application_get_dot_dir +ev_application_get_data_dir +<SUBSECTION Standard> +EV_APPLICATION +EV_IS_APPLICATION +EV_TYPE_APPLICATION +ev_application_get_type +EV_APPLICATION_CLASS +EV_IS_APPLICATION_CLASS +EV_APPLICATION_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-sidebar-thumbnails</FILE> +<TITLE>EvSidebarThumbnails</TITLE> +EvSidebarThumbnails +EvSidebarThumbnailsClass +EvSidebarThumbnailsPrivate +ev_sidebar_thumbnails_new +<SUBSECTION Standard> +EV_SIDEBAR_THUMBNAILS +EV_IS_SIDEBAR_THUMBNAILS +EV_TYPE_SIDEBAR_THUMBNAILS +ev_sidebar_thumbnails_get_type +EV_SIDEBAR_THUMBNAILS_CLASS +EV_IS_SIDEBAR_THUMBNAILS_CLASS +EV_SIDEBAR_THUMBNAILS_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-sidebar-links</FILE> +<TITLE>EvSidebarLinks</TITLE> +EvSidebarLinks +EvSidebarLinksClass +EvSidebarLinksPrivate +ev_sidebar_links_new +<SUBSECTION Standard> +EV_SIDEBAR_LINKS +EV_IS_SIDEBAR_LINKS +EV_TYPE_SIDEBAR_LINKS +ev_sidebar_links_get_type +EV_SIDEBAR_LINKS_CLASS +EV_IS_SIDEBAR_LINKS_CLASS +EV_SIDEBAR_LINKS_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-sidebar</FILE> +<TITLE>EvSidebar</TITLE> +EvSidebar +EvSidebarClass +EvSidebarPrivate +ev_sidebar_new +ev_sidebar_add_page +ev_sidebar_set_page +ev_sidebar_set_model +<SUBSECTION Standard> +EV_SIDEBAR +EV_IS_SIDEBAR +EV_TYPE_SIDEBAR +ev_sidebar_get_type +EV_SIDEBAR_CLASS +EV_IS_SIDEBAR_CLASS +EV_SIDEBAR_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-properties-license</FILE> +EvPropertiesLicense +EvPropertiesLicenseClass +EvPropertiesLicensePrivate +ev_properties_license_new +ev_properties_license_set_license +<SUBSECTION Standard> +EV_PROPERTIES_LICENSE +EV_IS_PROPERTIES_LICENSE +EV_TYPE_PROPERTIES_LICENSE +ev_properties_license_get_type +EV_PROPERTIES_LICENSE_CLASS +EV_IS_PROPERTIES_LICENSE_CLASS +EV_PROPERTIES_LICENSE_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-message-area</FILE> +<TITLE>EvMessageArea</TITLE> +EvMessageArea +EvMessageAreaClass +EvMessageAreaPrivate +ev_message_area_new +ev_message_area_set_image +ev_message_area_set_image_from_stock +ev_message_area_set_text +ev_message_area_set_secondary_text +<SUBSECTION Standard> +EV_MESSAGE_AREA +EV_IS_MESSAGE_AREA +EV_TYPE_MESSAGE_AREA +ev_message_area_get_type +EV_MESSAGE_AREA_CLASS +EV_IS_MESSAGE_AREA_CLASS +EV_MESSAGE_AREA_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-progress-message-area</FILE> +<TITLE>EvProgressMessageArea</TITLE> +EvProgressMessageArea +EvProgressMessageAreaClass +EvProgressMessageAreaPrivate +ev_progress_message_area_new +ev_progress_message_area_set_status +ev_progress_message_area_set_fraction +<SUBSECTION Standard> +EV_PROGRESS_MESSAGE_AREA +EV_IS_PROGRESS_MESSAGE_AREA +EV_TYPE_PROGRESS_MESSAGE_AREA +ev_progress_message_area_get_type +EV_PROGRESS_MESSAGE_AREA_CLASS +EV_IS_PROGRESS_MESSAGE_AREA_CLASS +EV_PROGRESS_MESSAGE_AREA_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-metadata</FILE> +EvMetadata +EvMetadataClass +ev_metadata_new +ev_metadata_get_string +ev_metadata_set_string +ev_metadata_get_int +ev_metadata_set_int +ev_metadata_get_double +ev_metadata_set_double +ev_metadata_get_boolean +ev_metadata_set_boolean +ev_is_metadata_supported_for_file +<SUBSECTION Standard> +EV_METADATA +EV_IS_METADATA +EV_TYPE_METADATA +ev_metadata_get_type +EV_METADATA_CLASS +</SECTION> + +<SECTION> +<FILE>ev-window</FILE> +<TITLE>EvWindow</TITLE> +EvWindowRunMode +EvPrintRange +EvPrintPageSet +EvWindow +EvWindowClass +EvWindowPrivate +ev_window_new +ev_window_get_uri +ev_window_open_uri +ev_window_open_document +ev_window_is_empty +ev_window_print_range +<SUBSECTION Standard> +EV_WINDOW +EV_IS_WINDOW +EV_TYPE_WINDOW +ev_window_get_type +EV_WINDOW_CLASS +EV_IS_WINDOW_CLASS +EV_WINDOW_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-history</FILE> +<TITLE>EvHistory</TITLE> +EvHistory +EvHistoryPrivate +EvHistoryClass +ev_history_new +ev_history_add_link +ev_history_get_link_nth +ev_history_get_n_links +<SUBSECTION Standard> +EV_HISTORY +EV_IS_HISTORY +EV_TYPE_HISTORY +ev_history_get_type +EV_HISTORY_CLASS +EV_IS_HISTORY_CLASS +EV_HISTORY_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-sidebar-layers</FILE> +<TITLE>EvSidebarLayers</TITLE> +EvSidebarLayers +EvSidebarLayersClass +EvSidebarLayersPrivate +ev_sidebar_layers_new +<SUBSECTION Standard> +EV_SIDEBAR_LAYERS +EV_IS_SIDEBAR_LAYERS +EV_TYPE_SIDEBAR_LAYERS +ev_sidebar_layers_get_type +EV_SIDEBAR_LAYERS_CLASS +EV_IS_SIDEBAR_LAYERS_CLASS +EV_SIDEBAR_LAYERS_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-password-view</FILE> +<TITLE>EvPasswordView</TITLE> +EvPasswordView +EvPasswordViewClass +EvPasswordViewPrivate +ev_password_view_new +ev_password_view_set_uri +ev_password_view_ask_password +ev_password_view_get_password +ev_password_view_get_password_save_flags +<SUBSECTION Standard> +EV_PASSWORD_VIEW +EV_IS_PASSWORD_VIEW +EV_TYPE_PASSWORD_VIEW +ev_password_view_get_type +</SECTION> + +<SECTION> +<FILE>eggfindbar</FILE> +<TITLE>EggFindBar</TITLE> +EggFindBar +EggFindBarClass +EggFindBarPrivate +egg_find_bar_new +egg_find_bar_set_search_string +egg_find_bar_get_search_string +egg_find_bar_set_case_sensitive +egg_find_bar_get_case_sensitive +egg_find_bar_get_all_matches_color +egg_find_bar_get_current_match_color +egg_find_bar_set_status_text +<SUBSECTION Standard> +EGG_FIND_BAR +EGG_IS_FIND_BAR +EGG_TYPE_FIND_BAR +egg_find_bar_get_type +EGG_FIND_BAR_CLASS +EGG_IS_FIND_BAR_CLASS +EGG_FIND_BAR_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-media-player-keys</FILE> +EvMediaPlayerKeys +EvMediaPlayerKeysClass +ev_media_player_keys_new +ev_media_player_keys_focused +<SUBSECTION Standard> +EV_MEDIA_PLAYER_KEYS +EV_IS_MEDIA_PLAYER_KEYS +EV_TYPE_MEDIA_PLAYER_KEYS +ev_media_player_keys_get_type +EV_MEDIA_PLAYER_KEYS_CLASS +EV_IS_MEDIA_PLAYER_KEYS_CLASS +EV_MEDIA_PLAYER_KEYS_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-navigation-action</FILE> +<TITLE>EvNavigationAction</TITLE> +EvNavigationAction +EvNavigationActionPrivate +EvNavigationActionClass +ev_navigation_action_set_history +<SUBSECTION Standard> +EV_NAVIGATION_ACTION +EV_IS_NAVIGATION_ACTION +EV_TYPE_NAVIGATION_ACTION +ev_navigation_action_get_type +EV_NAVIGATION_ACTION_CLASS +EV_IS_NAVIGATION_ACTION_CLASS +EV_NAVIGATION_ACTION_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-file-monitor</FILE> +<TITLE>EvFileMonitor</TITLE> +EvFileMonitor +EvFileMonitorClass +EvFileMonitorPrivate +ev_file_monitor_new +<SUBSECTION Standard> +EV_FILE_MONITOR +EV_IS_FILE_MONITOR +EV_TYPE_FILE_MONITOR +ev_file_monitor_get_type +EV_FILE_MONITOR_CLASS +EV_IS_FILE_MONITOR_CLASS +EV_FILE_MONITOR_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-page-action</FILE> +<TITLE>EvPageAction</TITLE> +EvPageAction +EvPageActionPrivate +EvPageActionClass +ev_page_action_set_model +ev_page_action_set_links_model +ev_page_action_grab_focus +<SUBSECTION Standard> +EV_PAGE_ACTION +EV_IS_PAGE_ACTION +EV_TYPE_PAGE_ACTION +ev_page_action_get_type +EV_PAGE_ACTION_CLASS +EV_IS_PAGE_ACTION_CLASS +EV_PAGE_ACTION_GET_CLASS +</SECTION> + +<SECTION> +<FILE>ev-window-title</FILE> +EvWindowTitle +EvWindowTitleType +ev_window_title_new +ev_window_title_set_type +ev_window_title_set_document +ev_window_title_set_uri +ev_window_title_free +</SECTION> + +<SECTION> +<FILE>ev-navigation-action-widget</FILE> +<TITLE>EvNavigationActionWidget</TITLE> +EV_TYPE_NAVIGATION_ACTION_WIDGET +EV_NAVIGATION_ACTION_WIDGET +EvNavigationActionWidget +EvNavigationActionWidgetClass +ev_navigation_action_widget_get_type +ev_navigation_action_widget_set_menu +</SECTION> + +<SECTION> +<FILE>ev-keyring</FILE> +ev_keyring_is_available +ev_keyring_lookup_password +ev_keyring_save_password +</SECTION> + +<SECTION> +<FILE>ev-utils</FILE> +ev_pixbuf_add_shadow +ev_print_region_contents +ev_gui_menu_position_tree_selection +get_num_monitors +get_screen_dpi +file_chooser_dialog_add_writable_pixbuf_formats +get_gdk_pixbuf_format_by_extension +</SECTION> + +<SECTION> +<FILE>ev-page-action-widget</FILE> +<TITLE>EvPageActionWidget</TITLE> +EV_TYPE_PAGE_ACTION_WIDGET +EV_PAGE_ACTION_WIDGET +EvPageActionWidget +EvPageActionWidgetClass +ev_page_action_widget_get_type +ev_page_action_widget_update_links_model +ev_page_action_widget_set_model +ev_page_action_widget_grab_focus +</SECTION> diff --git a/help/reference/shell/evince.types b/help/reference/shell/evince.types new file mode 100644 index 00000000..dea7db50 --- /dev/null +++ b/help/reference/shell/evince.types @@ -0,0 +1,24 @@ +egg_find_bar_get_type +ev_application_get_type +ev_file_monitor_get_type +ev_history_get_type +ev_media_player_keys_get_type +ev_message_area_get_type +ev_metadata_get_type +ev_navigation_action_get_type +ev_navigation_action_widget_get_type +ev_open_recent_action_get_type +ev_page_action_get_type +ev_page_action_widget_get_type +ev_password_view_get_type +ev_progress_message_area_get_type +ev_properties_dialog_get_type +ev_properties_fonts_get_type +ev_properties_license_get_type +ev_sidebar_attachments_get_type +ev_sidebar_get_type +ev_sidebar_layers_get_type +ev_sidebar_links_get_type +ev_sidebar_page_get_type +ev_sidebar_thumbnails_get_type +ev_window_get_type diff --git a/help/reference/shell/version.xml.in b/help/reference/shell/version.xml.in new file mode 100644 index 00000000..27323dad --- /dev/null +++ b/help/reference/shell/version.xml.in @@ -0,0 +1 @@ +@VERSION@
\ No newline at end of file |