]> Pileus Git - ~andy/gtk/blob - modules/printbackends/file/gtkprintbackendfile.h
94b30c3d4fa1f434291a3a46c4ef8f9d40174d64
[~andy/gtk] / modules / printbackends / file / gtkprintbackendfile.h
1 /* GTK - The GIMP Toolkit
2  * gtkprintbackendpdf.h: Default implementation of GtkPrintBackend 
3  * for printing to a file
4  * Copyright (C) 2003, Red Hat, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __GTK_PRINT_BACKEND_FILE_H__
23 #define __GTK_PRINT_BACKEND_FILE_H__
24
25 #include <glib-object.h>
26 #include "gtkprintbackend.h"
27
28 G_BEGIN_DECLS
29
30 #define GTK_TYPE_PRINT_BACKEND_FILE    (gtk_print_backend_file_get_type ())
31 #define GTK_PRINT_BACKEND_FILE(obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_BACKEND_FILE, GtkPrintBackendFile))
32 #define GTK_IS_PRINT_BACKEND_FILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_BACKEND_FILE))
33
34 typedef struct _GtkPrintBackendFile    GtkPrintBackendFile;
35
36 GtkPrintBackend *gtk_print_backend_file_new      (void);
37 GType            gtk_print_backend_file_get_type (void) G_GNUC_CONST;
38
39 G_END_DECLS
40
41 #endif /* __GTK_PRINT_BACKEND_FILE_H__ */