]> Pileus Git - ~andy/gtk/blob - gtk/gtkprintjob.h
Register GtkPrintCapabilities
[~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 } GtkPrintCapabilities;
45
46 typedef struct _GtkPrintJob          GtkPrintJob;
47 typedef struct _GtkPrintJobClass     GtkPrintJobClass;
48 typedef struct _GtkPrintJobPrivate   GtkPrintJobPrivate;
49
50 typedef void (*GtkPrintJobCompleteFunc) (GtkPrintJob *print_job,
51                                          gpointer     user_data, 
52                                          GError      *error);
53
54 struct _GtkPrinter;
55
56 struct _GtkPrintJob
57 {
58   GObject parent_instance;
59
60   GtkPrintJobPrivate *priv;
61
62   /* Settings the client has to implement:
63    * (These are read-only, set at initialization)
64    */
65   GtkPrintPages print_pages;
66   GtkPageRange *page_ranges;
67   gint num_page_ranges;
68   gboolean rotate_to_orientation;
69   
70   GtkPageSet page_set;
71   gint num_copies;
72   gboolean collate;
73   gboolean reverse;
74   gdouble scale;
75 };
76
77 struct _GtkPrintJobClass
78 {
79   GObjectClass parent_class;
80
81   void (*status_changed) (GtkPrintJob *job);
82
83   /* Padding for future expansion */
84   void (*_gtk_reserved1) (void);
85   void (*_gtk_reserved2) (void);
86   void (*_gtk_reserved3) (void);
87   void (*_gtk_reserved4) (void);
88   void (*_gtk_reserved5) (void);
89   void (*_gtk_reserved6) (void);
90   void (*_gtk_reserved7) (void);
91 };
92
93 GType                    gtk_print_job_get_type               (void) G_GNUC_CONST;
94 GtkPrintJob             *gtk_print_job_new                    (const gchar              *title,
95                                                                GtkPrinter               *printer,
96                                                                GtkPrintSettings         *settings,
97                                                                GtkPageSetup             *page_setup);
98 GtkPrintSettings        *gtk_print_job_get_settings           (GtkPrintJob              *job);
99 GtkPrinter              *gtk_print_job_get_printer            (GtkPrintJob              *job);
100 G_CONST_RETURN gchar    *gtk_print_job_get_title              (GtkPrintJob              *job);
101 GtkPrintStatus           gtk_print_job_get_status             (GtkPrintJob              *job);
102 gboolean                 gtk_print_job_set_source_file        (GtkPrintJob              *job,
103                                                                const gchar              *filename,
104                                                                GError                  **error);
105 cairo_surface_t         *gtk_print_job_get_surface            (GtkPrintJob              *job,
106                                                                GError                  **error);
107 void                     gtk_print_job_set_track_print_status (GtkPrintJob              *job,
108                                                                gboolean                  track_status);
109 gboolean                 gtk_print_job_get_track_print_status (GtkPrintJob              *job);
110 gboolean                 gtk_print_job_send                   (GtkPrintJob              *job,
111                                                                GtkPrintJobCompleteFunc   callback,
112                                                                gpointer                  user_data,
113                                                                GDestroyNotify            dnotify,
114                                                                GError                  **error);
115
116 GType                    gtk_print_capabilities_get_type      (void) G_GNUC_CONST;
117
118 G_END_DECLS
119
120 #endif /* __GTK_PRINT_JOB_H__ */