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