File: pdf-properties-display.c

package info (click to toggle)
gpdf 2.8.2-1.2sarge6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,220 kB
  • ctags: 6,624
  • sloc: cpp: 61,071; ansic: 12,100; sh: 6,017; xml: 2,299; makefile: 589
file content (370 lines) | stat: -rw-r--r-- 9,504 bytes parent folder | download
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* PDF Properties Display Widget
 *
 * Copyright (C) 2003 Martin Kretzschmar
 *
 * Author:
 *   Martin Kretzschmar <Martin.Kretzschmar@inf.tu-dresden.de>
 *
 * GPdf 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.
 *
 * GPdf 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 */

#include <aconf.h>

#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <libgnome/gnome-macros.h>
#include <glade/glade.h>
#include "gpdf-util.h"
#include "pdf-properties-display.h"

#define PARENT_TYPE GTK_TYPE_HBOX
GPDF_CLASS_BOILERPLATE (GPdfPropertiesDisplay, gpdf_properties_display,
			GtkHBox, PARENT_TYPE)

struct _GPdfPropertiesDisplayPrivate
{
	GladeXML *glade_xml;
};

enum {
	PROP_0 = 0,
	PROP_TITLE,
	PROP_SUBJECT,
	PROP_AUTHOR,
	PROP_KEYWORDS,
	PROP_CREATOR,
	PROP_PRODUCER,
	PROP_CREATED,
	PROP_MODIFIED,
	PROP_SECURITY,
	PROP_PDFVERSION,
	PROP_NUMPAGES,
	PROP_OPTIMIZED
};

/* From eel */
/**
 * gpdf_gtk_label_make_bold.
 *
 * Switches the font of label to a bold equivalent.
 * @label: The label.
 **/
static void
gpdf_gtk_label_make_bold (GtkLabel *label)
{
	PangoFontDescription *font_desc;

	font_desc = pango_font_description_new ();

	pango_font_description_set_weight (font_desc,
					   PANGO_WEIGHT_BOLD);

	/* 
	 * This will only affect the weight of the font, the rest is
	 * from the current state of the widget, which comes from the
	 * theme or user prefs, since the font desc only has the
	 * weight flag turned on.
	 */
	gtk_widget_modify_font (GTK_WIDGET (label), font_desc);

	pango_font_description_free (font_desc);
}

static void
gpdf_properties_display_set_label_text (GPdfPropertiesDisplay *pdisplay,
					const gchar *widget_name,
					const gchar *text)
{
	GladeXML *xml;
	GtkLabel *label;

	g_return_if_fail (GPDF_IS_PROPERTIES_DISPLAY (pdisplay));

	xml = pdisplay->priv->glade_xml;
	if (xml == NULL)
		return;

	label = GTK_LABEL (glade_xml_get_widget (xml, widget_name));
	
	gtk_label_set_text (label, text);	
}

static void
gpdf_properties_display_set_property (GObject *object,
				      guint prop_id,
				      const GValue *value,
				      GParamSpec *pspec)
{
	GPdfPropertiesDisplay *pdisplay;

	pdisplay = GPDF_PROPERTIES_DISPLAY (object);
	switch ((gint)prop_id) {
	case PROP_TITLE: 
		gpdf_properties_display_set_label_text (
			pdisplay, "Title_Display", g_value_get_string (value));
		break;
	case PROP_SUBJECT:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"Subject_Display", g_value_get_string (value));
		break;
	case PROP_AUTHOR:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"Author_Display", g_value_get_string (value));
		break;
	case PROP_KEYWORDS:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"Keywords_Display", g_value_get_string (value));
		break;
	case PROP_CREATOR:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"Creator_Display", g_value_get_string (value));
		break;
	case PROP_PRODUCER:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"Producer_Display", g_value_get_string (value));
		break;
	case PROP_CREATED:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"Created_Display", g_value_get_string (value));
		break;
	case PROP_MODIFIED:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"Modified_Display", g_value_get_string (value));
		break;
	case PROP_SECURITY:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"Security_Display", g_value_get_string (value));
		break;
	case PROP_PDFVERSION:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"PDFVersion_Display", g_value_get_string (value));
		break;
	case PROP_NUMPAGES:
		gpdf_properties_display_set_label_text (
			pdisplay,
			"NumPages_Display", g_value_get_string (value));
		break;
	case PROP_OPTIMIZED:
		gpdf_properties_display_set_label_text (
			pdisplay, 
			"Optimized_Display", g_value_get_string (value));
		break;
	default:
		break;
	}
}

static void
gpdf_properties_display_dispose (GObject *object)
{
	GPdfPropertiesDisplayPrivate *priv;
	
	priv = GPDF_PROPERTIES_DISPLAY (object)->priv;

	if (priv->glade_xml) {
		g_object_unref (priv->glade_xml);
		priv->glade_xml = NULL;
	}

	GNOME_CALL_PARENT (G_OBJECT_CLASS, dispose, (object));
}

static void
gpdf_properties_display_finalize (GObject *object)
{
	GPdfPropertiesDisplay *pdisplay;

	pdisplay = GPDF_PROPERTIES_DISPLAY (object);
	
	if (pdisplay->priv) {
		g_free (pdisplay->priv);
		pdisplay->priv = NULL;
	}

	GNOME_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
}

void
gpdf_properties_display_class_init (GPdfPropertiesDisplayClass *klass)
{
	GObjectClass *object_class = G_OBJECT_CLASS (klass);

	object_class->dispose = gpdf_properties_display_dispose;
	object_class->finalize = gpdf_properties_display_finalize;

	object_class->set_property = gpdf_properties_display_set_property;

	g_object_class_install_property (
		object_class,
		PROP_TITLE,
		g_param_spec_string ("title",
				     "Title",
				     "Title of the document",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_SUBJECT,
		g_param_spec_string ("subject",
				     "Subject",
				     "Subject of the document",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_AUTHOR,
		g_param_spec_string ("author",
				     "Author",
				     "The person who created the document",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_KEYWORDS,
		g_param_spec_string ("keywords",
				     "Keywords",
				     "Keywords associated with the document",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_CREATOR,
		g_param_spec_string ("creator",
				     "Creator",
				     "The program that created the file that "
				     "was converted to PDF",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_PRODUCER,
		g_param_spec_string ("producer",
				     "Producer",
				     "The program that converted the original "
				     "file to PDF",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_CREATED,
		g_param_spec_string ("created",
				     "CreationDate",
				     "The date the document was created",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_MODIFIED,
		g_param_spec_string ("modified",
				     "ModificationDate",
				     "The date the document was last modified"
				     "using a PDF editor",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_SECURITY,
		g_param_spec_string ("security",
				     "Security",
				     "Security of the PDF file",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_PDFVERSION,
		g_param_spec_string ("pdfversion",
				     "PDFVersion",
				     "Version of the PDF specification the PDF "
				     "file conforms to",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_NUMPAGES,
		g_param_spec_string ("numpages",
				     "NumPages",
				     "Number of pages in the PDF file",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
	g_object_class_install_property (
		object_class,
		PROP_OPTIMIZED,
		g_param_spec_string ("optimized",
				     "Optimized",
				     "Is the PDF file optimized",
				     _("Unknown"),
				     G_PARAM_WRITABLE));
}

static const gchar *bold_labels [] = {
	"Title_Label", "Subject_Label", "Author_Label",	"Keywords_Label",
	"Creator_Label", "Producer_Label", "Created_Label", "Modified_Label",
	"Security_Label", "PDFVersion_Label",
	"NumPages_Label", "Optimized_Label"
};

static void
gpdf_properties_display_boldify_labels (GPdfPropertiesDisplay *pdisplay,
					GladeXML *xml)
{
	int i;

	for (i = 0; i < G_N_ELEMENTS (bold_labels); ++i) {
		GtkWidget *widget;
		
		widget = glade_xml_get_widget (xml, bold_labels [i]);
		gpdf_gtk_label_make_bold (GTK_LABEL (widget));
	}
}

static void
gpdf_properties_display_setup_glade (GPdfPropertiesDisplay *pdisplay)
{
	GladeXML *xml;
	GtkWidget *glade_widget;

	xml = glade_xml_new (DATADIR "/gpdf/glade/gpdf-properties-dialog.glade",
			     "pdf-properties",
			     NULL);
	pdisplay->priv->glade_xml = xml;

	glade_widget = glade_xml_get_widget (xml, "pdf-properties");
	gpdf_properties_display_boldify_labels (pdisplay, xml);

	gtk_widget_show (glade_widget);
	gtk_container_add (GTK_CONTAINER (pdisplay), glade_widget);
}

void
gpdf_properties_display_instance_init (GPdfPropertiesDisplay *pdisplay)
{
	GPdfPropertiesDisplayPrivate *priv;

	priv = g_new0 (GPdfPropertiesDisplayPrivate, 1);
	pdisplay->priv = priv;

	gpdf_properties_display_setup_glade (pdisplay);
}