Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-async-renderer.c
Go to the documentation of this file.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  *
19  */
20 
21 #include "config.h"
22 
23 #include "ev-async-renderer.h"
24 #include "ev-document.h"
25 
26 enum
27 {
30 };
31 
32 static guint signals[LAST_SIGNAL] = { 0 };
33 
34 G_DEFINE_INTERFACE (EvAsyncRenderer, ev_async_renderer, 0)
35 
36 static void
38 {
39  static gboolean initialized = FALSE;
40 
41  if (!initialized) {
43  g_signal_new ("render_finished",
45  G_SIGNAL_RUN_LAST,
46  G_STRUCT_OFFSET (EvAsyncRendererInterface, render_finished),
47  NULL, NULL,
48  g_cclosure_marshal_VOID__OBJECT,
49  G_TYPE_NONE,
50  1,
51  GDK_TYPE_PIXBUF);
52  initialized = TRUE;
53  }
54 }
55 
56 void
58  int page,
59  double scale,
60  int rotation)
61 {
62  EvAsyncRendererInterface *iface = EV_ASYNC_RENDERER_GET_IFACE (async_renderer);
63 
64  iface->render_pixbuf (async_renderer, page, scale, rotation);
65 }