]> Pileus Git - ~andy/gtk/blob - modules/printbackends/papi/gtkprintbackendpapi.h
Change FSF Address
[~andy/gtk] / modules / printbackends / papi / gtkprintbackendpapi.h
1 /* GTK - The GIMP Toolkit
2  * gtkprintbackendpapi.h: Default implementation of GtkPrintBackend 
3  * for printing to papi 
4  * Copyright (C) 2003, Red Hat, Inc.
5  * Copyright (C) 2009, Sun Microsystems, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef __GTK_PRINT_BACKEND_PAPI_H__
22 #define __GTK_PRINT_BACKEND_PAPI_H__
23
24 #include <glib-object.h>
25 #include "gtkprintbackend.h"
26
27 G_BEGIN_DECLS
28
29 #define GTK_TYPE_PRINT_BACKEND_PAPI            (gtk_print_backend_papi_get_type ())
30 #define GTK_PRINT_BACKEND_PAPI(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_BACKEND_PAPI, GtkPrintBackendPapi))
31 #define GTK_IS_PRINT_BACKEND_PAPI(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_BACKEND_PAPI))
32
33 typedef struct _GtkPrintBackendPapi      GtkPrintBackendPapi;
34
35 GtkPrintBackend *gtk_print_backend_papi_new      (void);
36 GType          gtk_print_backend_papi_get_type (void) G_GNUC_CONST;
37
38 G_END_DECLS
39
40 #endif /* __GTK_PRINT_BACKEND_PAPI_H__ */
41
42