]> www.fi.muni.cz Git - evince.git/blob - backend/ev-document.h
forgot a file
[evince.git] / backend / ev-document.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /*
3  *  Copyright (C) 2000-2003 Marco Pesenti Gritti
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  *  $Id$
20  */
21
22 #ifndef EV_DOCUMENT_H
23 #define EV_DOCUMENT_H
24
25 #include <glib-object.h>
26 #include <glib.h>
27 #include <gdk/gdk.h>
28
29 G_BEGIN_DECLS
30
31 typedef struct
32 {
33   int page_num;
34   GdkRectangle highlight_area;
35 } EvFindResult;
36
37 #define EV_TYPE_DOCUMENT            (ev_document_get_type ())
38 #define EV_DOCUMENT(o)              (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT, EvDocument))
39 #define EV_DOCUMENT_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT, EvDocumentIface))
40 #define EV_IS_DOCUMENT(o)           (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT))
41 #define EV_IS_DOCUMENT_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT))
42 #define EV_DOCUMENT_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT, EvDocumentIface))
43
44 typedef struct _EvDocument      EvDocument;
45 typedef struct _EvDocumentIface EvDocumentIface;
46
47 struct _EvDocumentIface
48 {
49         GTypeInterface base_iface;
50
51         /* Methods  */
52         gboolean    (* load)            (EvDocument *document,
53                                          const char *uri,
54                                          GError    **error);
55         int         (* get_n_pages)     (EvDocument *document);
56         void        (* set_page)        (EvDocument  *document,
57                                          int          page);
58         void        (* set_target)      (EvDocument  *document,
59                                          GdkDrawable *target);
60         void        (* set_scale)       (EvDocument  *document,
61                                          double       scale);
62         void        (* set_page_offset) (EvDocument  *document,
63                                          int          x,
64                                          int          y);
65         void        (* get_page_size)   (EvDocument  *document,
66                                          int         *width,
67                                          int         *height);
68         void        (* render)          (EvDocument  *document,
69                                          int          clip_x,
70                                          int          clip_y,
71                                          int          clip_width,
72                                          int          clip_height);
73         
74         void         (* begin_find)     (EvDocument    *document,
75                                          const char    *search_string,
76                                          gboolean       case_sensitive);
77         void         (* end_find)       (EvDocument    *document);
78
79         /* Signals */
80
81         /* "found" emitted at least 1 time (possibly with n_results == 0)
82          * for any call to begin_find.
83          */
84         void         (* found)          (EvDocument         *document,
85                                          const EvFindResult *results,
86                                          int                 n_results,
87                                          double              percent_complete);
88 };
89
90 GType ev_document_get_type (void);
91
92 gboolean ev_document_load            (EvDocument   *document,
93                                       const char   *uri,
94                                       GError      **error);
95 int      ev_document_get_n_pages     (EvDocument   *document);
96 void     ev_document_set_page        (EvDocument   *document,
97                                       int           page);
98 void     ev_document_set_target      (EvDocument   *document,
99                                       GdkDrawable  *target);
100 void     ev_document_set_scale       (EvDocument   *document,
101                                       double        scale);
102 void     ev_document_set_page_offset (EvDocument   *document,
103                                       int           x,
104                                       int           y);
105 void     ev_document_get_page_size   (EvDocument   *document,
106                                       int          *width,
107                                       int          *height);
108 void     ev_document_render          (EvDocument   *document,
109                                       int           clip_x,
110                                       int           clip_y,
111                                       int           clip_width,
112                                       int           clip_height);
113 void     ev_document_begin_find    (EvDocument   *document,
114                                     const char   *search_string,
115                                     gboolean      case_sensitive);
116 void     ev_document_end_find      (EvDocument   *document);
117
118 G_END_DECLS
119
120 #endif