aboutsummaryrefslogtreecommitdiff
path: root/src/print.c
blob: ca89cc9c5ba902ab6ae03d39f7eb8cc0943787e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/*
 * print.c
 *
 * Copyright © 2016-2019 Thomas White <taw@bitwiz.org.uk>
 *
 * This file is part of Colloquium.
 *
 * Colloquium is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */


#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <gtk/gtk.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>

#include <libintl.h>
#define _(x) gettext(x)

#include "narrative.h"
#include "narrative_window.h"
#include "slide_render_cairo.h"
#include "narrative_render_cairo.h"


static GtkPrintSettings *print_settings = NULL;

struct print_stuff
{
	Narrative *n;

	/* Printing config */
	GtkWidget *combo;
	int slides_only;

	/* When printing slides only */
	Slide *slide;

	/* When printing narrative */
	int nar_line;
	int start_paras[256];
	int slide_number;
};


static void print_widget_apply(GtkPrintOperation *op, GtkWidget *widget,
                               void *vp)
{
	const char *id;
	struct print_stuff *ps = vp;

	id = gtk_combo_box_get_active_id(GTK_COMBO_BOX(ps->combo));
	if ( strcmp(id, "slides") == 0 ) {
		ps->slides_only = 1;
	} else {
		ps->slides_only = 0;
	}
}


static GObject *print_widget(GtkPrintOperation *op, void *vp)
{
	GtkWidget *vbox;
	GtkWidget *cbox;
	struct print_stuff *ps = vp;

	vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 10);
	gtk_container_set_border_width(GTK_CONTAINER(vbox), 10);

	/* What do you want to print? */
	cbox = gtk_combo_box_text_new();
	gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(cbox), "slides",
	                          _("Print the slides only"));
	gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(cbox), "narrative",
	                          _("Print the narrative"));
	gtk_box_pack_start(GTK_BOX(vbox), cbox, FALSE, FALSE, 10);
	gtk_combo_box_set_active(GTK_COMBO_BOX(cbox), 1);
	ps->combo = cbox;

	gtk_widget_show_all(vbox);
	return G_OBJECT(vbox);

}


static void print_slide_only(GtkPrintOperation *op, GtkPrintContext *ctx,
                             struct print_stuff *ps, int page)
{
	cairo_t *cr;
	PangoContext *pc;
	double w, h;
	double sw, sh;
	double slide_width, slide_height;
	struct slide_pos sel;
	int slidenum;

	cr = gtk_print_context_get_cairo_context(ctx);
	pc = gtk_print_context_create_pango_context(ctx);
	w = gtk_print_context_get_width(ctx);
	h = gtk_print_context_get_height(ctx);

	slide_get_logical_size(ps->slide, narrative_get_stylesheet(ps->n),
	                       &sw, &sh);

	cairo_rectangle(cr, 0.0, 0.0, w, h);
	cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
	cairo_fill(cr);

	if ( sw/sh > w/h ) {
		/* Slide is too wide.  Letterboxing top/bottom */
		slide_width = w;
		slide_height = w * sh/sw;
	} else {
		/* Letterboxing at sides */
		slide_width = h * sw/sh;
		slide_height = h;
	}

	printf("%f x %f ---> %f x %f\n", w, h, slide_width, slide_height);

	cairo_scale(cr, slide_width/sw, slide_width/sw);

	sel.para = 0;  sel.pos = 0;  sel.trail = 0;
	slidenum = narrative_get_slide_number_for_slide(ps->n,  ps->slide);
	slide_render_cairo(ps->slide, cr, narrative_get_imagestore(ps->n),
	                   narrative_get_stylesheet(ps->n), slidenum,
	                   pango_language_get_default(), pc,
	                   NULL, sel, sel);

	ps->slide = narrative_get_slide_by_number(ps->n, slidenum+1);
}


static void begin_narrative_print(GtkPrintOperation *op, GtkPrintContext *ctx,
                                  struct print_stuff *ps)
{
	PangoContext *pc;
	int i, n_pages;
	double h, page_height;
	struct edit_pos sel;

	ps->slide_number = 1;

	pc = gtk_print_context_create_pango_context(ctx);

	sel.para = 0;  sel.pos = 0;  sel.trail = 0;
	narrative_wrap_range(ps->n, narrative_get_stylesheet(ps->n),
	                     pango_language_get_default(), pc,
	                     gtk_print_context_get_width(ctx),
	                     narrative_get_imagestore(ps->n),
	                     0, narrative_get_num_items(ps->n), sel, sel);

	/* Count pages */
	page_height = gtk_print_context_get_height(ctx);
	h = 0.0;
	n_pages = 1;
	ps->start_paras[0] = 0;
	for ( i=0; i<narrative_get_num_items(ps->n); i++ ) {
		if ( h + narrative_item_get_height(ps->n, i) > page_height ) {
			/* Paragraph does not fit on page */
			ps->start_paras[n_pages] = i;
			n_pages++;
			h = 0.0;
		}
		h += narrative_item_get_height(ps->n, i);
	}
	gtk_print_operation_set_n_pages(op, n_pages);
	g_object_unref(pc);
}


static void print_narrative(GtkPrintOperation *op, GtkPrintContext *ctx,
                            struct print_stuff *ps, gint page)
{
	int i;
	double h, page_height;
	cairo_t *cr;

	page_height = gtk_print_context_get_height(ctx);
	cr = gtk_print_context_get_cairo_context(ctx);

	h = 0.0;
	for ( i=ps->start_paras[page]; i<narrative_get_num_items(ps->n); i++ ) {

		/* Will this paragraph fit? */
		h += narrative_item_get_height(ps->n, i);
		if ( h > page_height ) return;

		cairo_save(cr);
		narrative_render_item_cairo(ps->n, cr, i);
		cairo_restore(cr);

		cairo_translate(cr, 0.0, narrative_item_get_height(ps->n, i));

	}
}


static void print_begin(GtkPrintOperation *op, GtkPrintContext *ctx, void *vp)
{
	struct print_stuff *ps = vp;

	if ( ps->slides_only ) {
		gtk_print_operation_set_n_pages(op, narrative_get_num_slides(ps->n));
		ps->slide = narrative_get_slide_by_number(ps->n, 0);
	} else {
		begin_narrative_print(op, ctx, ps);
	}
}


static void print_draw(GtkPrintOperation *op, GtkPrintContext *ctx, gint page,
                       void *vp)
{
	struct print_stuff *ps = vp;
	if ( ps->slides_only ) {
		print_slide_only(op, ctx, ps, page);
	} else {
		print_narrative(op, ctx, ps, page);
	}
}


void run_printing(Narrative *n, GtkWidget *parent)
{
	GtkPrintOperation *print;
	GtkPrintOperationResult res;
	struct print_stuff *ps;

	ps = malloc(sizeof(struct print_stuff));
	if ( ps == NULL ) return;
	ps->n = n;
	ps->nar_line = 0;

	print = gtk_print_operation_new();
	if ( print_settings != NULL ) {
		gtk_print_operation_set_print_settings(print, print_settings);
	}

	g_signal_connect(print, "create-custom-widget",
			 G_CALLBACK(print_widget), ps);
	g_signal_connect(print, "custom-widget-apply",
			 G_CALLBACK(print_widget_apply), ps);
	g_signal_connect(print, "begin_print", G_CALLBACK(print_begin), ps);
	g_signal_connect(print, "draw_page", G_CALLBACK(print_draw), ps);

	res = gtk_print_operation_run(print,
	                              GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
	                              GTK_WINDOW(parent), NULL);

	if ( res == GTK_PRINT_OPERATION_RESULT_APPLY ) {
		if ( print_settings != NULL ) {
			g_object_unref(print_settings);
		}
		print_settings = g_object_ref(gtk_print_operation_get_print_settings(print));
	}
	g_object_unref(print);
}