]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document.c
Add support for double and triple click selections.
[evince.git] / libdocument / ev-document.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /*
3  *  Copyright (C) 2004 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  */
20
21 #include "config.h"
22
23 #include "ev-document.h"
24
25 #include "ev-backend-marshalers.h"
26
27 static void ev_document_class_init (gpointer g_class);
28
29
30 GMutex *ev_doc_mutex = NULL;
31 GMutex *ev_fc_mutex = NULL;
32
33 #define LOG(x) 
34 GType
35 ev_document_get_type (void)
36 {
37         static GType type = 0;
38
39         if (G_UNLIKELY (type == 0))
40         {
41                 const GTypeInfo our_info =
42                 {
43                         sizeof (EvDocumentIface),
44                         NULL,
45                         NULL,
46                         (GClassInitFunc)ev_document_class_init
47                 };
48
49                 type = g_type_register_static (G_TYPE_INTERFACE,
50                                                "EvDocument",
51                                                &our_info, (GTypeFlags)0);
52         }
53
54         return type;
55 }
56
57 GQuark
58 ev_document_error_quark (void)
59 {
60   static GQuark q = 0;
61   if (q == 0)
62     q = g_quark_from_static_string ("ev-document-error-quark");
63
64   return q;
65 }
66
67 static void
68 ev_document_class_init (gpointer g_class)
69 {
70 }
71
72 GMutex *
73 ev_document_get_doc_mutex (void)
74 {
75         if (ev_doc_mutex == NULL) {
76                 ev_doc_mutex = g_mutex_new ();
77         }
78         return ev_doc_mutex;
79 }
80
81 void
82 ev_document_doc_mutex_lock (void)
83 {
84         g_mutex_lock (ev_document_get_doc_mutex ());
85 }
86
87 void
88 ev_document_doc_mutex_unlock (void)
89 {
90         g_mutex_unlock (ev_document_get_doc_mutex ());
91 }
92
93 GMutex *
94 ev_document_get_fc_mutex (void)
95 {
96         if (ev_fc_mutex == NULL) {
97                 ev_fc_mutex = g_mutex_new ();
98         }
99         return ev_fc_mutex;
100 }
101
102 void
103 ev_document_fc_mutex_lock (void)
104 {
105         g_mutex_lock (ev_document_get_fc_mutex ());
106 }
107
108 void
109 ev_document_fc_mutex_unlock (void)
110 {
111         g_mutex_unlock (ev_document_get_fc_mutex ());
112 }
113
114 gboolean
115 ev_document_load (EvDocument  *document,
116                   const char  *uri,
117                   GError     **error)
118 {
119         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
120         gboolean retval;
121         LOG ("ev_document_load");
122         retval = iface->load (document, uri, error);
123
124         return retval;
125 }
126
127 gboolean
128 ev_document_save (EvDocument  *document,
129                   const char  *uri,
130                   GError     **error)
131 {
132         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
133         gboolean retval;
134
135         LOG ("ev_document_save");
136         retval = iface->save (document, uri, error);
137
138         return retval;
139 }
140
141 int
142 ev_document_get_n_pages (EvDocument  *document)
143 {
144         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
145         gint retval;
146
147         LOG ("ev_document_get_n_pages");
148         retval = iface->get_n_pages (document);
149
150         return retval;
151 }
152
153 void
154 ev_document_get_page_size   (EvDocument   *document,
155                              int           page,
156                              double       *width,
157                              double       *height)
158 {
159         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
160
161         LOG ("ev_document_get_page_size");
162         iface->get_page_size (document, page, width, height);
163 }
164
165 char *
166 ev_document_get_page_label(EvDocument    *document,
167                            int             page)
168 {
169         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
170
171         LOG ("ev_document_get_page_label");
172         if (iface->get_page_label == NULL)
173                 return NULL;
174
175         return iface->get_page_label (document, page);
176 }
177
178 EvDocumentInfo *
179 ev_document_get_info (EvDocument *document)
180 {
181         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
182
183         return iface->get_info (document);
184 }
185
186 gboolean
187 ev_document_has_attachments (EvDocument *document)
188 {
189         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
190
191         if (iface->has_attachments == NULL)
192                 return FALSE;
193         
194         return iface->has_attachments (document);
195 }
196
197 GList *
198 ev_document_get_attachments (EvDocument *document)
199 {
200         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
201         GList *retval;
202
203         LOG ("ev_document_get_attachments");
204         if (iface->get_attachments == NULL)
205                 return NULL;
206         retval = iface->get_attachments (document);
207
208         return retval;
209 }
210
211 cairo_surface_t *
212 ev_document_render (EvDocument      *document,
213                     EvRenderContext *rc)
214 {
215         EvDocumentIface *iface = EV_DOCUMENT_GET_IFACE (document);
216         cairo_surface_t *retval;
217
218         LOG ("ev_document_render_pixbuf");
219         g_assert (iface->render);
220
221         retval = iface->render (document, rc);
222
223         return retval;
224 }
225
226 void
227 ev_document_info_free (EvDocumentInfo *info)
228 {
229         if (info == NULL)
230                 return;
231
232         g_free (info->title);
233         g_free (info->format);
234         g_free (info->author);
235         g_free (info->subject);
236         g_free (info->keywords);
237         g_free (info->creator);
238         g_free (info->producer);
239         g_free (info->linearized);
240         g_free (info->security);
241         
242
243         g_free (info);
244 }
245
246
247 /* Compares two rects.  returns 0 if they're equal */
248 #define EPSILON 0.0000001
249
250 gint
251 ev_rect_cmp (EvRectangle *a,
252              EvRectangle *b)
253 {
254         if (a == b)
255                 return 0;
256         if (a == NULL || b == NULL)
257                 return 1;
258
259         return ! ((ABS (a->x1 - b->x1) < EPSILON) &&
260                   (ABS (a->y1 - b->y1) < EPSILON) &&
261                   (ABS (a->x2 - b->x2) < EPSILON) &&
262                   (ABS (a->y2 - b->y2) < EPSILON));
263 }
264
265
266