]> Pileus Git - ~andy/gtk/blob - modules/printbackends/cups/gtkprintercups.h
Merge the gtk-printing branch. For more detailed ChangeLog entries, see
[~andy/gtk] / modules / printbackends / cups / gtkprintercups.h
1 /* GtkPrinterCups
2  * Copyright (C) 2006 John (J5) Palmieri <johnp@redhat.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #ifndef __GTK_PRINTER_CUPS_H__
20 #define __GTK_PRINTER_CUPS_H__
21
22 #include <glib.h>
23 #include <glib-object.h>
24 #include <cups/cups.h>
25 #include <cups/ppd.h>
26
27 #include "gtkprinter.h"
28
29 G_BEGIN_DECLS
30
31 #define GTK_TYPE_PRINTER_CUPS                  (gtk_printer_cups_get_type ())
32 #define GTK_PRINTER_CUPS(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINTER_CUPS, GtkPrinterCups))
33 #define GTK_PRINTER_CUPS_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PRINTER_CUPS, GtkPrinterCupsClass))
34 #define GTK_IS_PRINTER_CUPS(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINTER_CUPS))
35 #define GTK_IS_PRINTER_CUPS_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PRINTER_CUPS))
36 #define GTK_PRINTER_CUPS_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PRINTER_CUPS, GtkPrinterCupsClass))
37
38 typedef struct _GtkPrinterCups          GtkPrinterCups;
39 typedef struct _GtkPrinterCupsClass     GtkPrinterCupsClass;
40 typedef struct _GtkPrinterCupsPrivate   GtkPrinterCupsPrivate;
41
42 struct _GtkPrinterCups
43 {
44   GtkPrinter parent_instance;
45
46   gchar *device_uri;
47   gchar *printer_uri;
48   gchar *hostname;
49   gint port;
50
51   ipp_pstate_t state;
52   gboolean reading_ppd;
53   ppd_file_t *ppd_file;
54 };
55
56 struct _GtkPrinterCupsClass
57 {
58   GtkPrinterClass parent_class;
59
60 };
61
62 GType                    gtk_printer_cups_get_type      (void) G_GNUC_CONST;
63 void                     gtk_printer_cups_register_type (GTypeModule     *module);
64 GtkPrinterCups          *gtk_printer_cups_new           (const char      *name,
65                                                          GtkPrintBackend *backend);
66 ppd_file_t *             gtk_printer_cups_get_ppd       (GtkPrinterCups  *printer);
67
68 G_END_DECLS
69
70 #endif /* __GTK_PRINTER_CUPS_H__ */