]> Pileus Git - ~andy/gtk/blob - modules/printbackends/cups/gtkprintercups.h
e29b1b97398fb5bf2679ec4099dd57f99a1dd7ae
[~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 #include "gtkcupsutils.h"
27
28 #include <gtk/gtkunixprint.h>
29 #include <gtk/gtkprinter-private.h>
30
31 #ifdef HAVE_COLORD
32 #include <colord.h>
33 #endif
34
35 G_BEGIN_DECLS
36
37 #define GTK_TYPE_PRINTER_CUPS                  (gtk_printer_cups_get_type ())
38 #define GTK_PRINTER_CUPS(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINTER_CUPS, GtkPrinterCups))
39 #define GTK_PRINTER_CUPS_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PRINTER_CUPS, GtkPrinterCupsClass))
40 #define GTK_IS_PRINTER_CUPS(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINTER_CUPS))
41 #define GTK_IS_PRINTER_CUPS_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PRINTER_CUPS))
42 #define GTK_PRINTER_CUPS_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PRINTER_CUPS, GtkPrinterCupsClass))
43
44 typedef struct _GtkPrinterCups          GtkPrinterCups;
45 typedef struct _GtkPrinterCupsClass     GtkPrinterCupsClass;
46 typedef struct _GtkPrinterCupsPrivate   GtkPrinterCupsPrivate;
47
48 struct _GtkPrinterCups
49 {
50   GtkPrinter parent_instance;
51
52   gchar *device_uri;
53   gchar *printer_uri;
54   gchar *hostname;
55   gint port;
56   gchar **auth_info_required;
57
58   ipp_pstate_t state;
59   gboolean reading_ppd;
60   gchar      *ppd_name;
61   ppd_file_t *ppd_file;
62
63   gchar  *default_cover_before;
64   gchar  *default_cover_after;
65
66   gboolean remote;
67   guint get_remote_ppd_poll;
68   gint  get_remote_ppd_attempts;
69   GtkCupsConnectionTest *remote_cups_connection_test;
70 #ifdef HAVE_COLORD
71   CdClient     *colord_client;
72   CdDevice     *colord_device;
73   CdProfile    *colord_profile;
74   GCancellable *colord_cancellable;
75   gchar        *colord_title;
76   gchar        *colord_qualifier;
77 #endif
78 };
79
80 struct _GtkPrinterCupsClass
81 {
82   GtkPrinterClass parent_class;
83
84 };
85
86 GType                    gtk_printer_cups_get_type      (void) G_GNUC_CONST;
87 void                     gtk_printer_cups_register_type (GTypeModule     *module);
88
89 GtkPrinterCups          *gtk_printer_cups_new           (const char      *name,
90                                                          GtkPrintBackend *backend,
91                                                          gpointer         colord_client);
92 ppd_file_t              *gtk_printer_cups_get_ppd       (GtkPrinterCups  *printer);
93 const gchar             *gtk_printer_cups_get_ppd_name  (GtkPrinterCups  *printer);
94
95 #ifdef HAVE_COLORD
96 void                     gtk_printer_cups_update_settings (GtkPrinterCups *printer,
97                                                          GtkPrintSettings *settings,
98                                                          GtkPrinterOptionSet *set);
99 #endif
100
101 G_END_DECLS
102
103 #endif /* __GTK_PRINTER_CUPS_H__ */