]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-transition.c
274da7c0fce54c52044c9e8958677a6eb21d4cf1
[evince.git] / libdocument / ev-document-transition.c
1 /* ev-document-transition.c
2  *  this file is part of evince, a gnome document viewer
3  * 
4  * Copyright (C) 2006 Carlos Garcia Campos <carlosgc@gnome.org>
5  *
6  * Evince is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Evince is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #include "ev-document-transition.h"
22
23 GType
24 ev_document_transition_get_type (void)
25 {
26         static GType type = 0;
27
28         if (G_UNLIKELY (type == 0)) {
29                 const GTypeInfo our_info = {
30                         sizeof (EvDocumentTransitionIface),
31                         NULL,
32                         NULL,
33                 };
34
35                 type = g_type_register_static (G_TYPE_INTERFACE,
36                                                "EvDocumentTransition",
37                                                &our_info, (GTypeFlags)0);
38         }
39
40         return type;
41 }
42
43 gdouble
44 ev_document_transition_get_page_duration (EvDocumentTransition *document_trans,
45                                           gint                  page)
46 {
47         EvDocumentTransitionIface *iface = EV_DOCUMENT_TRANSITION_GET_IFACE (document_trans);
48
49         if (iface->get_page_duration)
50                 return iface->get_page_duration (document_trans, page);
51
52         return -1;
53 }
54
55