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
|
/*
* icons.c
* Copyright (C) John Stebbins 2008-2016 <stebbins@stebbins>
*
* icons.c is free software.
*
* You may 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.
*
* icons.c 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 main.c. If not, write to:
* The Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301, USA.
*/
#include "ghbcompat.h"
#include "icon_res.h"
void
ghb_load_icons()
{
#if GTK_CHECK_VERSION(3, 14, 0)
ghb_icons_register_resource();
gtk_icon_theme_add_resource_path(gtk_icon_theme_get_default(),
"/org/handbrake/icons");
#else
ghb_icons_register_resource();
GResource *icon_res = ghb_icons_get_resource();
char ** children = g_resource_enumerate_children(icon_res,
"/org/handbrake/icons/scalable/apps", 0, NULL);
if (children == NULL)
{
g_warning("No icons in resources!");
return;
}
int ii;
for (ii = 0; children[ii] != NULL; ii++)
{
char *path = g_strdup_printf("/org/handbrake/icons/scalable/apps/%s",
children[ii]);
GBytes *gbytes = g_resource_lookup_data(icon_res, path, 0, NULL);
gsize data_size;
gconstpointer data = g_bytes_get_data(gbytes, &data_size);
g_free(path);
char *pos;
char *name = g_strdup(children[ii]);
pos = g_strstr_len(name, -1, ".");
if (pos != NULL)
*pos = '\0';
int jj;
int sizes[] = {16, 22, 24, 32, 48, 64, 128, 256, 0};
for (jj = 0; sizes[jj]; jj++)
{
GdkPixbuf *pb;
GInputStream *gis;
int size;
gis = g_memory_input_stream_new_from_data(data, data_size,
NULL);
pb = gdk_pixbuf_new_from_stream_at_scale(gis,
sizes[jj], sizes[jj],
TRUE, NULL, NULL);
g_input_stream_close(gis, NULL, NULL);
size = gdk_pixbuf_get_height(pb);
gtk_icon_theme_add_builtin_icon(name, size, pb);
g_object_unref(pb);
}
g_bytes_unref(gbytes);
}
g_strfreev(children);
#endif
}
|