]> Pileus Git - ~andy/gtk/blob - modules/printbackends/file/gtkprintbackendfile.h
Change FSF Address
[~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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef __GTK_PRINT_BACKEND_FILE_H__
21 #define __GTK_PRINT_BACKEND_FILE_H__
22
23 #include <glib-object.h>
24 #include "gtkprintbackend.h"
25
26 G_BEGIN_DECLS
27
28 #define GTK_TYPE_PRINT_BACKEND_FILE    (gtk_print_backend_file_get_type ())
29 #define GTK_PRINT_BACKEND_FILE(obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_BACKEND_FILE, GtkPrintBackendFile))
30 #define GTK_IS_PRINT_BACKEND_FILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_BACKEND_FILE))
31
32 typedef struct _GtkPrintBackendFile    GtkPrintBackendFile;
33
34 GtkPrintBackend *gtk_print_backend_file_new      (void);
35 GType            gtk_print_backend_file_get_type (void) G_GNUC_CONST;
36
37 G_END_DECLS
38
39 #endif /* __GTK_PRINT_BACKEND_FILE_H__ */