From f6ce926719943751cf65cacde7fae050593eb2d6 Mon Sep 17 00:00:00 2001 From: Perberos Date: Wed, 9 Nov 2011 18:17:43 -0300 Subject: inicial --- help/reference/shell/Makefile.am | 150 ++++++++++ help/reference/shell/evince-docs.xml | 163 +++++++++++ help/reference/shell/evince-overrides.txt | 0 help/reference/shell/evince-sections.txt | 472 ++++++++++++++++++++++++++++++ help/reference/shell/evince.types | 24 ++ help/reference/shell/version.xml.in | 1 + 6 files changed, 810 insertions(+) create mode 100644 help/reference/shell/Makefile.am create mode 100644 help/reference/shell/evince-docs.xml create mode 100644 help/reference/shell/evince-overrides.txt create mode 100644 help/reference/shell/evince-sections.txt create mode 100644 help/reference/shell/evince.types create mode 100644 help/reference/shell/version.xml.in (limited to 'help/reference/shell') 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 @@ + + + +]> + + + + Evince Programmer's Reference Manual + + For Evince version &version;. + The latest version of this documentation can be found on-line at the + MATE Library. + + + + 2007 + 2008 + 2009 + Nickolay V. Shmyrev + + + + 2008 + 2009 + 2010 + Carlos Garcia Campos + + + + 2009 + 2010 + Christian Persch + + + + + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU General Public Licence + 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 GNU General Public Licence + from the Free Software Foundation at + GNU Licences web site + or by writing to: + +
+ The Free Software Foundation, Inc., + 51 Franklin St – Fifth Floor, + Boston, MA 02110-1301, + USA +
+
+
+
+ + + Frontend + + + Evince frontend. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Object Hierarchy + + + + API Index + + + + + + + + + Licence + + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public + Licence as published by the Free Software Foundation; either + version 2 of the Licence, or (at your option) any later version. + + + + 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 + GNU General Public Licence for + more details. + + + + You may obtain a copy of the GNU General Public Licence + from the Free Software Foundation at + GNU Licences web site + or by writing to: + +
+ The Free Software Foundation, Inc., + 51 Franklin St – Fifth Floor, + Boston, MA 02110-1301, + USA +
+
+
+ +
diff --git a/help/reference/shell/evince-overrides.txt b/help/reference/shell/evince-overrides.txt new file mode 100644 index 00000000..e69de29b 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 @@ +
+ev-sidebar-attachments +EvSidebarAttachments +EvSidebarAttachments +EvSidebarAttachmentsClass +EvSidebarAttachmentsPrivate +ev_sidebar_attachments_new + +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 +
+ +
+ev-properties-dialog +EvPropertiesDialog +EvPropertiesDialogClass +EvPropertiesDialogPrivate +ev_properties_dialog_new +ev_properties_dialog_set_document + +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 +
+ +
+ev-properties-fonts +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 + +EV_IS_PROPERTIES +ev_properties_fonts_get_type +EV_IS_PROPERTIES_CLASS +
+ +
+ev-sidebar-page +EvSidebarPage +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 + +EV_SIDEBAR_PAGE +EV_IS_SIDEBAR_PAGE +EV_TYPE_SIDEBAR_PAGE +ev_sidebar_page_get_type +EV_SIDEBAR_PAGE_GET_IFACE +
+ +
+ev-open-recent-action +EvOpenRecentAction +EvOpenRecentAction +EvOpenRecentActionClass + +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 +
+ +
+ev-application +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 + +EV_APPLICATION +EV_IS_APPLICATION +EV_TYPE_APPLICATION +ev_application_get_type +EV_APPLICATION_CLASS +EV_IS_APPLICATION_CLASS +EV_APPLICATION_GET_CLASS +
+ +
+ev-sidebar-thumbnails +EvSidebarThumbnails +EvSidebarThumbnails +EvSidebarThumbnailsClass +EvSidebarThumbnailsPrivate +ev_sidebar_thumbnails_new + +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 +
+ +
+ev-sidebar-links +EvSidebarLinks +EvSidebarLinks +EvSidebarLinksClass +EvSidebarLinksPrivate +ev_sidebar_links_new + +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 +
+ +
+ev-sidebar +EvSidebar +EvSidebar +EvSidebarClass +EvSidebarPrivate +ev_sidebar_new +ev_sidebar_add_page +ev_sidebar_set_page +ev_sidebar_set_model + +EV_SIDEBAR +EV_IS_SIDEBAR +EV_TYPE_SIDEBAR +ev_sidebar_get_type +EV_SIDEBAR_CLASS +EV_IS_SIDEBAR_CLASS +EV_SIDEBAR_GET_CLASS +
+ +
+ev-properties-license +EvPropertiesLicense +EvPropertiesLicenseClass +EvPropertiesLicensePrivate +ev_properties_license_new +ev_properties_license_set_license + +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 +
+ +
+ev-message-area +EvMessageArea +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 + +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 +
+ +
+ev-progress-message-area +EvProgressMessageArea +EvProgressMessageArea +EvProgressMessageAreaClass +EvProgressMessageAreaPrivate +ev_progress_message_area_new +ev_progress_message_area_set_status +ev_progress_message_area_set_fraction + +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 +
+ +
+ev-metadata +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 + +EV_METADATA +EV_IS_METADATA +EV_TYPE_METADATA +ev_metadata_get_type +EV_METADATA_CLASS +
+ +
+ev-window +EvWindow +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 + +EV_WINDOW +EV_IS_WINDOW +EV_TYPE_WINDOW +ev_window_get_type +EV_WINDOW_CLASS +EV_IS_WINDOW_CLASS +EV_WINDOW_GET_CLASS +
+ +
+ev-history +EvHistory +EvHistory +EvHistoryPrivate +EvHistoryClass +ev_history_new +ev_history_add_link +ev_history_get_link_nth +ev_history_get_n_links + +EV_HISTORY +EV_IS_HISTORY +EV_TYPE_HISTORY +ev_history_get_type +EV_HISTORY_CLASS +EV_IS_HISTORY_CLASS +EV_HISTORY_GET_CLASS +
+ +
+ev-sidebar-layers +EvSidebarLayers +EvSidebarLayers +EvSidebarLayersClass +EvSidebarLayersPrivate +ev_sidebar_layers_new + +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 +
+ +
+ev-password-view +EvPasswordView +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 + +EV_PASSWORD_VIEW +EV_IS_PASSWORD_VIEW +EV_TYPE_PASSWORD_VIEW +ev_password_view_get_type +
+ +
+eggfindbar +EggFindBar +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 + +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 +
+ +
+ev-media-player-keys +EvMediaPlayerKeys +EvMediaPlayerKeysClass +ev_media_player_keys_new +ev_media_player_keys_focused + +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 +
+ +
+ev-navigation-action +EvNavigationAction +EvNavigationAction +EvNavigationActionPrivate +EvNavigationActionClass +ev_navigation_action_set_history + +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 +
+ +
+ev-file-monitor +EvFileMonitor +EvFileMonitor +EvFileMonitorClass +EvFileMonitorPrivate +ev_file_monitor_new + +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 +
+ +
+ev-page-action +EvPageAction +EvPageAction +EvPageActionPrivate +EvPageActionClass +ev_page_action_set_model +ev_page_action_set_links_model +ev_page_action_grab_focus + +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 +
+ +
+ev-window-title +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 +
+ +
+ev-navigation-action-widget +EvNavigationActionWidget +EV_TYPE_NAVIGATION_ACTION_WIDGET +EV_NAVIGATION_ACTION_WIDGET +EvNavigationActionWidget +EvNavigationActionWidgetClass +ev_navigation_action_widget_get_type +ev_navigation_action_widget_set_menu +
+ +
+ev-keyring +ev_keyring_is_available +ev_keyring_lookup_password +ev_keyring_save_password +
+ +
+ev-utils +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 +
+ +
+ev-page-action-widget +EvPageActionWidget +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 +
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 -- cgit v1.2.1