]> Pileus Git - ~andy/gtk/blob - gtk/gtkprintcontext.h
Merge the gtk-printing branch. For more detailed ChangeLog entries, see
[~andy/gtk] / gtk / gtkprintcontext.h
1 /* GTK - The GIMP Toolkit
2  * gtkprintcontext.h: Print Context
3  * Copyright (C) 2006, Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library 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 GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __GTK_PRINT_CONTEXT_H__
22 #define __GTK_PRINT_CONTEXT_H__
23
24 #include <glib-object.h>
25 #include <pango/pango-layout.h>
26 #include "gtkenums.h"
27 #include "gtkpagesetup.h"
28
29 G_BEGIN_DECLS
30
31 typedef struct _GtkPrintContext GtkPrintContext;
32
33 #define GTK_TYPE_PRINT_CONTEXT    (gtk_print_context_get_type ())
34 #define GTK_PRINT_CONTEXT(obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_CONTEXT, GtkPrintContext))
35 #define GTK_IS_PRINT_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_CONTEXT))
36
37 GType          gtk_print_context_get_type (void) G_GNUC_CONST;
38
39
40 /* Rendering */
41 cairo_t *     gtk_print_context_get_cairo      (GtkPrintContext *context);
42
43 GtkPageSetup *gtk_print_context_get_page_setup (GtkPrintContext *context);
44 gdouble       gtk_print_context_get_width      (GtkPrintContext *context);
45 gdouble       gtk_print_context_get_height     (GtkPrintContext *context);
46 gdouble       gtk_print_context_get_dpi_x      (GtkPrintContext *context);
47 gdouble       gtk_print_context_get_dpi_y      (GtkPrintContext *context);
48
49 /* Fonts */
50 PangoFontMap *gtk_print_context_get_fontmap    (GtkPrintContext *context);
51 PangoContext *gtk_print_context_create_context (GtkPrintContext *context);
52 PangoLayout * gtk_print_context_create_layout  (GtkPrintContext *context);
53
54
55 G_END_DECLS
56
57 #endif /* __GTK_PRINT_CONTEXT_H__ */