]> Pileus Git - ~andy/gtk/blob - gtk/gtkprinter.h
Make gtk_printer_get_capabilities public, and move the
[~andy/gtk] / gtk / gtkprinter.h
1 /* GtkPrinter 
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 #ifndef __GTK_PRINTER_H__
20 #define __GTK_PRINTER_H__
21
22 #include <glib-object.h>
23 #include <cairo.h>
24 #include <gtk/gtkprintsettings.h>
25 #include <gtk/gtkpagesetup.h>
26
27 G_BEGIN_DECLS
28
29 #define GTK_TYPE_PRINTER                  (gtk_printer_get_type ())
30 #define GTK_PRINTER(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINTER, GtkPrinter))
31 #define GTK_PRINTER_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PRINTER, GtkPrinterClass))
32 #define GTK_IS_PRINTER(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINTER))
33 #define GTK_IS_PRINTER_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PRINTER))
34 #define GTK_PRINTER_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PRINTER, GtkPrinterClass))
35
36 /* Note, this type is manually registered with GObject in gtkprinter.c
37  * If you add any flags, update the registration as well!
38  */
39 typedef enum
40 {
41   GTK_PRINT_CAPABILITY_PAGE_SET     = 1 << 0,
42   GTK_PRINT_CAPABILITY_COPIES       = 1 << 1,
43   GTK_PRINT_CAPABILITY_COLLATE      = 1 << 2,
44   GTK_PRINT_CAPABILITY_REVERSE      = 1 << 3,
45   GTK_PRINT_CAPABILITY_SCALE        = 1 << 4,
46   GTK_PRINT_CAPABILITY_GENERATE_PDF = 1 << 5,
47   GTK_PRINT_CAPABILITY_GENERATE_PS  = 1 << 6,
48   GTK_PRINT_CAPABILITY_PREVIEW      = 1 << 7
49 } GtkPrintCapabilities;
50
51 typedef struct _GtkPrinter          GtkPrinter;
52 typedef struct _GtkPrinterClass     GtkPrinterClass;
53 typedef struct _GtkPrinterPrivate   GtkPrinterPrivate;
54 typedef struct _GtkPrintBackend     GtkPrintBackend;
55
56 struct _GtkPrintBackend;
57
58 struct _GtkPrinter
59 {
60   GObject parent_instance;
61
62   GtkPrinterPrivate *priv;
63 };
64
65 struct _GtkPrinterClass
66 {
67   GObjectClass parent_class;
68
69   void (*details_acquired) (GtkPrinter *printer, gboolean success);
70   
71   /* Padding for future expansion */
72   void (*_gtk_reserved1) (void);
73   void (*_gtk_reserved2) (void);
74   void (*_gtk_reserved3) (void);
75   void (*_gtk_reserved4) (void);
76   void (*_gtk_reserved5) (void);
77   void (*_gtk_reserved6) (void);
78   void (*_gtk_reserved7) (void);
79 };
80
81 GType                    gtk_printer_get_type          (void) G_GNUC_CONST;
82 GtkPrinter              *gtk_printer_new               (const gchar     *name,
83                                                         GtkPrintBackend *backend,
84                                                         gboolean         virtual_);
85 GtkPrintBackend         *gtk_printer_get_backend       (GtkPrinter      *printer);
86 G_CONST_RETURN gchar    *gtk_printer_get_name          (GtkPrinter      *printer);
87 G_CONST_RETURN gchar    *gtk_printer_get_state_message (GtkPrinter      *printer);
88 G_CONST_RETURN gchar    *gtk_printer_get_description   (GtkPrinter      *printer);
89 G_CONST_RETURN gchar    *gtk_printer_get_location      (GtkPrinter      *printer);
90 G_CONST_RETURN gchar    *gtk_printer_get_icon_name     (GtkPrinter      *printer);
91 gint                     gtk_printer_get_job_count     (GtkPrinter      *printer);
92 gboolean                 gtk_printer_is_active         (GtkPrinter      *printer);
93 gboolean                 gtk_printer_is_virtual        (GtkPrinter      *printer);
94 gboolean                 gtk_printer_is_default        (GtkPrinter      *printer);
95 gboolean                 gtk_printer_accepts_pdf       (GtkPrinter      *printer);
96 gboolean                 gtk_printer_accepts_ps        (GtkPrinter      *printer);
97 GList                   *gtk_printer_list_papers       (GtkPrinter      *printer);
98 gint                     gtk_printer_compare           (GtkPrinter *a,
99                                                         GtkPrinter *b);
100 gboolean                 gtk_printer_has_details       (GtkPrinter       *printer);
101 void                     gtk_printer_request_details   (GtkPrinter       *printer);
102 GtkPrintCapabilities     gtk_printer_get_capabilities  (GtkPrinter       *printer);
103
104 typedef gboolean (*GtkPrinterFunc) (GtkPrinter *printer,
105                                     gpointer    data);
106
107 void                     gtk_enumerate_printers        (GtkPrinterFunc   func,
108                                                         gpointer         data,
109                                                         GDestroyNotify   destroy,
110                                                         gboolean         wait);
111
112 G_END_DECLS
113
114 #endif /* __GTK_PRINTER_H__ */