]> Pileus Git - ~andy/gtk/blob - gtk/gtkprintoperation-private.h
d1c6a7f81280d343e235944d210a1d1f2e11e35f
[~andy/gtk] / gtk / gtkprintoperation-private.h
1 /* GTK - The GIMP Toolkit
2  * gtkprintoperation.h: Print Operation
3  * Copyright (C) 2006, Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __GTK_PRINT_OPERATION_PRIVATE_H__
22 #define __GTK_PRINT_OPERATION_PRIVATE_H__
23
24 #include "gtkprintoperation.h"
25
26 G_BEGIN_DECLS
27
28 struct _GtkPrintOperationPrivate
29 {
30   GtkPrintStatus status;
31   gchar *status_string;
32   GtkPageSetup *default_page_setup;
33   GtkPrintSettings *print_settings;
34   gchar *job_name;
35   gint nr_of_pages;
36   gint current_page;
37   GtkUnit unit;
38   gchar *pdf_target;
39   guint use_full_page      : 1;
40   guint show_dialog        : 1;
41   guint track_print_status : 1;
42   guint cancelled          : 1;
43
44   guint print_pages_idle_id;
45
46   /* Data for the print job: */
47   cairo_surface_t *surface;
48   gdouble dpi_x, dpi_y;
49
50   GtkPrintPages print_pages;
51   GtkPageRange *page_ranges;
52   gint num_page_ranges;
53   
54   gint manual_num_copies;
55   guint manual_collation   : 1;
56   guint manual_reverse     : 1;
57   guint manual_orientation : 1;
58   double manual_scale;
59   GtkPageSet manual_page_set;
60   GtkWidget *custom_widget;
61   
62   gpointer platform_data;
63   GDestroyNotify free_platform_data;
64
65   void (*start_page) (GtkPrintOperation *operation,
66                       GtkPrintContext   *print_context,
67                       GtkPageSetup      *page_setup);
68   void (*end_page)   (GtkPrintOperation *operation,
69                       GtkPrintContext   *print_context);
70   void (*end_run)    (GtkPrintOperation *operation,
71                       gboolean           wait);
72 };
73
74 GtkPrintOperationResult _gtk_print_operation_platform_backend_run_dialog (GtkPrintOperation *operation,
75                                                                           GtkWindow         *parent,
76                                                                           gboolean          *do_print,
77                                                                           GError           **error);
78
79 typedef void (* GtkPrintOperationPrintFunc) (GtkPrintOperation *op,
80                                              gboolean           wait);
81
82 void _gtk_print_operation_platform_backend_run_dialog_async (GtkPrintOperation          *op,
83                                                              GtkWindow                  *parent,
84                                                              GtkPrintOperationPrintFunc  print_cb);
85
86 void _gtk_print_operation_set_status (GtkPrintOperation *op,
87                                       GtkPrintStatus     status,
88                                       const gchar       *string);
89
90 /* GtkPrintContext private functions: */
91
92 GtkPrintContext *_gtk_print_context_new                             (GtkPrintOperation *op);
93 void             _gtk_print_context_set_page_setup                  (GtkPrintContext   *context,
94                                                                      GtkPageSetup      *page_setup);
95 void             _gtk_print_context_translate_into_margin           (GtkPrintContext   *context);
96 void             _gtk_print_context_rotate_according_to_orientation (GtkPrintContext   *context);
97
98 G_END_DECLS
99
100 #endif /* __GTK_PRINT_OPERATION_PRIVATE_H__ */