]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-annotations.c
Add EvMappingList data struct instead of using a GList
[evince.git] / libdocument / ev-document-annotations.c
1 /* ev-document-annotations.c
2  *  this file is part of evince, a gnome document viewer
3  *
4  * Copyright (C) 2009 Carlos Garcia Campos <carlosgc@gnome.org>
5  * Copyright (C) 2007 IƱigo Martinez <inigomartinez@gmail.com>
6  *
7  * Evince is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * Evince is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  */
21
22 #include "ev-document-annotations.h"
23
24 G_DEFINE_INTERFACE (EvDocumentAnnotations, ev_document_annotations, 0)
25
26 static void
27 ev_document_annotations_default_init (EvDocumentAnnotationsInterface *klass)
28 {
29 }
30
31 EvMappingList *
32 ev_document_annotations_get_annotations (EvDocumentAnnotations *document_annots,
33                                          EvPage                *page)
34 {
35         EvDocumentAnnotationsInterface *iface = EV_DOCUMENT_ANNOTATIONS_GET_IFACE (document_annots);
36
37         return iface->get_annotations (document_annots, page);
38 }
39
40 void
41 ev_document_annotations_annotation_set_contents (EvDocumentAnnotations *document_annots,
42                                                  EvAnnotation          *annot,
43                                                  const gchar           *contents)
44 {
45         EvDocumentAnnotationsInterface *iface = EV_DOCUMENT_ANNOTATIONS_GET_IFACE (document_annots);
46
47         iface->annotation_set_contents (document_annots, annot, contents);
48 }