2006-04-21 15:09:32 +00:00
|
|
|
/* GtkPrinterCups
|
|
|
|
* Copyright (C) 2006 John (J5) Palmieri <johnp@redhat.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2008-04-18 14:51:26 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
#ifndef __GTK_PRINTER_CUPS_H__
|
|
|
|
#define __GTK_PRINTER_CUPS_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <cups/cups.h>
|
|
|
|
#include <cups/ppd.h>
|
2009-09-23 12:35:26 +00:00
|
|
|
#include "gtkcupsutils.h"
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2008-05-29 09:34:53 +00:00
|
|
|
#include <gtk/gtkunixprint.h>
|
2011-06-03 13:25:54 +00:00
|
|
|
#include <gtk/gtkprinter-private.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_COLORD
|
|
|
|
#include <colord.h>
|
|
|
|
#endif
|
2006-04-21 15:09:32 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GTK_TYPE_PRINTER_CUPS (gtk_printer_cups_get_type ())
|
|
|
|
#define GTK_PRINTER_CUPS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINTER_CUPS, GtkPrinterCups))
|
|
|
|
#define GTK_PRINTER_CUPS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PRINTER_CUPS, GtkPrinterCupsClass))
|
|
|
|
#define GTK_IS_PRINTER_CUPS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINTER_CUPS))
|
|
|
|
#define GTK_IS_PRINTER_CUPS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PRINTER_CUPS))
|
|
|
|
#define GTK_PRINTER_CUPS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PRINTER_CUPS, GtkPrinterCupsClass))
|
|
|
|
|
|
|
|
typedef struct _GtkPrinterCups GtkPrinterCups;
|
|
|
|
typedef struct _GtkPrinterCupsClass GtkPrinterCupsClass;
|
|
|
|
typedef struct _GtkPrinterCupsPrivate GtkPrinterCupsPrivate;
|
|
|
|
|
|
|
|
struct _GtkPrinterCups
|
|
|
|
{
|
|
|
|
GtkPrinter parent_instance;
|
|
|
|
|
|
|
|
gchar *device_uri;
|
|
|
|
gchar *printer_uri;
|
|
|
|
gchar *hostname;
|
|
|
|
gint port;
|
2009-09-24 13:34:56 +00:00
|
|
|
gchar **auth_info_required;
|
2006-04-21 15:09:32 +00:00
|
|
|
|
|
|
|
ipp_pstate_t state;
|
|
|
|
gboolean reading_ppd;
|
2006-07-06 17:55:32 +00:00
|
|
|
gchar *ppd_name;
|
2006-04-21 15:09:32 +00:00
|
|
|
ppd_file_t *ppd_file;
|
2009-08-05 08:34:27 +00:00
|
|
|
|
|
|
|
gchar *default_cover_before;
|
|
|
|
gchar *default_cover_after;
|
2009-09-23 12:35:26 +00:00
|
|
|
|
|
|
|
gboolean remote;
|
|
|
|
guint get_remote_ppd_poll;
|
2009-09-30 16:40:11 +00:00
|
|
|
gint get_remote_ppd_attempts;
|
2009-09-23 12:35:26 +00:00
|
|
|
GtkCupsConnectionTest *remote_cups_connection_test;
|
2011-06-03 13:25:54 +00:00
|
|
|
#ifdef HAVE_COLORD
|
|
|
|
CdClient *colord_client;
|
|
|
|
CdDevice *colord_device;
|
|
|
|
CdProfile *colord_profile;
|
|
|
|
GCancellable *colord_cancellable;
|
|
|
|
gchar *colord_title;
|
|
|
|
gchar *colord_qualifier;
|
|
|
|
#endif
|
2006-04-21 15:09:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkPrinterCupsClass
|
|
|
|
{
|
|
|
|
GtkPrinterClass parent_class;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gtk_printer_cups_get_type (void) G_GNUC_CONST;
|
|
|
|
void gtk_printer_cups_register_type (GTypeModule *module);
|
2011-06-03 13:25:54 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
GtkPrinterCups *gtk_printer_cups_new (const char *name,
|
2011-06-03 13:25:54 +00:00
|
|
|
GtkPrintBackend *backend,
|
|
|
|
gpointer colord_client);
|
2006-07-06 17:55:32 +00:00
|
|
|
ppd_file_t *gtk_printer_cups_get_ppd (GtkPrinterCups *printer);
|
2008-04-18 14:51:26 +00:00
|
|
|
const gchar *gtk_printer_cups_get_ppd_name (GtkPrinterCups *printer);
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2011-06-03 13:25:54 +00:00
|
|
|
#ifdef HAVE_COLORD
|
|
|
|
void gtk_printer_cups_update_settings (GtkPrinterCups *printer,
|
|
|
|
GtkPrintSettings *settings,
|
|
|
|
GtkPrinterOptionSet *set);
|
|
|
|
#endif
|
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_PRINTER_CUPS_H__ */
|