From 20825b08acb0fffd365b8f2318f57343d5140fde Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Thu, 9 May 2013 14:19:40 +0200 Subject: Fixes for make dist --- Makefile.am | 37 +- configure.ac | 4 +- help/Makefile.am | 9 - .../libdocument/libatrildocument-docs.xml | 191 +++++ .../libdocument/libatrildocument-overrides.txt | 0 .../libdocument/libatrildocument-sections.txt | 781 +++++++++++++++++++++ help/reference/libdocument/libatrildocument.types | 55 ++ help/reference/libdocument/libevdocument-docs.xml | 191 ----- .../libdocument/libevdocument-overrides.txt | 0 .../libdocument/libevdocument-sections.txt | 781 --------------------- help/reference/libdocument/libevdocument.types | 55 -- help/reference/libview/libatrilview-docs.xml | 145 ++++ help/reference/libview/libatrilview-overrides.txt | 0 help/reference/libview/libatrilview-sections.txt | 338 +++++++++ help/reference/libview/libatrilview.types | 29 + help/reference/libview/libevview-docs.xml | 145 ---- help/reference/libview/libevview-overrides.txt | 0 help/reference/libview/libevview-sections.txt | 338 --------- help/reference/libview/libevview.types | 29 - po/POTFILES.in | 5 - 20 files changed, 1556 insertions(+), 1577 deletions(-) create mode 100644 help/reference/libdocument/libatrildocument-docs.xml create mode 100644 help/reference/libdocument/libatrildocument-overrides.txt create mode 100644 help/reference/libdocument/libatrildocument-sections.txt create mode 100644 help/reference/libdocument/libatrildocument.types delete mode 100644 help/reference/libdocument/libevdocument-docs.xml delete mode 100644 help/reference/libdocument/libevdocument-overrides.txt delete mode 100644 help/reference/libdocument/libevdocument-sections.txt delete mode 100644 help/reference/libdocument/libevdocument.types create mode 100644 help/reference/libview/libatrilview-docs.xml create mode 100644 help/reference/libview/libatrilview-overrides.txt create mode 100644 help/reference/libview/libatrilview-sections.txt create mode 100644 help/reference/libview/libatrilview.types delete mode 100644 help/reference/libview/libevview-docs.xml delete mode 100644 help/reference/libview/libevview-overrides.txt delete mode 100644 help/reference/libview/libevview-sections.txt delete mode 100644 help/reference/libview/libevview.types diff --git a/Makefile.am b/Makefile.am index 7370019a..57e68190 100644 --- a/Makefile.am +++ b/Makefile.am @@ -51,8 +51,7 @@ EXTRA_DIST = \ $(intltool_extra) \ $(header_DATA) \ autogen.sh \ - mate-doc-utils.make \ - MAINTAINERS + mate-doc-utils.make DISTCLEANFILES = \ mate-doc-utils.make \ @@ -86,7 +85,7 @@ MAINTAINERCLEANFILES = \ `find "$(srcdir)" -type f -name Makefile.in -print` DISTCHECK_CONFIGURE_FLAGS = \ - --disable-schemas-install \ + --disable-schemas-compile \ --disable-scrollkeeper \ --enable-gtk-doc \ --disable-caja \ @@ -96,24 +95,18 @@ DISTCHECK_CONFIGURE_FLAGS = \ # Ignore scrollkeeper issues for now. @#*$& scrollkeeper distuninstallcheck_listfiles = find . -type f -print | grep -v scrollkeeper | grep -v /share/mate/help/ | grep -v \.omf -distclean-local: \ - if test "$(srcdir)" = "."; then :; else \ - rm -f ChangeLog; \ - fi - -ChangeLog: \ - $(AM_V_GEN) if test -d "$(srcdir)/.git"; then \ - (GIT_DIR=$(top_srcdir)/.git ./missing --run git log -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \ - && mv -f $@.tmp $@ \ - || ($(RM) $@.tmp; \ - echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ - (test -f $@ || echo git log is required to generate this file >> $@)); \ - else \ - test -f $@ || \ - (echo A git checkout and git log is required to generate ChangeLog >&2 && \ - echo A git checkout and git log is required to generate this file >> $@); \ - fi - -.PHONY: ChangeLog +dist-hook: + @if test -d "$(srcdir)/.git"; \ + then \ + echo Creating ChangeLog && \ + ( cd "$(top_srcdir)" && \ + echo '# Generated by Makefile. Do not edit.'; echo; \ + $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \ + && mv -f ChangeLog.tmp $(distdir)/ChangeLog \ + || ( rm -f ChangeLog.tmp ; \ + echo Failed to generate ChangeLog >&2 ); \ + else \ + echo A git clone is required to generate a ChangeLog >&2; \ + fi -include $(top_srcdir)/git.mk diff --git a/configure.ac b/configure.ac index 20c48281..72690683 100644 --- a/configure.ac +++ b/configure.ac @@ -40,8 +40,8 @@ m4_define([ev_binary_version], [ev_document_lt_current]) # ***************************************************************************** AC_PREREQ([2.57]) -AC_INIT([Atril], [ev_version], [https://github.com/perberos/mate-desktop-environment], [atril]) -AM_INIT_AUTOMAKE([1.10 foreign dist-bzip2 no-dist-gzip]) +AC_INIT([Atril], [ev_version], [http://www.mate-desktop.org/], [atril]) +AM_INIT_AUTOMAKE([1.10 foreign dist-xz no-dist-gzip]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/help/Makefile.am b/help/Makefile.am index 645da450..ba58c53c 100644 --- a/help/Makefile.am +++ b/help/Makefile.am @@ -14,13 +14,4 @@ DOC_LINGUAS = bg ca cs de el en_GB es eu fi fr it ja nl oc pt_BR ru sl sr sv uk -include $(top_srcdir)/git.mk -DOCDIR = $(DESTDIR)$(docdir) - endif - -htmldir=$(datadir)/doc/mate/atril/ - -html_DATA = C/atril.html \ - C/figures/atril_start_window.png - -EXTRA_DIST = $(html_DATA) diff --git a/help/reference/libdocument/libatrildocument-docs.xml b/help/reference/libdocument/libatrildocument-docs.xml new file mode 100644 index 00000000..f6867fc7 --- /dev/null +++ b/help/reference/libdocument/libatrildocument-docs.xml @@ -0,0 +1,191 @@ + + + +]> + + + + Atril Document Library Reference Manual + + For Atril 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 +
+
+
+
+ + + Document Interfaces + + + Provides support for writing Atril backends. + + + + + + + + + + + + + + + + + + + + + + + + + Document Data + + + Helper objects related to documents like attachments, links and + images, etc. + + + + + + + + + + + + + + + + + + + Helper Functions + + + Helper functions common for backend implementations, and for libevdocument library users. + + + + + + + + + + + + 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/libdocument/libatrildocument-overrides.txt b/help/reference/libdocument/libatrildocument-overrides.txt new file mode 100644 index 00000000..e69de29b diff --git a/help/reference/libdocument/libatrildocument-sections.txt b/help/reference/libdocument/libatrildocument-sections.txt new file mode 100644 index 00000000..88d3db2e --- /dev/null +++ b/help/reference/libdocument/libatrildocument-sections.txt @@ -0,0 +1,781 @@ +
+ev-layer +EvLayer +EvLayer +EvLayerClass +EvLayerPrivate +ev_layer_new +ev_layer_get_id +ev_layer_is_parent +ev_layer_get_rb_group + +EV_LAYER +EV_IS_LAYER +EV_TYPE_LAYER +ev_layer_get_type +EV_LAYER_CLASS +EV_IS_LAYER_CLASS +EV_LAYER_GET_CLASS +
+ +
+ev-document-thumbnails +EvDocumentThumbnails +EV_DOCUMENT_THUMBNAILS_IFACE +EV_IS_DOCUMENT_THUMBNAILS_IFACE +EvDocumentThumbnails +EvDocumentThumbnailsIface +ev_document_thumbnails_get_thumbnail +ev_document_thumbnails_get_dimensions + +EV_DOCUMENT_THUMBNAILS +EV_IS_DOCUMENT_THUMBNAILS +EV_TYPE_DOCUMENT_THUMBNAILS +ev_document_thumbnails_get_type +EV_DOCUMENT_THUMBNAILS_GET_IFACE +
+ +
+ev-file-exporter +EvFileExporter +EvFileExporterFormat +EvFileExporterCapabilities +EvFileExporterContext +EV_FILE_EXPORTER_IFACE +EV_IS_FILE_EXPORTER_IFACE +EvFileExporter +EvFileExporterIface +ev_file_exporter_begin +ev_file_exporter_begin_page +ev_file_exporter_do_page +ev_file_exporter_end_page +ev_file_exporter_end +ev_file_exporter_get_capabilities + +ev_file_exporter_format_get_type +EV_TYPE_FILE_EXPORTER_FORMAT +ev_file_exporter_capabilities_get_type +EV_TYPE_FILE_EXPORTER_CAPABILITIES +EV_FILE_EXPORTER +EV_IS_FILE_EXPORTER +EV_TYPE_FILE_EXPORTER +ev_file_exporter_get_type +EV_FILE_EXPORTER_GET_IFACE +
+ +
+ev-document-forms +EvDocumentForms +EV_DOCUMENT_FORMS_IFACE +EV_IS_DOCUMENT_FORMS_IFACE +EvDocumentForms +EvDocumentFormsIface +ev_document_forms_get_form_fields +ev_document_forms_form_field_text_get_text +ev_document_forms_form_field_text_set_text +ev_document_forms_form_field_button_get_state +ev_document_forms_form_field_button_set_state +ev_document_forms_form_field_choice_get_item +ev_document_forms_form_field_choice_get_n_items +ev_document_forms_form_field_choice_is_item_selected +ev_document_forms_form_field_choice_select_item +ev_document_forms_form_field_choice_toggle_item +ev_document_forms_form_field_choice_unselect_all +ev_document_forms_form_field_choice_set_text +ev_document_forms_form_field_choice_get_text + +ev_form_field_text_type_get_type +EV_TYPE_FORM_FIELD_TEXT_TYPE +ev_form_field_button_type_get_type +EV_TYPE_FORM_FIELD_BUTTON_TYPE +ev_form_field_choice_type_get_type +EV_TYPE_FORM_FIELD_CHOICE_TYPE +EV_DOCUMENT_FORMS +EV_IS_DOCUMENT_FORMS +EV_TYPE_DOCUMENT_FORMS +ev_document_forms_get_type +EV_DOCUMENT_FORMS_GET_IFACE +
+ +
+ev-document-print +EvDocumentPrint +EV_DOCUMENT_PRINT_IFACE +EV_IS_DOCUMENT_PRINT_IFACE +EvDocumentPrint +EvDocumentPrintIface +ev_document_print_print_page + +EV_DOCUMENT_PRINT +EV_IS_DOCUMENT_PRINT +EV_TYPE_DOCUMENT_PRINT +ev_document_print_get_type +EV_DOCUMENT_PRINT_GET_IFACE +
+ +
+ev-image +EvImage +EvImage +EvImageClass +EvImagePrivate +ev_image_new +ev_image_new_from_pixbuf +ev_image_get_id +ev_image_get_page +ev_image_get_pixbuf +ev_image_save_tmp +ev_image_get_tmp_uri + +EV_IMAGE +EV_IS_IMAGE +EV_TYPE_IMAGE +ev_image_get_type +EV_IMAGE_CLASS +EV_IS_IMAGE_CLASS +EV_IMAGE_GET_CLASS +
+ +
+ev-link +EvLink +EvLinkClass +EvLinkPrivate +ev_link_new +ev_link_get_title +ev_link_get_action +ev_link_get_page + +ev_link_action_type_get_type +EV_TYPE_LINK_ACTION_TYPE +ev_link_dest_type_get_type +EV_TYPE_LINK_DEST_TYPE +EV_LINK +EV_IS_LINK +EV_TYPE_LINK +ev_link_get_type +EV_LINK_CLASS +EV_IS_LINK_CLASS +EV_LINK_GET_CLASS +
+ +
+ev-document-layers +EvDocumentLayers +EV_DOCUMENT_LAYERS_IFACE +EV_IS_DOCUMENT_LAYERS_IFACE +EvDocumentLayers +EvDocumentLayersIface +ev_document_layers_has_layers +ev_document_layers_get_layers +ev_document_layers_show_layer +ev_document_layers_hide_layer +ev_document_layers_layer_is_visible + +EV_DOCUMENT_LAYERS +EV_IS_DOCUMENT_LAYERS +EV_TYPE_DOCUMENT_LAYERS +ev_document_layers_get_type +EV_DOCUMENT_LAYERS_GET_IFACE +
+ +
+ev-document-links +EvDocumentLinks +EV_DOCUMENT_LINKS_IFACE +EV_IS_DOCUMENT_LINKS_IFACE +EvDocumentLinks +EvDocumentLinksIface +ev_document_links_has_document_links +ev_document_links_get_links_model +ev_document_links_get_links +ev_document_links_find_link_dest +ev_document_links_get_dest_page +ev_document_links_get_dest_page_label + +EV_DOCUMENT_LINKS +EV_IS_DOCUMENT_LINKS +EV_TYPE_DOCUMENT_LINKS +ev_document_links_get_type +EV_DOCUMENT_LINKS_GET_IFACE +
+ +
+ev-attachment +EvAttachment +EvAttachment +EvAttachmentClass +EvAttachmentPrivate +EV_ATTACHMENT_ERROR +ev_attachment_error_quark +ev_attachment_new +ev_attachment_get_name +ev_attachment_get_description +ev_attachment_get_modification_date +ev_attachment_get_creation_date +ev_attachment_get_mime_type +ev_attachment_save +ev_attachment_open + +EV_ATTACHMENT +EV_IS_ATTACHMENT +EV_TYPE_ATTACHMENT +ev_attachment_get_type +EV_ATTACHMENT_CLASS +EV_IS_ATTACHMENT_CLASS +EV_ATTACHMENT_GET_CLASS +
+ +
+ev-page +EvPage +EvPage +EvPageClass +EvBackendPage +EvBackendPageDestroyFunc +ev_page_new + +EV_PAGE +EV_IS_PAGE +EV_TYPE_PAGE +ev_page_get_type +EV_PAGE_CLASS +EV_IS_PAGE_CLASS +EV_PAGE_GET_CLASS +
+ +
+ev-render-context +EvRenderContext +EvRenderContext +EvRenderContextClass +ev_render_context_new +ev_render_context_set_page +ev_render_context_set_rotation +ev_render_context_set_scale + +EV_RENDER_CONTEXT +EV_IS_RENDER_CONTEXT +EV_TYPE_RENDER_CONTEXT +ev_render_context_get_type +EV_RENDER_CONTEXT_CLASS +
+ +
+ev-form-field +EvFormField +EvFormField +EvFormFieldClass +EvFormFieldText +EvFormFieldTextClass +EvFormFieldButton +EvFormFieldButtonClass +EvFormFieldChoice +EvFormFieldChoiceClass +EvFormFieldSignature +EvFormFieldSignatureClass +EvFormFieldTextType +EvFormFieldButtonType +EvFormFieldChoiceType +ev_form_field_text_new +ev_form_field_button_new +ev_form_field_choice_new +ev_form_field_signature_new + +EV_FORM_FIELD +EV_IS_FORM_FIELD +EV_TYPE_FORM_FIELD +ev_form_field_get_type +EV_FORM_FIELD_CLASS +EV_IS_FORM_FIELD_CLASS +EV_FORM_FIELD_GET_CLASS +EV_TYPE_FORM_FIELD_TEXT +ev_form_field_text_get_type +EV_FORM_FIELD_TEXT +EV_FORM_FIELD_TEXT_CLASS +EV_IS_FORM_FIELD_TEXT +EV_IS_FORM_FIELD_TEXT_CLASS +EV_FORM_FIELD_TEXT_GET_CLASS +EV_TYPE_FORM_FIELD_BUTTON +ev_form_field_button_get_type +EV_FORM_FIELD_BUTTON +EV_FORM_FIELD_BUTTON_CLASS +EV_IS_FORM_FIELD_BUTTON +EV_IS_FORM_FIELD_BUTTON_CLASS +EV_FORM_FIELD_BUTTON_GET_CLASS +EV_TYPE_FORM_FIELD_CHOICE +ev_form_field_choice_get_type +EV_FORM_FIELD_CHOICE +EV_FORM_FIELD_CHOICE_CLASS +EV_IS_FORM_FIELD_CHOICE +EV_IS_FORM_FIELD_CHOICE_CLASS +EV_FORM_FIELD_CHOICE_GET_CLASS +EV_TYPE_FORM_FIELD_SIGNATURE +ev_form_field_signature_get_type +EV_FORM_FIELD_SIGNATURE +EV_FORM_FIELD_SIGNATURE_CLASS +EV_IS_FORM_FIELD_SIGNATURE +EV_IS_FORM_FIELD_SIGNATURE_CLASS +EV_FORM_FIELD_SIGNATURE_GET_CLASS +
+ +
+ev-document-find +EvDocumentFind +EV_DOCUMENT_FIND_IFACE +EV_IS_DOCUMENT_FIND_IFACE +EvDocumentFind +EvDocumentFindIface +ev_document_find_find_text + +EV_DOCUMENT_FIND +EV_IS_DOCUMENT_FIND +EV_TYPE_DOCUMENT_FIND +ev_document_find_get_type +EV_DOCUMENT_FIND_GET_IFACE +
+ +
+ev-document +EvDocument +EvDocument +EvDocumentClass +EvDocumentPrivate +EV_DOCUMENT_ERROR +EV_DOC_MUTEX_LOCK +EV_DOC_MUTEX_UNLOCK +EvDocumentError +EvPoint +EvRectangle +EvDocumentBackendInfo +ev_document_error_quark +ev_document_get_doc_mutex +ev_document_doc_mutex_lock +ev_document_doc_mutex_unlock +ev_document_doc_mutex_trylock +ev_document_get_fc_mutex +ev_document_fc_mutex_lock +ev_document_fc_mutex_unlock +ev_document_fc_mutex_trylock +ev_document_get_info +ev_document_get_backend_info +ev_document_load +ev_document_save +ev_document_get_n_pages +ev_document_get_page +ev_document_get_page_size +ev_document_get_page_label +ev_document_render +ev_document_get_uri +ev_document_get_title +ev_document_is_page_size_uniform +ev_document_get_max_page_size +ev_document_check_dimensions +ev_document_get_max_label_len +ev_document_has_text_page_labels +ev_document_find_page_by_label +ev_rect_cmp +EV_TYPE_RECTANGLE +ev_rectangle_get_type +ev_rectangle_new +ev_rectangle_copy +ev_rectangle_free +EV_BACKEND_IMPLEMENT_INTERFACE +EV_BACKEND_REGISTER_WITH_CODE +EV_BACKEND_REGISTER +EV_DEFINE_BOXED_TYPE +EV_DEFINE_INTERFACE + +EV_DOCUMENT +EV_IS_DOCUMENT +EV_TYPE_DOCUMENT +ev_document_get_type +EV_DOCUMENT_CLASS +EV_IS_DOCUMENT_CLASS +EV_DOCUMENT_GET_CLASS +
+ +
+ev-link-dest +EvLinkDest +EvLinkDestClass +EvLinkDestPrivate +EvLinkDestType +ev_link_dest_get_dest_type +ev_link_dest_get_page +ev_link_dest_get_top +ev_link_dest_get_left +ev_link_dest_get_bottom +ev_link_dest_get_right +ev_link_dest_get_zoom +ev_link_dest_get_named_dest +ev_link_dest_get_page_label +ev_link_dest_new_page +ev_link_dest_new_xyz +ev_link_dest_new_fit +ev_link_dest_new_fith +ev_link_dest_new_fitv +ev_link_dest_new_fitr +ev_link_dest_new_named +ev_link_dest_new_page_label + +EV_LINK_DEST +EV_IS_LINK_DEST +EV_TYPE_LINK_DEST +ev_link_dest_get_type +EV_LINK_DEST_CLASS +EV_IS_LINK_DEST_CLASS +EV_LINK_DEST_GET_CLASS +
+ +
+ev-link-action +EvLinkAction +EvLinkActionClass +EvLinkActionPrivate +EvLinkActionType +ev_link_action_get_action_type +ev_link_action_get_dest +ev_link_action_get_uri +ev_link_action_get_filename +ev_link_action_get_params +ev_link_action_get_name +ev_link_action_new_dest +ev_link_action_new_remote +ev_link_action_new_external_uri +ev_link_action_new_launch +ev_link_action_new_named + +EV_LINK_ACTION +EV_IS_LINK_ACTION +EV_TYPE_LINK_ACTION +ev_link_action_get_type +EV_LINK_ACTION_CLASS +EV_IS_LINK_ACTION_CLASS +EV_LINK_ACTION_GET_CLASS +
+ +
+ev-document-images +EvDocumentImages +EV_DOCUMENT_IMAGES_IFACE +EV_IS_DOCUMENT_IMAGES_IFACE +EvDocumentImages +EvDocumentImagesIface +ev_document_images_get_image_mapping +ev_document_images_get_image + +EV_DOCUMENT_IMAGES +EV_IS_DOCUMENT_IMAGES +EV_TYPE_DOCUMENT_IMAGES +ev_document_images_get_type +EV_DOCUMENT_IMAGES_GET_IFACE +
+ +
+ev-async-renderer +EvAsyncRenderer +EV_ASYNC_RENDERER_IFACE +EV_IS_ASYNC_RENDERER_IFACE +EvAsyncRenderer +EvAsyncRendererIface +ev_async_renderer_render_pixbuf + +EV_ASYNC_RENDERER +EV_IS_ASYNC_RENDERER +EV_TYPE_ASYNC_RENDERER +ev_async_renderer_get_type +EV_ASYNC_RENDERER_GET_IFACE +
+ +
+ev-selection +EvSelection +EV_SELECTION_IFACE +EV_IS_SELECTION_IFACE +EvSelectionStyle +EvSelection +EvSelectionIface +ev_selection_render_selection +ev_selection_get_selected_text +ev_selection_get_selection_map +ev_selection_get_selection_region + +ev_selection_style_get_type +EV_TYPE_SELECTION_STYLE +EV_SELECTION +EV_IS_SELECTION +EV_TYPE_SELECTION +ev_selection_get_type +EV_SELECTION_GET_IFACE +
+ +
+ev-document-attachments +EvDocumentAttachments +EV_DOCUMENT_ATTACHMENTS_IFACE +EV_IS_DOCUMENT_ATTACHMENTS_IFACE +EvDocumentAttachments +EvDocumentAttachmentsIface +ev_document_attachments_has_attachments +ev_document_attachments_get_attachments + +EV_DOCUMENT_ATTACHMENTS +EV_IS_DOCUMENT_ATTACHMENTS +EV_TYPE_DOCUMENT_ATTACHMENTS +ev_document_attachments_get_type +EV_DOCUMENT_ATTACHMENTS_GET_IFACE +
+ +
+ev-document-security +EvDocumentSecurity +EV_DOCUMENT_SECURITY_IFACE +EV_IS_DOCUMENT_SECURITY_IFACE +EvDocumentSecurity +EvDocumentSecurityIface +ev_document_security_has_document_security +ev_document_security_set_password + +EV_DOCUMENT_SECURITY +EV_IS_DOCUMENT_SECURITY +EV_TYPE_DOCUMENT_SECURITY +ev_document_security_get_type +EV_DOCUMENT_SECURITY_GET_IFACE +
+ +
+ev-annotation +EvAnnotation +EvAnnotation +EvAnnotationClass +EvAnnotationMarkup +EvAnnotationMarkupIface +EvAnnotationText +EvAnnotationTextClass +EvAnnotationAttachment +EvAnnotationAttachmentClass +ev_annotation_markup_get_label +ev_annotation_markup_set_label +ev_annotation_markup_get_opacity +ev_annotation_markup_set_opacity +ev_annotation_markup_has_popup +ev_annotation_markup_get_rectangle +ev_annotation_markup_get_is_open +ev_annotation_markup_set_is_open +ev_annotation_text_new +ev_annotation_attachment_new + +EV_ANNOTATION +EV_IS_ANNOTATION +EV_TYPE_ANNOTATION +ev_annotation_get_type +EV_ANNOTATION_CLASS +EV_IS_ANNOTATION_CLASS +EV_ANNOTATION_GET_CLASS +EV_TYPE_ANNOTATION_MARKUP +ev_annotation_markup_get_type +EV_ANNOTATION_MARKUP +EV_ANNOTATION_MARKUP_IFACE +EV_IS_ANNOTATION_MARKUP +EV_IS_ANNOTATION_MARKUP_IFACE +EV_ANNOTATION_MARKUP_GET_IFACE +EV_TYPE_ANNOTATION_TEXT +ev_annotation_text_get_type +EV_ANNOTATION_TEXT +EV_ANNOTATION_TEXT_CLASS +EV_IS_ANNOTATION_TEXT +EV_IS_ANNOTATION_TEXT_CLASS +EV_ANNOTATION_TEXT_GET_CLASS +EV_TYPE_ANNOTATION_ATTACHMENT +ev_annotation_attachment_get_type +EV_ANNOTATION_ATTACHMENT +EV_ANNOTATION_ATTACHMENT_CLASS +EV_IS_ANNOTATION_ATTACHMENT +EV_IS_ANNOTATION_ATTACHMENT_CLASS +EV_ANNOTATION_ATTACHMENT_GET_CLASS +
+ +
+ev-document-transition +EvDocumentTransition +EV_DOCUMENT_TRANSITION_IFACE +EV_IS_DOCUMENT_TRANSITION_IFACE +EvDocumentTransition +EvDocumentTransitionIface +ev_document_transition_get_page_duration +ev_document_transition_get_effect + +EV_DOCUMENT_TRANSITION +EV_IS_DOCUMENT_TRANSITION +EV_TYPE_DOCUMENT_TRANSITION +ev_document_transition_get_type +EV_DOCUMENT_TRANSITION_GET_IFACE +
+ +
+ev-transition-effect +EvTransitionEffectType +EvTransitionEffectAlignment +EvTransitionEffectDirection +EvTransitionEffect +EvTransitionEffectClass +ev_transition_effect_new + +ev_transition_effect_type_get_type +EV_TYPE_TRANSITION_EFFECT_TYPE +ev_transition_effect_alignment_get_type +EV_TYPE_TRANSITION_EFFECT_ALIGNMENT +ev_transition_effect_direction_get_type +EV_TYPE_TRANSITION_EFFECT_DIRECTION +EV_TRANSITION_EFFECT +EV_IS_TRANSITION_EFFECT +EV_TYPE_TRANSITION_EFFECT +ev_transition_effect_get_type +EV_TRANSITION_EFFECT_CLASS +EV_IS_TRANSITION_EFFECT_CLASS +EV_TRANSITION_EFFECT_GET_CLASS +
+ +
+ev-document-annotations +EvDocumentAnnotations +EV_DOCUMENT_ANNOTATIONS_IFACE +EV_IS_DOCUMENT_ANNOTATIONS_IFACE +EvDocumentAnnotations +EvDocumentAnnotationsIface +ev_document_annotations_get_annotations +ev_document_annotations_annotation_set_contents + +EV_DOCUMENT_ANNOTATIONS +EV_IS_DOCUMENT_ANNOTATIONS +EV_TYPE_DOCUMENT_ANNOTATIONS +ev_document_annotations_get_type +EV_DOCUMENT_ANNOTATIONS_GET_IFACE +
+ +
+ev-document-fonts +EvDocumentFonts +EV_DOCUMENT_FONTS_IFACE +EV_IS_DOCUMENT_FONTS_IFACE +EvDocumentFonts +EvDocumentFontsIface +ev_document_fonts_scan +ev_document_fonts_get_progress +ev_document_fonts_fill_model + +EV_DOCUMENT_FONTS +EV_IS_DOCUMENT_FONTS +EV_TYPE_DOCUMENT_FONTS +ev_document_fonts_get_type +EV_DOCUMENT_FONTS_GET_IFACE +
+ +
+ev-document-factory +ev_document_factory_get_document +ev_document_factory_add_filters +
+ +
+ev-init +ev_init +ev_shutdown +
+ +
+ev-mapping +EvMapping +ev_mapping_list_find +ev_mapping_list_find_custom +ev_mapping_list_get_data +ev_mapping_list_free +
+ +
+ev-backends-manager +EvTypeInfo +ev_backends_manager_get_document +ev_backends_manager_get_document_module_name +ev_backends_manager_get_document_type_info +ev_backends_manager_get_all_types_info +
+ +
+ev-file-helpers +EvCompressionType +ev_mkstemp +ev_mkstemp_file +ev_mkdtemp +ev_tmp_filename_unlink +ev_tmp_file_unlink +ev_tmp_uri_unlink +ev_xfer_uri_simple +ev_file_get_mime_type +ev_file_uncompress +ev_file_compress + +ev_compression_type_get_type +EV_TYPE_COMPRESSION_TYPE +
+ +
+ev-version +Version checks +EV_MAJOR_VERSION +EV_MINOR_VERSION +EV_MICRO_VERSION +EV_CHECK_VERSION +
+ +
+ev-document-misc +EvDocumentMisc +ev_document_misc_get_thumbnail_frame +ev_document_misc_get_page_border_size +ev_document_misc_paint_one_page +ev_document_misc_surface_from_pixbuf +ev_document_misc_pixbuf_from_surface +ev_document_misc_surface_rotate_and_scale +ev_document_misc_invert_surface +ev_document_misc_invert_pixbuf +
+ +
+ev-document-info +EvDocumentInfo +EvDocumentInfo +EvDocumentLicense +EvDocumentLayout +EvDocumentMode +EvDocumentUIHints +PERMISSIONS_FULL +EvDocumentPermissions +EvDocumentInfoFields +ev_document_info_copy +ev_document_info_free +ev_document_license_new +ev_document_license_copy +ev_document_license_free +ev_document_license_get_text +ev_document_license_get_uri +ev_document_license_get_web_statement +ev_document_error_get_type + +EV_TYPE_DOCUMENT_INFO +ev_document_info_get_type +EV_TYPE_DOCUMENT_LICENSE +ev_document_license_get_type +EV_TYPE_DOCUMENT_ERROR +ev_document_layout_get_type +EV_TYPE_DOCUMENT_LAYOUT +ev_document_mode_get_type +EV_TYPE_DOCUMENT_MODE +ev_document_ui_hints_get_type +EV_TYPE_DOCUMENT_UI_HINTS +ev_document_permissions_get_type +EV_TYPE_DOCUMENT_PERMISSIONS +ev_document_info_fields_get_type +EV_TYPE_DOCUMENT_INFO_FIELDS +
diff --git a/help/reference/libdocument/libatrildocument.types b/help/reference/libdocument/libatrildocument.types new file mode 100644 index 00000000..78d30202 --- /dev/null +++ b/help/reference/libdocument/libatrildocument.types @@ -0,0 +1,55 @@ +ev_annotation_attachment_get_type +ev_annotation_get_type +ev_annotation_markup_get_type +ev_annotation_text_get_type +ev_async_renderer_get_type +ev_attachment_get_type +ev_compression_type_get_type +ev_document_annotations_get_type +ev_document_attachments_get_type +ev_document_error_get_type +ev_document_find_get_type +ev_document_fonts_get_type +ev_document_forms_get_type +ev_document_get_type +ev_document_images_get_type +ev_document_info_fields_get_type +ev_document_info_get_type +ev_document_layers_get_type +ev_document_layout_get_type +ev_document_license_get_type +ev_document_links_get_type +ev_document_mode_get_type +ev_document_permissions_get_type +ev_document_print_get_type +ev_document_security_get_type +ev_document_thumbnails_get_type +ev_document_transition_get_type +ev_document_ui_hints_get_type +ev_file_exporter_capabilities_get_type +ev_file_exporter_format_get_type +ev_file_exporter_get_type +ev_form_field_button_get_type +ev_form_field_button_type_get_type +ev_form_field_choice_get_type +ev_form_field_choice_type_get_type +ev_form_field_get_type +ev_form_field_signature_get_type +ev_form_field_text_get_type +ev_form_field_text_type_get_type +ev_image_get_type +ev_layer_get_type +ev_link_action_get_type +ev_link_action_type_get_type +ev_link_dest_get_type +ev_link_dest_type_get_type +ev_link_get_type +ev_page_get_type +ev_rectangle_get_type +ev_render_context_get_type +ev_selection_get_type +ev_selection_style_get_type +ev_transition_effect_alignment_get_type +ev_transition_effect_direction_get_type +ev_transition_effect_get_type +ev_transition_effect_type_get_type diff --git a/help/reference/libdocument/libevdocument-docs.xml b/help/reference/libdocument/libevdocument-docs.xml deleted file mode 100644 index f6867fc7..00000000 --- a/help/reference/libdocument/libevdocument-docs.xml +++ /dev/null @@ -1,191 +0,0 @@ - - - -]> - - - - Atril Document Library Reference Manual - - For Atril 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 -
-
-
-
- - - Document Interfaces - - - Provides support for writing Atril backends. - - - - - - - - - - - - - - - - - - - - - - - - - Document Data - - - Helper objects related to documents like attachments, links and - images, etc. - - - - - - - - - - - - - - - - - - - Helper Functions - - - Helper functions common for backend implementations, and for libevdocument library users. - - - - - - - - - - - - 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/libdocument/libevdocument-overrides.txt b/help/reference/libdocument/libevdocument-overrides.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/help/reference/libdocument/libevdocument-sections.txt b/help/reference/libdocument/libevdocument-sections.txt deleted file mode 100644 index 88d3db2e..00000000 --- a/help/reference/libdocument/libevdocument-sections.txt +++ /dev/null @@ -1,781 +0,0 @@ -
-ev-layer -EvLayer -EvLayer -EvLayerClass -EvLayerPrivate -ev_layer_new -ev_layer_get_id -ev_layer_is_parent -ev_layer_get_rb_group - -EV_LAYER -EV_IS_LAYER -EV_TYPE_LAYER -ev_layer_get_type -EV_LAYER_CLASS -EV_IS_LAYER_CLASS -EV_LAYER_GET_CLASS -
- -
-ev-document-thumbnails -EvDocumentThumbnails -EV_DOCUMENT_THUMBNAILS_IFACE -EV_IS_DOCUMENT_THUMBNAILS_IFACE -EvDocumentThumbnails -EvDocumentThumbnailsIface -ev_document_thumbnails_get_thumbnail -ev_document_thumbnails_get_dimensions - -EV_DOCUMENT_THUMBNAILS -EV_IS_DOCUMENT_THUMBNAILS -EV_TYPE_DOCUMENT_THUMBNAILS -ev_document_thumbnails_get_type -EV_DOCUMENT_THUMBNAILS_GET_IFACE -
- -
-ev-file-exporter -EvFileExporter -EvFileExporterFormat -EvFileExporterCapabilities -EvFileExporterContext -EV_FILE_EXPORTER_IFACE -EV_IS_FILE_EXPORTER_IFACE -EvFileExporter -EvFileExporterIface -ev_file_exporter_begin -ev_file_exporter_begin_page -ev_file_exporter_do_page -ev_file_exporter_end_page -ev_file_exporter_end -ev_file_exporter_get_capabilities - -ev_file_exporter_format_get_type -EV_TYPE_FILE_EXPORTER_FORMAT -ev_file_exporter_capabilities_get_type -EV_TYPE_FILE_EXPORTER_CAPABILITIES -EV_FILE_EXPORTER -EV_IS_FILE_EXPORTER -EV_TYPE_FILE_EXPORTER -ev_file_exporter_get_type -EV_FILE_EXPORTER_GET_IFACE -
- -
-ev-document-forms -EvDocumentForms -EV_DOCUMENT_FORMS_IFACE -EV_IS_DOCUMENT_FORMS_IFACE -EvDocumentForms -EvDocumentFormsIface -ev_document_forms_get_form_fields -ev_document_forms_form_field_text_get_text -ev_document_forms_form_field_text_set_text -ev_document_forms_form_field_button_get_state -ev_document_forms_form_field_button_set_state -ev_document_forms_form_field_choice_get_item -ev_document_forms_form_field_choice_get_n_items -ev_document_forms_form_field_choice_is_item_selected -ev_document_forms_form_field_choice_select_item -ev_document_forms_form_field_choice_toggle_item -ev_document_forms_form_field_choice_unselect_all -ev_document_forms_form_field_choice_set_text -ev_document_forms_form_field_choice_get_text - -ev_form_field_text_type_get_type -EV_TYPE_FORM_FIELD_TEXT_TYPE -ev_form_field_button_type_get_type -EV_TYPE_FORM_FIELD_BUTTON_TYPE -ev_form_field_choice_type_get_type -EV_TYPE_FORM_FIELD_CHOICE_TYPE -EV_DOCUMENT_FORMS -EV_IS_DOCUMENT_FORMS -EV_TYPE_DOCUMENT_FORMS -ev_document_forms_get_type -EV_DOCUMENT_FORMS_GET_IFACE -
- -
-ev-document-print -EvDocumentPrint -EV_DOCUMENT_PRINT_IFACE -EV_IS_DOCUMENT_PRINT_IFACE -EvDocumentPrint -EvDocumentPrintIface -ev_document_print_print_page - -EV_DOCUMENT_PRINT -EV_IS_DOCUMENT_PRINT -EV_TYPE_DOCUMENT_PRINT -ev_document_print_get_type -EV_DOCUMENT_PRINT_GET_IFACE -
- -
-ev-image -EvImage -EvImage -EvImageClass -EvImagePrivate -ev_image_new -ev_image_new_from_pixbuf -ev_image_get_id -ev_image_get_page -ev_image_get_pixbuf -ev_image_save_tmp -ev_image_get_tmp_uri - -EV_IMAGE -EV_IS_IMAGE -EV_TYPE_IMAGE -ev_image_get_type -EV_IMAGE_CLASS -EV_IS_IMAGE_CLASS -EV_IMAGE_GET_CLASS -
- -
-ev-link -EvLink -EvLinkClass -EvLinkPrivate -ev_link_new -ev_link_get_title -ev_link_get_action -ev_link_get_page - -ev_link_action_type_get_type -EV_TYPE_LINK_ACTION_TYPE -ev_link_dest_type_get_type -EV_TYPE_LINK_DEST_TYPE -EV_LINK -EV_IS_LINK -EV_TYPE_LINK -ev_link_get_type -EV_LINK_CLASS -EV_IS_LINK_CLASS -EV_LINK_GET_CLASS -
- -
-ev-document-layers -EvDocumentLayers -EV_DOCUMENT_LAYERS_IFACE -EV_IS_DOCUMENT_LAYERS_IFACE -EvDocumentLayers -EvDocumentLayersIface -ev_document_layers_has_layers -ev_document_layers_get_layers -ev_document_layers_show_layer -ev_document_layers_hide_layer -ev_document_layers_layer_is_visible - -EV_DOCUMENT_LAYERS -EV_IS_DOCUMENT_LAYERS -EV_TYPE_DOCUMENT_LAYERS -ev_document_layers_get_type -EV_DOCUMENT_LAYERS_GET_IFACE -
- -
-ev-document-links -EvDocumentLinks -EV_DOCUMENT_LINKS_IFACE -EV_IS_DOCUMENT_LINKS_IFACE -EvDocumentLinks -EvDocumentLinksIface -ev_document_links_has_document_links -ev_document_links_get_links_model -ev_document_links_get_links -ev_document_links_find_link_dest -ev_document_links_get_dest_page -ev_document_links_get_dest_page_label - -EV_DOCUMENT_LINKS -EV_IS_DOCUMENT_LINKS -EV_TYPE_DOCUMENT_LINKS -ev_document_links_get_type -EV_DOCUMENT_LINKS_GET_IFACE -
- -
-ev-attachment -EvAttachment -EvAttachment -EvAttachmentClass -EvAttachmentPrivate -EV_ATTACHMENT_ERROR -ev_attachment_error_quark -ev_attachment_new -ev_attachment_get_name -ev_attachment_get_description -ev_attachment_get_modification_date -ev_attachment_get_creation_date -ev_attachment_get_mime_type -ev_attachment_save -ev_attachment_open - -EV_ATTACHMENT -EV_IS_ATTACHMENT -EV_TYPE_ATTACHMENT -ev_attachment_get_type -EV_ATTACHMENT_CLASS -EV_IS_ATTACHMENT_CLASS -EV_ATTACHMENT_GET_CLASS -
- -
-ev-page -EvPage -EvPage -EvPageClass -EvBackendPage -EvBackendPageDestroyFunc -ev_page_new - -EV_PAGE -EV_IS_PAGE -EV_TYPE_PAGE -ev_page_get_type -EV_PAGE_CLASS -EV_IS_PAGE_CLASS -EV_PAGE_GET_CLASS -
- -
-ev-render-context -EvRenderContext -EvRenderContext -EvRenderContextClass -ev_render_context_new -ev_render_context_set_page -ev_render_context_set_rotation -ev_render_context_set_scale - -EV_RENDER_CONTEXT -EV_IS_RENDER_CONTEXT -EV_TYPE_RENDER_CONTEXT -ev_render_context_get_type -EV_RENDER_CONTEXT_CLASS -
- -
-ev-form-field -EvFormField -EvFormField -EvFormFieldClass -EvFormFieldText -EvFormFieldTextClass -EvFormFieldButton -EvFormFieldButtonClass -EvFormFieldChoice -EvFormFieldChoiceClass -EvFormFieldSignature -EvFormFieldSignatureClass -EvFormFieldTextType -EvFormFieldButtonType -EvFormFieldChoiceType -ev_form_field_text_new -ev_form_field_button_new -ev_form_field_choice_new -ev_form_field_signature_new - -EV_FORM_FIELD -EV_IS_FORM_FIELD -EV_TYPE_FORM_FIELD -ev_form_field_get_type -EV_FORM_FIELD_CLASS -EV_IS_FORM_FIELD_CLASS -EV_FORM_FIELD_GET_CLASS -EV_TYPE_FORM_FIELD_TEXT -ev_form_field_text_get_type -EV_FORM_FIELD_TEXT -EV_FORM_FIELD_TEXT_CLASS -EV_IS_FORM_FIELD_TEXT -EV_IS_FORM_FIELD_TEXT_CLASS -EV_FORM_FIELD_TEXT_GET_CLASS -EV_TYPE_FORM_FIELD_BUTTON -ev_form_field_button_get_type -EV_FORM_FIELD_BUTTON -EV_FORM_FIELD_BUTTON_CLASS -EV_IS_FORM_FIELD_BUTTON -EV_IS_FORM_FIELD_BUTTON_CLASS -EV_FORM_FIELD_BUTTON_GET_CLASS -EV_TYPE_FORM_FIELD_CHOICE -ev_form_field_choice_get_type -EV_FORM_FIELD_CHOICE -EV_FORM_FIELD_CHOICE_CLASS -EV_IS_FORM_FIELD_CHOICE -EV_IS_FORM_FIELD_CHOICE_CLASS -EV_FORM_FIELD_CHOICE_GET_CLASS -EV_TYPE_FORM_FIELD_SIGNATURE -ev_form_field_signature_get_type -EV_FORM_FIELD_SIGNATURE -EV_FORM_FIELD_SIGNATURE_CLASS -EV_IS_FORM_FIELD_SIGNATURE -EV_IS_FORM_FIELD_SIGNATURE_CLASS -EV_FORM_FIELD_SIGNATURE_GET_CLASS -
- -
-ev-document-find -EvDocumentFind -EV_DOCUMENT_FIND_IFACE -EV_IS_DOCUMENT_FIND_IFACE -EvDocumentFind -EvDocumentFindIface -ev_document_find_find_text - -EV_DOCUMENT_FIND -EV_IS_DOCUMENT_FIND -EV_TYPE_DOCUMENT_FIND -ev_document_find_get_type -EV_DOCUMENT_FIND_GET_IFACE -
- -
-ev-document -EvDocument -EvDocument -EvDocumentClass -EvDocumentPrivate -EV_DOCUMENT_ERROR -EV_DOC_MUTEX_LOCK -EV_DOC_MUTEX_UNLOCK -EvDocumentError -EvPoint -EvRectangle -EvDocumentBackendInfo -ev_document_error_quark -ev_document_get_doc_mutex -ev_document_doc_mutex_lock -ev_document_doc_mutex_unlock -ev_document_doc_mutex_trylock -ev_document_get_fc_mutex -ev_document_fc_mutex_lock -ev_document_fc_mutex_unlock -ev_document_fc_mutex_trylock -ev_document_get_info -ev_document_get_backend_info -ev_document_load -ev_document_save -ev_document_get_n_pages -ev_document_get_page -ev_document_get_page_size -ev_document_get_page_label -ev_document_render -ev_document_get_uri -ev_document_get_title -ev_document_is_page_size_uniform -ev_document_get_max_page_size -ev_document_check_dimensions -ev_document_get_max_label_len -ev_document_has_text_page_labels -ev_document_find_page_by_label -ev_rect_cmp -EV_TYPE_RECTANGLE -ev_rectangle_get_type -ev_rectangle_new -ev_rectangle_copy -ev_rectangle_free -EV_BACKEND_IMPLEMENT_INTERFACE -EV_BACKEND_REGISTER_WITH_CODE -EV_BACKEND_REGISTER -EV_DEFINE_BOXED_TYPE -EV_DEFINE_INTERFACE - -EV_DOCUMENT -EV_IS_DOCUMENT -EV_TYPE_DOCUMENT -ev_document_get_type -EV_DOCUMENT_CLASS -EV_IS_DOCUMENT_CLASS -EV_DOCUMENT_GET_CLASS -
- -
-ev-link-dest -EvLinkDest -EvLinkDestClass -EvLinkDestPrivate -EvLinkDestType -ev_link_dest_get_dest_type -ev_link_dest_get_page -ev_link_dest_get_top -ev_link_dest_get_left -ev_link_dest_get_bottom -ev_link_dest_get_right -ev_link_dest_get_zoom -ev_link_dest_get_named_dest -ev_link_dest_get_page_label -ev_link_dest_new_page -ev_link_dest_new_xyz -ev_link_dest_new_fit -ev_link_dest_new_fith -ev_link_dest_new_fitv -ev_link_dest_new_fitr -ev_link_dest_new_named -ev_link_dest_new_page_label - -EV_LINK_DEST -EV_IS_LINK_DEST -EV_TYPE_LINK_DEST -ev_link_dest_get_type -EV_LINK_DEST_CLASS -EV_IS_LINK_DEST_CLASS -EV_LINK_DEST_GET_CLASS -
- -
-ev-link-action -EvLinkAction -EvLinkActionClass -EvLinkActionPrivate -EvLinkActionType -ev_link_action_get_action_type -ev_link_action_get_dest -ev_link_action_get_uri -ev_link_action_get_filename -ev_link_action_get_params -ev_link_action_get_name -ev_link_action_new_dest -ev_link_action_new_remote -ev_link_action_new_external_uri -ev_link_action_new_launch -ev_link_action_new_named - -EV_LINK_ACTION -EV_IS_LINK_ACTION -EV_TYPE_LINK_ACTION -ev_link_action_get_type -EV_LINK_ACTION_CLASS -EV_IS_LINK_ACTION_CLASS -EV_LINK_ACTION_GET_CLASS -
- -
-ev-document-images -EvDocumentImages -EV_DOCUMENT_IMAGES_IFACE -EV_IS_DOCUMENT_IMAGES_IFACE -EvDocumentImages -EvDocumentImagesIface -ev_document_images_get_image_mapping -ev_document_images_get_image - -EV_DOCUMENT_IMAGES -EV_IS_DOCUMENT_IMAGES -EV_TYPE_DOCUMENT_IMAGES -ev_document_images_get_type -EV_DOCUMENT_IMAGES_GET_IFACE -
- -
-ev-async-renderer -EvAsyncRenderer -EV_ASYNC_RENDERER_IFACE -EV_IS_ASYNC_RENDERER_IFACE -EvAsyncRenderer -EvAsyncRendererIface -ev_async_renderer_render_pixbuf - -EV_ASYNC_RENDERER -EV_IS_ASYNC_RENDERER -EV_TYPE_ASYNC_RENDERER -ev_async_renderer_get_type -EV_ASYNC_RENDERER_GET_IFACE -
- -
-ev-selection -EvSelection -EV_SELECTION_IFACE -EV_IS_SELECTION_IFACE -EvSelectionStyle -EvSelection -EvSelectionIface -ev_selection_render_selection -ev_selection_get_selected_text -ev_selection_get_selection_map -ev_selection_get_selection_region - -ev_selection_style_get_type -EV_TYPE_SELECTION_STYLE -EV_SELECTION -EV_IS_SELECTION -EV_TYPE_SELECTION -ev_selection_get_type -EV_SELECTION_GET_IFACE -
- -
-ev-document-attachments -EvDocumentAttachments -EV_DOCUMENT_ATTACHMENTS_IFACE -EV_IS_DOCUMENT_ATTACHMENTS_IFACE -EvDocumentAttachments -EvDocumentAttachmentsIface -ev_document_attachments_has_attachments -ev_document_attachments_get_attachments - -EV_DOCUMENT_ATTACHMENTS -EV_IS_DOCUMENT_ATTACHMENTS -EV_TYPE_DOCUMENT_ATTACHMENTS -ev_document_attachments_get_type -EV_DOCUMENT_ATTACHMENTS_GET_IFACE -
- -
-ev-document-security -EvDocumentSecurity -EV_DOCUMENT_SECURITY_IFACE -EV_IS_DOCUMENT_SECURITY_IFACE -EvDocumentSecurity -EvDocumentSecurityIface -ev_document_security_has_document_security -ev_document_security_set_password - -EV_DOCUMENT_SECURITY -EV_IS_DOCUMENT_SECURITY -EV_TYPE_DOCUMENT_SECURITY -ev_document_security_get_type -EV_DOCUMENT_SECURITY_GET_IFACE -
- -
-ev-annotation -EvAnnotation -EvAnnotation -EvAnnotationClass -EvAnnotationMarkup -EvAnnotationMarkupIface -EvAnnotationText -EvAnnotationTextClass -EvAnnotationAttachment -EvAnnotationAttachmentClass -ev_annotation_markup_get_label -ev_annotation_markup_set_label -ev_annotation_markup_get_opacity -ev_annotation_markup_set_opacity -ev_annotation_markup_has_popup -ev_annotation_markup_get_rectangle -ev_annotation_markup_get_is_open -ev_annotation_markup_set_is_open -ev_annotation_text_new -ev_annotation_attachment_new - -EV_ANNOTATION -EV_IS_ANNOTATION -EV_TYPE_ANNOTATION -ev_annotation_get_type -EV_ANNOTATION_CLASS -EV_IS_ANNOTATION_CLASS -EV_ANNOTATION_GET_CLASS -EV_TYPE_ANNOTATION_MARKUP -ev_annotation_markup_get_type -EV_ANNOTATION_MARKUP -EV_ANNOTATION_MARKUP_IFACE -EV_IS_ANNOTATION_MARKUP -EV_IS_ANNOTATION_MARKUP_IFACE -EV_ANNOTATION_MARKUP_GET_IFACE -EV_TYPE_ANNOTATION_TEXT -ev_annotation_text_get_type -EV_ANNOTATION_TEXT -EV_ANNOTATION_TEXT_CLASS -EV_IS_ANNOTATION_TEXT -EV_IS_ANNOTATION_TEXT_CLASS -EV_ANNOTATION_TEXT_GET_CLASS -EV_TYPE_ANNOTATION_ATTACHMENT -ev_annotation_attachment_get_type -EV_ANNOTATION_ATTACHMENT -EV_ANNOTATION_ATTACHMENT_CLASS -EV_IS_ANNOTATION_ATTACHMENT -EV_IS_ANNOTATION_ATTACHMENT_CLASS -EV_ANNOTATION_ATTACHMENT_GET_CLASS -
- -
-ev-document-transition -EvDocumentTransition -EV_DOCUMENT_TRANSITION_IFACE -EV_IS_DOCUMENT_TRANSITION_IFACE -EvDocumentTransition -EvDocumentTransitionIface -ev_document_transition_get_page_duration -ev_document_transition_get_effect - -EV_DOCUMENT_TRANSITION -EV_IS_DOCUMENT_TRANSITION -EV_TYPE_DOCUMENT_TRANSITION -ev_document_transition_get_type -EV_DOCUMENT_TRANSITION_GET_IFACE -
- -
-ev-transition-effect -EvTransitionEffectType -EvTransitionEffectAlignment -EvTransitionEffectDirection -EvTransitionEffect -EvTransitionEffectClass -ev_transition_effect_new - -ev_transition_effect_type_get_type -EV_TYPE_TRANSITION_EFFECT_TYPE -ev_transition_effect_alignment_get_type -EV_TYPE_TRANSITION_EFFECT_ALIGNMENT -ev_transition_effect_direction_get_type -EV_TYPE_TRANSITION_EFFECT_DIRECTION -EV_TRANSITION_EFFECT -EV_IS_TRANSITION_EFFECT -EV_TYPE_TRANSITION_EFFECT -ev_transition_effect_get_type -EV_TRANSITION_EFFECT_CLASS -EV_IS_TRANSITION_EFFECT_CLASS -EV_TRANSITION_EFFECT_GET_CLASS -
- -
-ev-document-annotations -EvDocumentAnnotations -EV_DOCUMENT_ANNOTATIONS_IFACE -EV_IS_DOCUMENT_ANNOTATIONS_IFACE -EvDocumentAnnotations -EvDocumentAnnotationsIface -ev_document_annotations_get_annotations -ev_document_annotations_annotation_set_contents - -EV_DOCUMENT_ANNOTATIONS -EV_IS_DOCUMENT_ANNOTATIONS -EV_TYPE_DOCUMENT_ANNOTATIONS -ev_document_annotations_get_type -EV_DOCUMENT_ANNOTATIONS_GET_IFACE -
- -
-ev-document-fonts -EvDocumentFonts -EV_DOCUMENT_FONTS_IFACE -EV_IS_DOCUMENT_FONTS_IFACE -EvDocumentFonts -EvDocumentFontsIface -ev_document_fonts_scan -ev_document_fonts_get_progress -ev_document_fonts_fill_model - -EV_DOCUMENT_FONTS -EV_IS_DOCUMENT_FONTS -EV_TYPE_DOCUMENT_FONTS -ev_document_fonts_get_type -EV_DOCUMENT_FONTS_GET_IFACE -
- -
-ev-document-factory -ev_document_factory_get_document -ev_document_factory_add_filters -
- -
-ev-init -ev_init -ev_shutdown -
- -
-ev-mapping -EvMapping -ev_mapping_list_find -ev_mapping_list_find_custom -ev_mapping_list_get_data -ev_mapping_list_free -
- -
-ev-backends-manager -EvTypeInfo -ev_backends_manager_get_document -ev_backends_manager_get_document_module_name -ev_backends_manager_get_document_type_info -ev_backends_manager_get_all_types_info -
- -
-ev-file-helpers -EvCompressionType -ev_mkstemp -ev_mkstemp_file -ev_mkdtemp -ev_tmp_filename_unlink -ev_tmp_file_unlink -ev_tmp_uri_unlink -ev_xfer_uri_simple -ev_file_get_mime_type -ev_file_uncompress -ev_file_compress - -ev_compression_type_get_type -EV_TYPE_COMPRESSION_TYPE -
- -
-ev-version -Version checks -EV_MAJOR_VERSION -EV_MINOR_VERSION -EV_MICRO_VERSION -EV_CHECK_VERSION -
- -
-ev-document-misc -EvDocumentMisc -ev_document_misc_get_thumbnail_frame -ev_document_misc_get_page_border_size -ev_document_misc_paint_one_page -ev_document_misc_surface_from_pixbuf -ev_document_misc_pixbuf_from_surface -ev_document_misc_surface_rotate_and_scale -ev_document_misc_invert_surface -ev_document_misc_invert_pixbuf -
- -
-ev-document-info -EvDocumentInfo -EvDocumentInfo -EvDocumentLicense -EvDocumentLayout -EvDocumentMode -EvDocumentUIHints -PERMISSIONS_FULL -EvDocumentPermissions -EvDocumentInfoFields -ev_document_info_copy -ev_document_info_free -ev_document_license_new -ev_document_license_copy -ev_document_license_free -ev_document_license_get_text -ev_document_license_get_uri -ev_document_license_get_web_statement -ev_document_error_get_type - -EV_TYPE_DOCUMENT_INFO -ev_document_info_get_type -EV_TYPE_DOCUMENT_LICENSE -ev_document_license_get_type -EV_TYPE_DOCUMENT_ERROR -ev_document_layout_get_type -EV_TYPE_DOCUMENT_LAYOUT -ev_document_mode_get_type -EV_TYPE_DOCUMENT_MODE -ev_document_ui_hints_get_type -EV_TYPE_DOCUMENT_UI_HINTS -ev_document_permissions_get_type -EV_TYPE_DOCUMENT_PERMISSIONS -ev_document_info_fields_get_type -EV_TYPE_DOCUMENT_INFO_FIELDS -
diff --git a/help/reference/libdocument/libevdocument.types b/help/reference/libdocument/libevdocument.types deleted file mode 100644 index 78d30202..00000000 --- a/help/reference/libdocument/libevdocument.types +++ /dev/null @@ -1,55 +0,0 @@ -ev_annotation_attachment_get_type -ev_annotation_get_type -ev_annotation_markup_get_type -ev_annotation_text_get_type -ev_async_renderer_get_type -ev_attachment_get_type -ev_compression_type_get_type -ev_document_annotations_get_type -ev_document_attachments_get_type -ev_document_error_get_type -ev_document_find_get_type -ev_document_fonts_get_type -ev_document_forms_get_type -ev_document_get_type -ev_document_images_get_type -ev_document_info_fields_get_type -ev_document_info_get_type -ev_document_layers_get_type -ev_document_layout_get_type -ev_document_license_get_type -ev_document_links_get_type -ev_document_mode_get_type -ev_document_permissions_get_type -ev_document_print_get_type -ev_document_security_get_type -ev_document_thumbnails_get_type -ev_document_transition_get_type -ev_document_ui_hints_get_type -ev_file_exporter_capabilities_get_type -ev_file_exporter_format_get_type -ev_file_exporter_get_type -ev_form_field_button_get_type -ev_form_field_button_type_get_type -ev_form_field_choice_get_type -ev_form_field_choice_type_get_type -ev_form_field_get_type -ev_form_field_signature_get_type -ev_form_field_text_get_type -ev_form_field_text_type_get_type -ev_image_get_type -ev_layer_get_type -ev_link_action_get_type -ev_link_action_type_get_type -ev_link_dest_get_type -ev_link_dest_type_get_type -ev_link_get_type -ev_page_get_type -ev_rectangle_get_type -ev_render_context_get_type -ev_selection_get_type -ev_selection_style_get_type -ev_transition_effect_alignment_get_type -ev_transition_effect_direction_get_type -ev_transition_effect_get_type -ev_transition_effect_type_get_type diff --git a/help/reference/libview/libatrilview-docs.xml b/help/reference/libview/libatrilview-docs.xml new file mode 100644 index 00000000..9935217d --- /dev/null +++ b/help/reference/libview/libatrilview-docs.xml @@ -0,0 +1,145 @@ + + + +]> + + + + Atril View Library Reference Manual + + For Atril 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 +
+
+
+
+ + + Atril View + + + + + + + + + + + + + + + + + + + + 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/libview/libatrilview-overrides.txt b/help/reference/libview/libatrilview-overrides.txt new file mode 100644 index 00000000..e69de29b diff --git a/help/reference/libview/libatrilview-sections.txt b/help/reference/libview/libatrilview-sections.txt new file mode 100644 index 00000000..fe50b2eb --- /dev/null +++ b/help/reference/libview/libatrilview-sections.txt @@ -0,0 +1,338 @@ +
+ev-annotation-window +EvAnnotationWindow +EvAnnotationWindowClass +ev_annotation_window_new +ev_annotation_window_get_annotation +ev_annotation_window_set_annotation +ev_annotation_window_is_open +ev_annotation_window_get_rectangle +ev_annotation_window_set_rectangle +ev_annotation_window_grab_focus +ev_annotation_window_ungrab_focus + +EV_ANNOTATION_WINDOW +EV_IS_ANNOTATION_WINDOW +EV_TYPE_ANNOTATION_WINDOW +ev_annotation_window_get_type +EV_ANNOTATION_WINDOW_CLASS +EV_IS_ANNOTATION_WINDOW_CLASS +EV_ANNOTATION_WINDOW_GET_CLASS +
+ +
+ev-view +EvView +EvViewClass +EvViewSelectionMode +ev_view_new +ev_view_set_model +ev_view_set_loading +ev_view_reload +ev_view_copy +ev_view_copy_link_address +ev_view_select_all +ev_view_get_has_selection +ev_view_set_presentation +ev_view_get_presentation +ev_view_can_zoom_in +ev_view_zoom_in +ev_view_can_zoom_out +ev_view_zoom_out +ev_view_find_next +ev_view_find_previous +ev_view_find_search_changed +ev_view_find_set_highlight_search +ev_view_find_changed +ev_view_find_cancel +ev_view_hide_cursor +ev_view_show_cursor +ev_view_scroll +ev_view_handle_link +ev_view_next_page +ev_view_previous_page +ev_view_autoscroll_start +ev_view_autoscroll_stop + +EV_VIEW +EV_IS_VIEW +EV_TYPE_VIEW +ev_view_get_type +
+ +
+ev-page-cache +EvPageCache +EvPageCacheClass +ev_page_cache_new +ev_page_cache_set_page_range +ev_page_cache_get_flags +ev_page_cache_set_flags +ev_page_cache_get_link_mapping +ev_page_cache_get_image_mapping +ev_page_cache_get_form_field_mapping +ev_page_cache_get_annot_mapping +ev_page_cache_get_text_mapping + +EV_PAGE_CACHE +EV_IS_PAGE_CACHE +EV_TYPE_PAGE_CACHE +ev_page_cache_get_type +
+ +
+ev-print-operation +EvPrintOperation +EvPrintOperationClass +ev_print_operation_exists_for_document +ev_print_operation_new +ev_print_operation_set_current_page +ev_print_operation_set_print_settings +ev_print_operation_get_print_settings +ev_print_operation_set_default_page_setup +ev_print_operation_get_default_page_setup +ev_print_operation_set_job_name +ev_print_operation_get_job_name +ev_print_operation_run +ev_print_operation_cancel +ev_print_operation_get_error +ev_print_operation_set_embed_page_setup +ev_print_operation_get_embed_page_setup +ev_print_operation_get_status +ev_print_operation_get_progress + +EV_PRINT_OPERATION +EV_IS_PRINT_OPERATION +EV_TYPE_PRINT_OPERATION +ev_print_operation_get_type +EV_PRINT_OPERATION_CLASS +EV_PRINT_OPERATION_GET_CLASS +
+ +
+ev-view-presentation +EvViewPresentation +EvViewPresentationClass +ev_view_presentation_new +ev_view_presentation_get_current_page + +EV_VIEW_PRESENTATION +EV_IS_VIEW_PRESENTATION +EV_TYPE_VIEW_PRESENTATION +ev_view_presentation_get_type +
+ +
+ev-jobs +EvJob +EvJob +EvJobClass +EvJobRender +EvJobRenderClass +EvJobPageData +EvJobPageDataClass +EvJobThumbnail +EvJobThumbnailClass +EvJobLinks +EvJobLinksClass +EvJobAttachments +EvJobAttachmentsClass +EvJobFonts +EvJobFontsClass +EvJobLoad +EvJobLoadClass +EvJobSave +EvJobSaveClass +EvJobFind +EvJobFindClass +EvJobLayers +EvJobLayersClass +EvJobExport +EvJobExportClass +EvJobPrint +EvJobPrintClass +EvJobRunMode +EvJobPageDataFlags +ev_job_run +ev_job_cancel +ev_job_failed +ev_job_failed_from_error +ev_job_succeeded +ev_job_is_finished +ev_job_is_failed +ev_job_get_run_mode +ev_job_set_run_mode +ev_job_links_new +ev_job_attachments_new +ev_job_export_new +ev_job_export_set_page +ev_job_render_new +ev_job_render_set_selection_info +ev_job_page_data_new +ev_job_thumbnail_new +ev_job_fonts_new +ev_job_load_new +ev_job_load_set_uri +ev_job_load_set_password +ev_job_save_new +ev_job_find_new +ev_job_find_get_n_results +ev_job_find_get_progress +ev_job_find_has_results +ev_job_find_get_results +ev_job_layers_new +ev_job_print_new +ev_job_print_set_page +ev_job_print_set_cairo + +ev_job_run_mode_get_type +EV_TYPE_JOB_RUN_MODE +ev_job_page_data_flags_get_type +EV_TYPE_JOB_PAGE_DATA_FLAGS +ev_job_priority_get_type +EV_TYPE_JOB_PRIORITY +EV_JOB +EV_IS_JOB +EV_TYPE_JOB +ev_job_get_type +EV_JOB_CLASS +EV_JOB_GET_CLASS +EV_TYPE_JOB_LINKS +ev_job_links_get_type +EV_JOB_LINKS +EV_JOB_LINKS_CLASS +EV_IS_JOB_LINKS +EV_TYPE_JOB_ATTACHMENTS +ev_job_attachments_get_type +EV_JOB_ATTACHMENTS +EV_JOB_ATTACHMENTS_CLASS +EV_IS_JOB_ATTACHMENTS +EV_TYPE_JOB_RENDER +ev_job_render_get_type +EV_JOB_RENDER +EV_JOB_RENDER_CLASS +EV_IS_JOB_RENDER +EV_TYPE_JOB_PAGE_DATA +ev_job_page_data_get_type +EV_JOB_PAGE_DATA +EV_JOB_PAGE_DATA_CLASS +EV_IS_JOB_PAGE_DATA +EV_TYPE_JOB_THUMBNAIL +ev_job_thumbnail_get_type +EV_JOB_THUMBNAIL +EV_JOB_THUMBNAIL_CLASS +EV_IS_JOB_THUMBNAIL +EV_TYPE_JOB_FONTS +ev_job_fonts_get_type +EV_JOB_FONTS +EV_JOB_FONTS_CLASS +EV_IS_JOB_FONTS +EV_TYPE_JOB_LOAD +ev_job_load_get_type +EV_JOB_LOAD +EV_JOB_LOAD_CLASS +EV_IS_JOB_LOAD +EV_TYPE_JOB_SAVE +ev_job_save_get_type +EV_JOB_SAVE +EV_JOB_SAVE_CLASS +EV_IS_JOB_SAVE +EV_TYPE_JOB_FIND +ev_job_find_get_type +EV_JOB_FIND +EV_JOB_FIND_CLASS +EV_IS_JOB_FIND +EV_TYPE_JOB_LAYERS +ev_job_layers_get_type +EV_JOB_LAYERS +EV_JOB_LAYERS_CLASS +EV_IS_JOB_LAYERS +EV_TYPE_JOB_EXPORT +ev_job_export_get_type +EV_JOB_EXPORT +EV_JOB_EXPORT_CLASS +EV_IS_JOB_EXPORT +EV_TYPE_JOB_PRINT +ev_job_print_get_type +EV_JOB_PRINT +EV_JOB_PRINT_CLASS +EV_IS_JOB_PRINT +
+ +
+ev-document-model +EvSizingMode +EvDocumentModel +EvDocumentModelClass +ev_document_model_new +ev_document_model_new_with_document +ev_document_model_set_document +ev_document_model_get_document +ev_document_model_set_page +ev_document_model_set_page_by_label +ev_document_model_get_page +ev_document_model_set_scale +ev_document_model_get_scale +ev_document_model_set_max_scale +ev_document_model_get_max_scale +ev_document_model_set_min_scale +ev_document_model_get_min_scale +ev_document_model_set_sizing_mode +ev_document_model_get_sizing_mode +ev_document_model_set_rotation +ev_document_model_get_rotation +ev_document_model_set_inverted_colors +ev_document_model_get_inverted_colors +ev_document_model_set_continuous +ev_document_model_get_continuous +ev_document_model_set_dual_page +ev_document_model_get_dual_page +ev_document_model_set_fullscreen +ev_document_model_get_fullscreen + +ev_sizing_mode_get_type +EV_TYPE_SIZING_MODE +EV_DOCUMENT_MODEL +EV_IS_DOCUMENT_MODEL +EV_TYPE_DOCUMENT_MODEL +ev_document_model_get_type +
+ +
+ev-stock-icons +EV_STOCK_ZOOM +EV_STOCK_ZOOM_PAGE +EV_STOCK_ZOOM_WIDTH +EV_STOCK_VIEW_DUAL +EV_STOCK_VIEW_CONTINUOUS +EV_STOCK_ROTATE_LEFT +EV_STOCK_ROTATE_RIGHT +EV_STOCK_RUN_PRESENTATION +EV_STOCK_VISIBLE +EV_STOCK_RESIZE_SE +EV_STOCK_RESIZE_SW +EV_STOCK_CLOSE +EV_STOCK_INVERTED_COLORS +ev_stock_icons_init +ev_stock_icons_shutdown +ev_stock_icons_set_screen +
+ +
+ev-view-type-builtins +ev_view_selection_mode_get_type +EV_TYPE_VIEW_SELECTION_MODE +
+ +
+ev-job-scheduler +EvJobPriority +ev_job_scheduler_push_job +ev_job_scheduler_update_job +
+ +
+ev-view-cursor +EvViewCursor +ev_view_cursor_new +
diff --git a/help/reference/libview/libatrilview.types b/help/reference/libview/libatrilview.types new file mode 100644 index 00000000..1df4432f --- /dev/null +++ b/help/reference/libview/libatrilview.types @@ -0,0 +1,29 @@ +#include +#include "ev-annotation-window.h" +#include "ev-page-cache.h" +#include "ev-view-presentation.h" + +ev_annotation_window_get_type +ev_document_model_get_type +ev_job_attachments_get_type +ev_job_export_get_type +ev_job_find_get_type +ev_job_fonts_get_type +ev_job_get_type +ev_job_layers_get_type +ev_job_links_get_type +ev_job_load_get_type +ev_job_page_data_flags_get_type +ev_job_page_data_get_type +ev_job_print_get_type +ev_job_priority_get_type +ev_job_render_get_type +ev_job_run_mode_get_type +ev_job_save_get_type +ev_job_thumbnail_get_type +ev_page_cache_get_type +ev_print_operation_get_type +ev_sizing_mode_get_type +ev_view_get_type +ev_view_presentation_get_type +ev_view_selection_mode_get_type diff --git a/help/reference/libview/libevview-docs.xml b/help/reference/libview/libevview-docs.xml deleted file mode 100644 index 9935217d..00000000 --- a/help/reference/libview/libevview-docs.xml +++ /dev/null @@ -1,145 +0,0 @@ - - - -]> - - - - Atril View Library Reference Manual - - For Atril 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 -
-
-
-
- - - Atril View - - - - - - - - - - - - - - - - - - - - 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/libview/libevview-overrides.txt b/help/reference/libview/libevview-overrides.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/help/reference/libview/libevview-sections.txt b/help/reference/libview/libevview-sections.txt deleted file mode 100644 index fe50b2eb..00000000 --- a/help/reference/libview/libevview-sections.txt +++ /dev/null @@ -1,338 +0,0 @@ -
-ev-annotation-window -EvAnnotationWindow -EvAnnotationWindowClass -ev_annotation_window_new -ev_annotation_window_get_annotation -ev_annotation_window_set_annotation -ev_annotation_window_is_open -ev_annotation_window_get_rectangle -ev_annotation_window_set_rectangle -ev_annotation_window_grab_focus -ev_annotation_window_ungrab_focus - -EV_ANNOTATION_WINDOW -EV_IS_ANNOTATION_WINDOW -EV_TYPE_ANNOTATION_WINDOW -ev_annotation_window_get_type -EV_ANNOTATION_WINDOW_CLASS -EV_IS_ANNOTATION_WINDOW_CLASS -EV_ANNOTATION_WINDOW_GET_CLASS -
- -
-ev-view -EvView -EvViewClass -EvViewSelectionMode -ev_view_new -ev_view_set_model -ev_view_set_loading -ev_view_reload -ev_view_copy -ev_view_copy_link_address -ev_view_select_all -ev_view_get_has_selection -ev_view_set_presentation -ev_view_get_presentation -ev_view_can_zoom_in -ev_view_zoom_in -ev_view_can_zoom_out -ev_view_zoom_out -ev_view_find_next -ev_view_find_previous -ev_view_find_search_changed -ev_view_find_set_highlight_search -ev_view_find_changed -ev_view_find_cancel -ev_view_hide_cursor -ev_view_show_cursor -ev_view_scroll -ev_view_handle_link -ev_view_next_page -ev_view_previous_page -ev_view_autoscroll_start -ev_view_autoscroll_stop - -EV_VIEW -EV_IS_VIEW -EV_TYPE_VIEW -ev_view_get_type -
- -
-ev-page-cache -EvPageCache -EvPageCacheClass -ev_page_cache_new -ev_page_cache_set_page_range -ev_page_cache_get_flags -ev_page_cache_set_flags -ev_page_cache_get_link_mapping -ev_page_cache_get_image_mapping -ev_page_cache_get_form_field_mapping -ev_page_cache_get_annot_mapping -ev_page_cache_get_text_mapping - -EV_PAGE_CACHE -EV_IS_PAGE_CACHE -EV_TYPE_PAGE_CACHE -ev_page_cache_get_type -
- -
-ev-print-operation -EvPrintOperation -EvPrintOperationClass -ev_print_operation_exists_for_document -ev_print_operation_new -ev_print_operation_set_current_page -ev_print_operation_set_print_settings -ev_print_operation_get_print_settings -ev_print_operation_set_default_page_setup -ev_print_operation_get_default_page_setup -ev_print_operation_set_job_name -ev_print_operation_get_job_name -ev_print_operation_run -ev_print_operation_cancel -ev_print_operation_get_error -ev_print_operation_set_embed_page_setup -ev_print_operation_get_embed_page_setup -ev_print_operation_get_status -ev_print_operation_get_progress - -EV_PRINT_OPERATION -EV_IS_PRINT_OPERATION -EV_TYPE_PRINT_OPERATION -ev_print_operation_get_type -EV_PRINT_OPERATION_CLASS -EV_PRINT_OPERATION_GET_CLASS -
- -
-ev-view-presentation -EvViewPresentation -EvViewPresentationClass -ev_view_presentation_new -ev_view_presentation_get_current_page - -EV_VIEW_PRESENTATION -EV_IS_VIEW_PRESENTATION -EV_TYPE_VIEW_PRESENTATION -ev_view_presentation_get_type -
- -
-ev-jobs -EvJob -EvJob -EvJobClass -EvJobRender -EvJobRenderClass -EvJobPageData -EvJobPageDataClass -EvJobThumbnail -EvJobThumbnailClass -EvJobLinks -EvJobLinksClass -EvJobAttachments -EvJobAttachmentsClass -EvJobFonts -EvJobFontsClass -EvJobLoad -EvJobLoadClass -EvJobSave -EvJobSaveClass -EvJobFind -EvJobFindClass -EvJobLayers -EvJobLayersClass -EvJobExport -EvJobExportClass -EvJobPrint -EvJobPrintClass -EvJobRunMode -EvJobPageDataFlags -ev_job_run -ev_job_cancel -ev_job_failed -ev_job_failed_from_error -ev_job_succeeded -ev_job_is_finished -ev_job_is_failed -ev_job_get_run_mode -ev_job_set_run_mode -ev_job_links_new -ev_job_attachments_new -ev_job_export_new -ev_job_export_set_page -ev_job_render_new -ev_job_render_set_selection_info -ev_job_page_data_new -ev_job_thumbnail_new -ev_job_fonts_new -ev_job_load_new -ev_job_load_set_uri -ev_job_load_set_password -ev_job_save_new -ev_job_find_new -ev_job_find_get_n_results -ev_job_find_get_progress -ev_job_find_has_results -ev_job_find_get_results -ev_job_layers_new -ev_job_print_new -ev_job_print_set_page -ev_job_print_set_cairo - -ev_job_run_mode_get_type -EV_TYPE_JOB_RUN_MODE -ev_job_page_data_flags_get_type -EV_TYPE_JOB_PAGE_DATA_FLAGS -ev_job_priority_get_type -EV_TYPE_JOB_PRIORITY -EV_JOB -EV_IS_JOB -EV_TYPE_JOB -ev_job_get_type -EV_JOB_CLASS -EV_JOB_GET_CLASS -EV_TYPE_JOB_LINKS -ev_job_links_get_type -EV_JOB_LINKS -EV_JOB_LINKS_CLASS -EV_IS_JOB_LINKS -EV_TYPE_JOB_ATTACHMENTS -ev_job_attachments_get_type -EV_JOB_ATTACHMENTS -EV_JOB_ATTACHMENTS_CLASS -EV_IS_JOB_ATTACHMENTS -EV_TYPE_JOB_RENDER -ev_job_render_get_type -EV_JOB_RENDER -EV_JOB_RENDER_CLASS -EV_IS_JOB_RENDER -EV_TYPE_JOB_PAGE_DATA -ev_job_page_data_get_type -EV_JOB_PAGE_DATA -EV_JOB_PAGE_DATA_CLASS -EV_IS_JOB_PAGE_DATA -EV_TYPE_JOB_THUMBNAIL -ev_job_thumbnail_get_type -EV_JOB_THUMBNAIL -EV_JOB_THUMBNAIL_CLASS -EV_IS_JOB_THUMBNAIL -EV_TYPE_JOB_FONTS -ev_job_fonts_get_type -EV_JOB_FONTS -EV_JOB_FONTS_CLASS -EV_IS_JOB_FONTS -EV_TYPE_JOB_LOAD -ev_job_load_get_type -EV_JOB_LOAD -EV_JOB_LOAD_CLASS -EV_IS_JOB_LOAD -EV_TYPE_JOB_SAVE -ev_job_save_get_type -EV_JOB_SAVE -EV_JOB_SAVE_CLASS -EV_IS_JOB_SAVE -EV_TYPE_JOB_FIND -ev_job_find_get_type -EV_JOB_FIND -EV_JOB_FIND_CLASS -EV_IS_JOB_FIND -EV_TYPE_JOB_LAYERS -ev_job_layers_get_type -EV_JOB_LAYERS -EV_JOB_LAYERS_CLASS -EV_IS_JOB_LAYERS -EV_TYPE_JOB_EXPORT -ev_job_export_get_type -EV_JOB_EXPORT -EV_JOB_EXPORT_CLASS -EV_IS_JOB_EXPORT -EV_TYPE_JOB_PRINT -ev_job_print_get_type -EV_JOB_PRINT -EV_JOB_PRINT_CLASS -EV_IS_JOB_PRINT -
- -
-ev-document-model -EvSizingMode -EvDocumentModel -EvDocumentModelClass -ev_document_model_new -ev_document_model_new_with_document -ev_document_model_set_document -ev_document_model_get_document -ev_document_model_set_page -ev_document_model_set_page_by_label -ev_document_model_get_page -ev_document_model_set_scale -ev_document_model_get_scale -ev_document_model_set_max_scale -ev_document_model_get_max_scale -ev_document_model_set_min_scale -ev_document_model_get_min_scale -ev_document_model_set_sizing_mode -ev_document_model_get_sizing_mode -ev_document_model_set_rotation -ev_document_model_get_rotation -ev_document_model_set_inverted_colors -ev_document_model_get_inverted_colors -ev_document_model_set_continuous -ev_document_model_get_continuous -ev_document_model_set_dual_page -ev_document_model_get_dual_page -ev_document_model_set_fullscreen -ev_document_model_get_fullscreen - -ev_sizing_mode_get_type -EV_TYPE_SIZING_MODE -EV_DOCUMENT_MODEL -EV_IS_DOCUMENT_MODEL -EV_TYPE_DOCUMENT_MODEL -ev_document_model_get_type -
- -
-ev-stock-icons -EV_STOCK_ZOOM -EV_STOCK_ZOOM_PAGE -EV_STOCK_ZOOM_WIDTH -EV_STOCK_VIEW_DUAL -EV_STOCK_VIEW_CONTINUOUS -EV_STOCK_ROTATE_LEFT -EV_STOCK_ROTATE_RIGHT -EV_STOCK_RUN_PRESENTATION -EV_STOCK_VISIBLE -EV_STOCK_RESIZE_SE -EV_STOCK_RESIZE_SW -EV_STOCK_CLOSE -EV_STOCK_INVERTED_COLORS -ev_stock_icons_init -ev_stock_icons_shutdown -ev_stock_icons_set_screen -
- -
-ev-view-type-builtins -ev_view_selection_mode_get_type -EV_TYPE_VIEW_SELECTION_MODE -
- -
-ev-job-scheduler -EvJobPriority -ev_job_scheduler_push_job -ev_job_scheduler_update_job -
- -
-ev-view-cursor -EvViewCursor -ev_view_cursor_new -
diff --git a/help/reference/libview/libevview.types b/help/reference/libview/libevview.types deleted file mode 100644 index 1df4432f..00000000 --- a/help/reference/libview/libevview.types +++ /dev/null @@ -1,29 +0,0 @@ -#include -#include "ev-annotation-window.h" -#include "ev-page-cache.h" -#include "ev-view-presentation.h" - -ev_annotation_window_get_type -ev_document_model_get_type -ev_job_attachments_get_type -ev_job_export_get_type -ev_job_find_get_type -ev_job_fonts_get_type -ev_job_get_type -ev_job_layers_get_type -ev_job_links_get_type -ev_job_load_get_type -ev_job_page_data_flags_get_type -ev_job_page_data_get_type -ev_job_print_get_type -ev_job_priority_get_type -ev_job_render_get_type -ev_job_run_mode_get_type -ev_job_save_get_type -ev_job_thumbnail_get_type -ev_page_cache_get_type -ev_print_operation_get_type -ev_sizing_mode_get_type -ev_view_get_type -ev_view_presentation_get_type -ev_view_selection_mode_get_type diff --git a/po/POTFILES.in b/po/POTFILES.in index 62dd53a7..9f477039 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -56,8 +56,3 @@ shell/ev-window.c shell/ev-window-title.c shell/ev-utils.c shell/main.c -thumbnailer/atril-thumbnailer-comics.schemas.in -thumbnailer/atril-thumbnailer-djvu.schemas.in -thumbnailer/atril-thumbnailer-dvi.schemas.in -thumbnailer/atril-thumbnailer-ps.schemas.in -thumbnailer/atril-thumbnailer.schemas.in -- cgit v1.2.1