File: sourceview-print.c

package info (click to toggle)
anjuta 2%3A3.34.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 72,196 kB
  • sloc: ansic: 207,444; sh: 47,499; cpp: 11,461; makefile: 3,588; yacc: 2,821; perl: 2,094; lex: 1,546; xml: 904; python: 149; sql: 99; java: 10
file content (222 lines) | stat: -rw-r--r-- 8,063 bytes parent folder | download | duplicates (5)
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
/*
* This program 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 2 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/

#include "sourceview-print.h"
#include "sourceview-private.h"
#include <gtksourceview/gtksource.h>
#include <libanjuta/interfaces/ianjuta-document.h>

#define PRINT_LINEWRAP "print-linewrap"
#define PRINT_HEADER "print-header"
#define PRINT_FOOTER "print-footer"
#define PRINT_HIGHLIGHT "print-highlight"
#define PRINT_LINENUMBERS "print-linenumbers"

typedef struct _SourceviewPrinting SourceviewPrinting;

struct _SourceviewPrinting
{
	Sourceview* sv;
	GtkSourcePrintCompositor *compositor;
	AnjutaStatus* status;
};


static gboolean
paginate (GtkPrintOperation        *operation,
					GtkPrintContext          *context,
					SourceviewPrinting* printing)
{
	if (gtk_source_print_compositor_paginate (printing->compositor, context))
	{
		gint n_pages;
		anjuta_status_progress_tick (printing->status, NULL,
																 _("Preparing pages for printing"));
		n_pages = gtk_source_print_compositor_get_n_pages (printing->compositor);
		gtk_print_operation_set_n_pages (operation, n_pages);

		return TRUE;
	}

	return FALSE;
}


static void
draw_page (GtkPrintOperation        *operation,
					 GtkPrintContext          *context,
					 gint                      page_nr,
					 SourceviewPrinting* printing)
{
	gtk_source_print_compositor_draw_page (printing->compositor, context, page_nr);
}

static void
end_print (GtkPrintOperation        *operation,
           GtkPrintContext          *context,
           SourceviewPrinting* printing)
{
	g_object_unref (printing->compositor);
	g_slice_free (SourceviewPrinting, printing);
}

static void
custom_widget_apply (GtkPrintOperation* operation,
                     GtkWidget* widget,
                     SourceviewPrinting* printing)
{
	if (g_settings_get_boolean (printing->sv->priv->settings, PRINT_LINEWRAP))
	{
		gtk_source_print_compositor_set_wrap_mode (printing->compositor,
		                                           GTK_WRAP_WORD_CHAR);
	}
	else
		gtk_source_print_compositor_set_wrap_mode (printing->compositor,
		                                           GTK_WRAP_NONE);

	gtk_source_print_compositor_set_print_line_numbers (printing->compositor,
	                                                    g_settings_get_boolean (printing->sv->priv->settings,
	                                                                            PRINT_LINENUMBERS));

	gtk_source_print_compositor_set_print_header (printing->compositor,
	                                              g_settings_get_boolean (printing->sv->priv->settings,
	                                                                      PRINT_HEADER));
	gtk_source_print_compositor_set_print_footer (printing->compositor,
	                                              g_settings_get_boolean (printing->sv->priv->settings,
	                                                                      PRINT_FOOTER));

	gtk_source_print_compositor_set_highlight_syntax (printing->compositor,
	                                                  g_settings_get_boolean (printing->sv->priv->settings,
	                                                                          PRINT_HIGHLIGHT));
}

static GObject*
create_custom_widget (GtkPrintOperation* operation,
                      Sourceview* sv)
{
	GtkWidget* toggle_linewrap =
		gtk_check_button_new_with_label (_("Wrap lines"));
	GtkWidget* toggle_linenumbers =
		gtk_check_button_new_with_label (_("Line numbers"));
	GtkWidget* toggle_header =
		gtk_check_button_new_with_label (_("Header"));
	GtkWidget* toggle_footer =
		gtk_check_button_new_with_label (_("Footer"));
	GtkWidget* toggle_highlight =
		gtk_check_button_new_with_label (_("Highlight source code"));
	GtkWidget* vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 5);
	gtk_box_set_homogeneous (GTK_BOX(vbox), TRUE);

	g_settings_bind (sv->priv->settings, PRINT_LINEWRAP,
	                 toggle_linewrap, "active", G_SETTINGS_BIND_DEFAULT);
	g_settings_bind (sv->priv->settings, PRINT_LINENUMBERS,
	                 toggle_linenumbers, "active", G_SETTINGS_BIND_DEFAULT);
	g_settings_bind (sv->priv->settings, PRINT_HEADER,
	                 toggle_header, "active", G_SETTINGS_BIND_DEFAULT);
	g_settings_bind (sv->priv->settings, PRINT_FOOTER,
	                 toggle_footer, "active", G_SETTINGS_BIND_DEFAULT);
	g_settings_bind (sv->priv->settings, PRINT_HIGHLIGHT,
	                 toggle_highlight, "active", G_SETTINGS_BIND_DEFAULT);

	gtk_box_pack_start (GTK_BOX (vbox), toggle_linewrap, FALSE, FALSE, 5);
	gtk_box_pack_start (GTK_BOX (vbox), toggle_linenumbers, FALSE, FALSE, 5);
	gtk_box_pack_start (GTK_BOX (vbox), toggle_header, FALSE, FALSE, 5);
	gtk_box_pack_start (GTK_BOX (vbox), toggle_footer, FALSE, FALSE, 5);
	gtk_box_pack_start (GTK_BOX (vbox), toggle_highlight, FALSE, FALSE, 5);

	gtk_widget_show_all (vbox);

	return G_OBJECT (vbox);
}

static GtkPrintOperation*
print_setup (Sourceview* sv)
{

	GtkSourceView *view = GTK_SOURCE_VIEW (sv->priv->view);
	GtkSourcePrintCompositor *compositor;
	GtkPrintOperation *operation;
	SourceviewPrinting* printing = g_slice_new0(SourceviewPrinting);
	const gchar *filename;
	gchar *basename;

	filename = ianjuta_document_get_filename (IANJUTA_DOCUMENT (sv), NULL);
	basename = g_filename_display_basename (filename);

	compositor = gtk_source_print_compositor_new_from_view (view);

	gtk_source_print_compositor_set_header_format (compositor,
	                                               TRUE,
	                                               "%x",
	                                               basename,
	                                               "Page %N/%Q");

	gtk_source_print_compositor_set_footer_format (compositor,
	                                               TRUE,
	                                               "%T",
	                                               basename,
	                                               "Page %N/%Q");

	operation = gtk_print_operation_new ();

	gtk_print_operation_set_job_name (operation, basename);

	gtk_print_operation_set_show_progress (operation, TRUE);

	printing->compositor = compositor;
	printing->sv = sv;
	printing->status = anjuta_shell_get_status (sv->priv->plugin->shell, NULL);

	g_signal_connect (G_OBJECT (operation), "paginate",
			  G_CALLBACK (paginate), printing);
	g_signal_connect (G_OBJECT (operation), "draw-page",
										G_CALLBACK (draw_page), printing);
	g_signal_connect (G_OBJECT (operation), "end-print",
										G_CALLBACK (end_print), printing);
	g_signal_connect (G_OBJECT (operation), "create-custom-widget",
										G_CALLBACK (create_custom_widget), sv);
	g_signal_connect (G_OBJECT (operation), "custom-widget-apply",
										G_CALLBACK (custom_widget_apply), printing);

	anjuta_status_progress_reset (printing->status);
	anjuta_status_progress_add_ticks (printing->status, 100);
	g_free (basename);

	return operation;
}

void
sourceview_print(Sourceview* sv)
{
	GtkPrintOperation* operation = print_setup (sv);

	gtk_print_operation_run (operation,
	                         GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
	                         NULL, NULL);
	g_object_unref (operation);
}


void
sourceview_print_preview(Sourceview* sv)
{
	GtkPrintOperation* operation = print_setup (sv);
	gtk_print_operation_run (operation,
													 GTK_PRINT_OPERATION_ACTION_PREVIEW,
													 NULL, NULL);
	g_object_unref (operation);
}