]> Pileus Git - ~andy/gtk/blob - modules/printbackends/papi/gtkprintbackendpapi.h
4eba665e00055acc017d10bcc5f61d4fef9d0c90
[~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, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GTK_PRINT_BACKEND_PAPI_H__
24 #define __GTK_PRINT_BACKEND_PAPI_H__
25
26 #include <glib-object.h>
27 #include "gtkprintbackend.h"
28
29 G_BEGIN_DECLS
30
31 #define GTK_TYPE_PRINT_BACKEND_PAPI            (gtk_print_backend_papi_get_type ())
32 #define GTK_PRINT_BACKEND_PAPI(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_BACKEND_PAPI, GtkPrintBackendPapi))
33 #define GTK_IS_PRINT_BACKEND_PAPI(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_BACKEND_PAPI))
34
35 typedef struct _GtkPrintBackendPapi      GtkPrintBackendPapi;
36
37 GtkPrintBackend *gtk_print_backend_papi_new      (void);
38 GType          gtk_print_backend_papi_get_type (void) G_GNUC_CONST;
39
40 G_END_DECLS
41
42 #endif /* __GTK_PRINT_BACKEND_PAPI_H__ */
43
44