]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-misc.h
More #include cleanups. Again: reordering, single gtk.h includes and other
[evince.git] / libdocument / ev-document-misc.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_MISC_H
23 #define EV_DOCUMENT_MISC_H
24
25 #include <cairo.h>
26
27 #include <gdk-pixbuf/gdk-pixbuf.h>
28 #include <gtk/gtkstyle.h>
29
30 G_BEGIN_DECLS
31
32 GdkPixbuf *ev_document_misc_get_thumbnail_frame  (int           width,
33                                                   int           height,
34                                                   GdkPixbuf    *source_pixbuf);
35 void       ev_document_misc_get_page_border_size (gint          page_width,
36                                                   gint          page_height,
37                                                   GtkBorder    *border);
38 void       ev_document_misc_paint_one_page       (GdkDrawable  *drawable,
39                                                   GtkWidget    *widget,
40                                                   GdkRectangle *area,
41                                                   GtkBorder    *border,
42                                                   gboolean      highlight);
43
44 cairo_surface_t *ev_document_misc_surface_from_pixbuf (GdkPixbuf *pixbuf);
45 GdkPixbuf       *ev_document_misc_pixbuf_from_surface (cairo_surface_t *surface);
46 cairo_surface_t *ev_document_misc_surface_rotate_and_scale (cairo_surface_t *surface,
47                                                             gint             dest_width,
48                                                             gint             dest_height,
49                                                             gint             dest_rotation);
50
51 G_END_DECLS
52
53 #endif /* EV_DOCUMENT_MISC_H */