]> Pileus Git - ~andy/gtk/blob - modules/printbackends/cups/gtkprintercups.h
7b14af61854110b8ce66f0212053a31575c7f156
[~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   gint    default_number_up;
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 #ifdef HAVE_AVAHI_BROWSING
79   gboolean  avahi_browsed;
80   gchar    *avahi_name;
81   gchar    *avahi_type;
82   gchar    *avahi_domain;
83 #endif
84   guchar ipp_version_major;
85   guchar ipp_version_minor;
86   gboolean supports_copies;
87   gboolean supports_collate;
88   gboolean supports_number_up;
89 };
90
91 struct _GtkPrinterCupsClass
92 {
93   GtkPrinterClass parent_class;
94
95 };
96
97 GType                    gtk_printer_cups_get_type      (void) G_GNUC_CONST;
98 void                     gtk_printer_cups_register_type (GTypeModule     *module);
99
100 GtkPrinterCups          *gtk_printer_cups_new           (const char      *name,
101                                                          GtkPrintBackend *backend,
102                                                          gpointer         colord_client);
103 ppd_file_t              *gtk_printer_cups_get_ppd       (GtkPrinterCups  *printer);
104 const gchar             *gtk_printer_cups_get_ppd_name  (GtkPrinterCups  *printer);
105
106 #ifdef HAVE_COLORD
107 void                     gtk_printer_cups_update_settings (GtkPrinterCups *printer,
108                                                          GtkPrintSettings *settings,
109                                                          GtkPrinterOptionSet *set);
110 #endif
111
112 G_END_DECLS
113
114 #endif /* __GTK_PRINTER_CUPS_H__ */