]> Pileus Git - ~andy/gtk/blob - gtk/gtkprintoperation-private.h
bits from the preview patch
[~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 show_progress      : 1;
43   guint cancelled          : 1;
44   guint is_sync            : 1;
45
46   guint print_pages_idle_id;
47   guint show_progress_timeout_id;
48
49   /* Data for the print job: */
50   cairo_surface_t *surface;
51   gdouble dpi_x, dpi_y;
52
53   GtkPrintPages print_pages;
54   GtkPageRange *page_ranges;
55   gint num_page_ranges;
56   
57   gint manual_num_copies;
58   guint manual_collation   : 1;
59   guint manual_reverse     : 1;
60   guint manual_orientation : 1;
61   double manual_scale;
62   GtkPageSet manual_page_set;
63   GtkWidget *custom_widget;
64   gchar *custom_tab_label;
65   
66   gpointer platform_data;
67   GDestroyNotify free_platform_data;
68
69   GMainLoop *rloop; /* recursive mainloop */
70
71   void (*start_page) (GtkPrintOperation *operation,
72                       GtkPrintContext   *print_context,
73                       GtkPageSetup      *page_setup);
74   void (*end_page)   (GtkPrintOperation *operation,
75                       GtkPrintContext   *print_context);
76   void (*end_run)    (GtkPrintOperation *operation,
77                       gboolean           wait,
78                       gboolean           cancelled);
79 };
80
81 GtkPrintOperationResult _gtk_print_operation_platform_backend_run_dialog (GtkPrintOperation *operation,
82                                                                           GtkWindow         *parent,
83                                                                           gboolean          *do_print,
84                                                                           GError           **error);
85
86 typedef void (* GtkPrintOperationPrintFunc) (GtkPrintOperation *op,
87                                              GtkWindow         *parent);
88
89 void _gtk_print_operation_platform_backend_run_dialog_async (GtkPrintOperation          *op,
90                                                              GtkWindow                  *parent,
91                                                              GtkPrintOperationPrintFunc  print_cb);
92
93 void _gtk_print_operation_set_status (GtkPrintOperation *op,
94                                       GtkPrintStatus     status,
95                                       const gchar       *string);
96
97 /* GtkPrintContext private functions: */
98
99 GtkPrintContext *_gtk_print_context_new                             (GtkPrintOperation *op);
100 void             _gtk_print_context_set_page_setup                  (GtkPrintContext   *context,
101                                                                      GtkPageSetup      *page_setup);
102 void             _gtk_print_context_translate_into_margin           (GtkPrintContext   *context);
103 void             _gtk_print_context_rotate_according_to_orientation (GtkPrintContext   *context);
104
105 G_END_DECLS
106
107 #endif /* __GTK_PRINT_OPERATION_PRIVATE_H__ */