]> www.fi.muni.cz Git - evince.git/blob - backend/ev-document.h
9d8b662c2936a233c2673a3e0a2c99a48fd6b2f5
[evince.git] / backend / ev-document.h
1 /*
2  *  Copyright (C) 2000-2003 Marco Pesenti Gritti
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2, or (at your option)
7  *  any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  *
18  *  $Id$
19  */
20
21 #ifndef EV_DOCUMENT_H
22 #define EV_DOCUMENT_H
23
24 #include <glib-object.h>
25 #include <glib.h>
26
27 G_BEGIN_DECLS
28
29 #define EV_TYPE_DOCUMENT            (ev_document_get_type ())
30 #define EV_DOCUMENT(o)              (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT, EvDocument))
31 #define EV_DOCUMENT_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT, EvDocumentIface))
32 #define EV_IS_DOCUMENT(o)           (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT))
33 #define EV_IS_DOCUMENT_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT))
34 #define EV_DOCUMENT_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT, EvDocumentIface))
35
36 typedef struct _EvDocument      EvDocument;
37 typedef struct _EvDocumentIface EvDocumentIface;
38
39 struct _EvDocumentIface
40 {
41         GTypeInterface base_iface;
42
43         /* Methods  */
44         void        (* load)            (EvDocument *document,
45                                          const char *uri,
46                                          GError     *error);
47         int         (* get_n_pages)     (EvDocument *document);
48         void        (* set_page)        (EvDocument  *document,
49                                          int          page);
50         void        (* set_target)      (EvDocument  *document,
51                                          GdkDrawable *target);
52         void        (* set_page_rect)   (EvDocument  *document,
53                                          int          x,
54                                          int          y,
55                                          int          width,
56                                          int          height);
57         void         (* render)        (EvDocument   *document,
58                                         int           clip_x,
59                                         int           clip_y,
60                                         int           clip_width,
61                                         int           clip_height);
62 };
63
64 GType ev_document_get_type (void);
65
66 void ev_document_load          (EvDocument  *document,
67                                 const char  *uri,
68                                 GError      *error);
69 int  ev_document_get_n_pages   (EvDocument  *document);
70 void ev_document_set_page      (EvDocument  *document,
71                                 int          page);
72 void ev_document_set_target    (EvDocument  *document,
73                                 GdkDrawable *target);
74 void ev_document_set_page_rect (EvDocument  *document,
75                                 int          x,
76                                 int          y,
77                                 int          width,
78                                 int          height);
79 void ev_document_render        (EvDocument  *document,
80                                 int          clip_x,
81                                 int          clip_y,
82                                 int          clip_width,
83                                 int          clip_height);
84
85 G_END_DECLS
86
87 #endif