]> Pileus Git - ~andy/gtk/blob - modules/printbackends/cups/gtkprintercups.h
Get default cover sheets from each printer separately
[~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
20 #ifndef __GTK_PRINTER_CUPS_H__
21 #define __GTK_PRINTER_CUPS_H__
22
23 #include <glib-object.h>
24 #include <cups/cups.h>
25 #include <cups/ppd.h>
26
27 #include <gtk/gtkunixprint.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   gchar      *ppd_name;
54   ppd_file_t *ppd_file;
55
56   gchar  *default_cover_before;
57   gchar  *default_cover_after;
58 };
59
60 struct _GtkPrinterCupsClass
61 {
62   GtkPrinterClass parent_class;
63
64 };
65
66 GType                    gtk_printer_cups_get_type      (void) G_GNUC_CONST;
67 void                     gtk_printer_cups_register_type (GTypeModule     *module);
68 GtkPrinterCups          *gtk_printer_cups_new           (const char      *name,
69                                                          GtkPrintBackend *backend);
70 ppd_file_t              *gtk_printer_cups_get_ppd       (GtkPrinterCups  *printer);
71 const gchar             *gtk_printer_cups_get_ppd_name  (GtkPrinterCups  *printer);
72
73 G_END_DECLS
74
75 #endif /* __GTK_PRINTER_CUPS_H__ */