File: gm-pixbuf.c

package info (click to toggle)
gnoemoe 2.2.0%2Bdfsg-2.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,024 kB
  • sloc: ansic: 23,956; sh: 8,882; ruby: 300; makefile: 174; xml: 86
file content (308 lines) | stat: -rw-r--r-- 6,739 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
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
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <gtk/gtk.h>
#include <glib.h>
#include <string.h>
#include <strings.h>

#include "gm-debug.h"
#include "gm-pixbuf.h"

static GList *gm_pixbuf_directories = NULL;
static GList *gm_pixbufs = NULL;
static GtkIconFactory *factory = NULL;

GdkPixbuf *gm_pixbuf_create(const gchar * filename, int width, int height);
static void on_gm_pixbuf_theme_changed(GtkIconTheme *theme, gpointer user_data);

static GdkPixbuf *
gm_pixbuf_create_save_close() {
	GError *error = NULL;
	GtkIconTheme *icon_theme;
	GdkPixbuf *pixbuf, *close, *save;
	gint w1, h1, w2, h2;
	
	icon_theme = gtk_icon_theme_get_default();
	gtk_icon_size_lookup(GTK_ICON_SIZE_LARGE_TOOLBAR, &w1, &h1);
	save = gtk_icon_theme_load_icon(icon_theme, GTK_STOCK_SAVE, w1, GTK_ICON_LOOKUP_USE_BUILTIN,
			&error);
	
	if (error) {
		g_error_free(error);
		error = NULL;
	}

	if (save == NULL) {
		gm_debug_msg(DEBUG_DEFAULT, "Couldn't find save icon for the save and close composite icon");
		return gm_pixbuf_get("saveclose.xpm");
	}

	
	w1 = gdk_pixbuf_get_width(save);
	h1 = gdk_pixbuf_get_height(save);
	
	pixbuf = gdk_pixbuf_copy(save);
	g_object_unref(save);
	
	w2 = w1 / 2;
	h2 = h1 / 2;
	close = gtk_icon_theme_load_icon(icon_theme, GTK_STOCK_CLOSE, w2, 0,
			&error);

	if (error) {
		g_error_free(error);
	}
	
	if (close == NULL) {
		gm_debug_msg(DEBUG_DEFAULT, "Couldn't find close icon for the save and close composite icon");
		return gm_pixbuf_get("saveclose.xpm");
	}

	gdk_pixbuf_composite(close, pixbuf, w1 - w2, 0, w2, h2, w1 - w2, 0, 1, 1,
			GDK_INTERP_NEAREST, 255);

	g_object_unref(close);
	
	return pixbuf;	
}

void
gm_pixbuf_add_directory(const gchar *directory) {
	gm_pixbuf_directories =
		g_list_prepend(gm_pixbuf_directories, g_strdup(directory));
}

static GtkIconSource *
gm_pixbuf_create_stock24(GdkPixbuf *pixbuf) {
	GtkIconSource *source;
	GdkPixbuf *scaled;
	gint w, h;

	scaled = gdk_pixbuf_new(gdk_pixbuf_get_colorspace(pixbuf),
			gdk_pixbuf_get_has_alpha(pixbuf),
			gdk_pixbuf_get_bits_per_sample(pixbuf),
			24,
			24);

	gdk_pixbuf_fill(scaled, 0xffffff00);

	w = gdk_pixbuf_get_width(pixbuf);
	h = gdk_pixbuf_get_height(pixbuf);

	gdk_pixbuf_copy_area(pixbuf, 0, 0, w, h, scaled, (24 - w) / 2, (24 - h) / 2);

	source = gtk_icon_source_new();
	gtk_icon_source_set_pixbuf(source, scaled);
	gtk_icon_source_set_size(source, GTK_ICON_SIZE_LARGE_TOOLBAR);
	
	return source;
}

void
gm_pixbuf_populate_factory() {
	GdkPixbuf *pixbuf = gm_pixbuf_create_save_close();
	GtkIconSet *set;
	GtkIconSource *source;

	set = gtk_icon_set_new_from_pixbuf(pixbuf);
	
	if (gdk_pixbuf_get_width(pixbuf) < 24) {
		source = gm_pixbuf_create_stock24(pixbuf);
		gtk_icon_set_add_source(set, source);
		
		gtk_icon_source_free(source);
	}
	
	gtk_icon_factory_add(factory, GM_STOCK_SAVE_CLOSE, set);	
	g_object_unref(pixbuf);
}

void
gm_pixbuf_init() {
	GtkIconTheme *theme;
	
	gm_pixbuf_add_directory(PACKAGE_DATA_DIR "/" PACKAGE "/pixmaps");
	
	theme = gtk_icon_theme_get_default();
	
	g_signal_connect(theme, "changed", G_CALLBACK(on_gm_pixbuf_theme_changed),
			NULL);
	
	factory = gtk_icon_factory_new();
	gtk_icon_factory_add_default(factory);
	
	gm_pixbuf_populate_factory();
}

void
gm_pixbuf_fini() {
	GList *l;
	GmPixbufInfo *i;

	for (l = gm_pixbuf_directories; l; l = l->next) {
		g_free(l->data); 
	}

	g_list_free(gm_pixbuf_directories);

	for (l = gm_pixbufs; l; l = l->next) {
		i = (GmPixbufInfo *)(l->data);
		g_free(i->name);  
		g_object_unref(i->pixbuf);
		g_free(i);
	}

	g_list_free(gm_pixbufs);
	
	gtk_icon_factory_remove_default(factory);
	g_object_unref(factory);
}

gchar *
gm_pixbuf_find(const gchar *filename) {
	GList *elem;

	if (filename == NULL) {
		return NULL;
	}
	
	if (g_file_test(filename, G_FILE_TEST_EXISTS)) {
		return g_strdup(filename);
	}

	for (elem = gm_pixbuf_directories; elem; elem = elem->next) {
		gchar *pathname =
				g_strdup_printf("%s%s%s", (gchar *) elem->data, 
				G_DIR_SEPARATOR_S, filename);

		if (g_file_test(pathname, G_FILE_TEST_EXISTS)) {
			return pathname;
		}

		g_free(pathname);
	}

	return NULL;
}

GdkPixbuf *
gm_pixbuf_create(const gchar * filename, int width, int height) {
	gchar *pathname = NULL, *ext;
	GdkPixbuf *pixbuf = NULL;
	GError *error = NULL;

	if (!filename || *filename == '\0') {
		return NULL;
	}

	pathname = gm_pixbuf_find(filename);

	if (!pathname) {
		gm_debug_msg(DEBUG_DEFAULT, "gm_pixbuf_create: couldn't find pixbuf file: %s", filename);
		return NULL;
	}

	ext = rindex(pathname, '.');

	if (width < 1 || height < 1) {
		pixbuf = gdk_pixbuf_new_from_file(pathname, &error);   
	} else {
		pixbuf = gdk_pixbuf_new_from_file_at_size(pathname, width, height, &error);
	}

	if (!pixbuf) {
		gm_debug_msg(DEBUG_DEFAULT, "gm_pixbuf_create: failed to load pixbuf from file: %s: %s\n",
				pathname, error->message);
		g_error_free(error);
		error = NULL;
	}

	g_free(pathname);
	return pixbuf;
}

GdkPixbuf *
gm_pixbuf_get_at_size(const gchar *filename, int width, int height) {
	GdkPixbuf *pix;
	GList *elem;
	GmPixbufInfo *i;

	if (filename == NULL || *filename == '\0') {
		return NULL;
	}

	for (elem = gm_pixbufs; elem; elem = elem->next) {
		i = (GmPixbufInfo *) (elem->data);

		if (strcmp(i->name, filename) == 0 && 
			i->width == width && i->height == height) {
			return i->pixbuf;
		}
	}

	// Not found, so create it  
	pix = gm_pixbuf_create(filename, width, height);

	if (pix) {
		i = g_new(GmPixbufInfo, 1);
		i->name = g_strdup(filename);
		i->width = width;
		i->height = height;
		i->pixbuf = pix;
		gm_pixbufs = g_list_append(gm_pixbufs, i);
		return pix;
	} else {
		return NULL;
	}
}

// Returns pixbuf if it is already loaded in pixmaps
GdkPixbuf *
gm_pixbuf_get(const gchar *filename) {
	return gm_pixbuf_get_at_size(filename, -1, -1);
}

void gm_pixbuf_set_alpha(GdkPixbuf **pixs, guchar alpha) {
	int width, height, n_channels, rowstride, y, x;
	GdkPixbuf *pix;
	guchar *pixels, *p;

	if (!gdk_pixbuf_get_has_alpha(*pixs)) {
		pix = gdk_pixbuf_add_alpha(*pixs, FALSE, 0, 0, 0);
		gdk_pixbuf_unref(*pixs);
	} else {
		pix = *pixs;
	}

	n_channels = gdk_pixbuf_get_n_channels(pix);

	if (gdk_pixbuf_get_colorspace(pix) != GDK_COLORSPACE_RGB ||
			gdk_pixbuf_get_bits_per_sample(pix) != 8 ||
			!gdk_pixbuf_get_has_alpha(pix) ||
			n_channels != 4) {
		*pixs = pix;
		return;
	}

	width = gdk_pixbuf_get_width(pix);
	height = gdk_pixbuf_get_height(pix);
	rowstride = gdk_pixbuf_get_rowstride(pix);
	pixels = gdk_pixbuf_get_pixels(pix);
	p = pixels;

	for (y = 0; y < height; y++) {
		for (x = 0; x < width; x++) {
			p[3] = alpha;
			p = p + n_channels;
		}
	}

	*pixs = pix;
}

static void
on_gm_pixbuf_theme_changed(GtkIconTheme *theme, gpointer user_data) {
	gm_pixbuf_populate_factory();
}