]> Pileus Git - ~andy/gtk/blob - gtk/gtkprintjob.h
Add a GTK_PRINT_CAPABILITY_GENERATE_PDF capability.
[~andy/gtk] / gtk / gtkprintjob.h
1 /* GtkPrintJob 
2  * Copyright (C) 2006 Red Hat,Inc. 
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_PRINT_JOB_H__
20 #define __GTK_PRINT_JOB_H__
21
22 #include <glib-object.h>
23 #include <cairo.h>
24
25 #include <gtk/gtkprinter.h>
26 #include <gtk/gtkprintoperation.h>
27
28 G_BEGIN_DECLS
29
30 #define GTK_TYPE_PRINT_JOB                  (gtk_print_job_get_type ())
31 #define GTK_PRINT_JOB(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_JOB, GtkPrintJob))
32 #define GTK_PRINT_JOB_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PRINT_JOB, GtkPrintJobClass))
33 #define GTK_IS_PRINT_JOB(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_JOB))
34 #define GTK_IS_PRINT_JOB_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PRINT_JOB))
35 #define GTK_PRINT_JOB_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PRINT_JOB, GtkPrintJobClass))
36
37 typedef enum
38 {
39   GTK_PRINT_CAPABILITY_PAGE_SET     = 1 << 0,
40   GTK_PRINT_CAPABILITY_COPIES       = 1 << 1,
41   GTK_PRINT_CAPABILITY_COLLATE      = 1 << 2,
42   GTK_PRINT_CAPABILITY_REVERSE      = 1 << 3,
43   GTK_PRINT_CAPABILITY_SCALE        = 1 << 4,
44   GTK_PRINT_CAPABILITY_GENERATE_PDF = 1 << 5
45 } GtkPrintCapabilities;
46
47 typedef struct _GtkPrintJob          GtkPrintJob;
48 typedef struct _GtkPrintJobClass     GtkPrintJobClass;
49 typedef struct _GtkPrintJobPrivate   GtkPrintJobPrivate;
50
51 typedef void (*GtkPrintJobCompleteFunc) (GtkPrintJob *print_job,
52                                          gpointer     user_data, 
53                                          GError      *error);
54
55 struct _GtkPrinter;
56
57 struct _GtkPrintJob
58 {
59   GObject parent_instance;
60
61   GtkPrintJobPrivate *priv;
62
63   /* Settings the client has to implement:
64    * (These are read-only, set at initialization)
65    */
66   GtkPrintPages print_pages;
67   GtkPageRange *page_ranges;
68   gint num_page_ranges;
69   gboolean rotate_to_orientation;
70   
71   GtkPageSet page_set;
72   gint num_copies;
73   gboolean collate;
74   gboolean reverse;
75   gdouble scale;
76 };
77
78 struct _GtkPrintJobClass
79 {
80   GObjectClass parent_class;
81
82   void (*status_changed) (GtkPrintJob *job);
83
84   /* Padding for future expansion */
85   void (*_gtk_reserved1) (void);
86   void (*_gtk_reserved2) (void);
87   void (*_gtk_reserved3) (void);
88   void (*_gtk_reserved4) (void);
89   void (*_gtk_reserved5) (void);
90   void (*_gtk_reserved6) (void);
91   void (*_gtk_reserved7) (void);
92 };
93
94 GType                    gtk_print_job_get_type               (void) G_GNUC_CONST;
95 GtkPrintJob             *gtk_print_job_new                    (const gchar              *title,
96                                                                GtkPrinter               *printer,
97                                                                GtkPrintSettings         *settings,
98                                                                GtkPageSetup             *page_setup);
99 GtkPrintSettings        *gtk_print_job_get_settings           (GtkPrintJob              *job);
100 GtkPrinter              *gtk_print_job_get_printer            (GtkPrintJob              *job);
101 G_CONST_RETURN gchar    *gtk_print_job_get_title              (GtkPrintJob              *job);
102 GtkPrintStatus           gtk_print_job_get_status             (GtkPrintJob              *job);
103 gboolean                 gtk_print_job_set_source_file        (GtkPrintJob              *job,
104                                                                const gchar              *filename,
105                                                                GError                  **error);
106 cairo_surface_t         *gtk_print_job_get_surface            (GtkPrintJob              *job,
107                                                                GError                  **error);
108 void                     gtk_print_job_set_track_print_status (GtkPrintJob              *job,
109                                                                gboolean                  track_status);
110 gboolean                 gtk_print_job_get_track_print_status (GtkPrintJob              *job);
111 gboolean                 gtk_print_job_send                   (GtkPrintJob              *job,
112                                                                GtkPrintJobCompleteFunc   callback,
113                                                                gpointer                  user_data,
114                                                                GDestroyNotify            dnotify,
115                                                                GError                  **error);
116
117 GType                    gtk_print_capabilities_get_type      (void) G_GNUC_CONST;
118
119 G_END_DECLS
120
121 #endif /* __GTK_PRINT_JOB_H__ */