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