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 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <ucx/map.h>
33
34 #include "toolkit.h"
35 #include "image.h"
36 #include "../common/properties.h"
37
38 static UcxMap *image_map;
39
40 static GtkIconTheme *icon_theme;
41
42 void ui_image_init(
void) {
43 image_map = ucx_map_new(
8);
44
45 icon_theme = gtk_icon_theme_get_default();
46 }
47
48
49
50 GdkPixbuf* ui_get_image(
const char *name) {
51 UiImage *img = ucx_map_cstr_get(image_map, name);
52 if(img) {
53 return img->pixbuf;
54 }
else {
55
56
57
58 return NULL;
59 }
60 }
61
62
63
64 static UiIcon* get_icon(
const char *name,
int size,
int scale) {
65 #ifdef UI_SUPPORTS_SCALE
66 GtkIconInfo *info = gtk_icon_theme_lookup_icon_for_scale(icon_theme, name, size, scale,
0);
67 #else
68 GtkIconInfo *info = gtk_icon_theme_lookup_icon(icon_theme, name, size,
0);
69 #endif
70 if(info) {
71 UiIcon *icon = malloc(
sizeof(UiIcon));
72 icon->info = info;
73 return icon;
74 }
75 return NULL;
76 }
77
78 UiIcon* ui_icon(
const char *name,
int size) {
79 return get_icon(name, size, ui_get_scalefactor());
80 }
81
82 UiIcon* ui_icon_unscaled(
const char *name,
int size) {
83 return get_icon(name, size,
1);
84 }
85
86 void ui_free_icon(UiIcon *icon) {
87 g_object_unref(icon->info);
88 free(icon);
89 }
90
91 UiImage* ui_icon_image(UiIcon *icon) {
92 GError *error =
NULL;
93 GdkPixbuf *pixbuf = gtk_icon_info_load_icon(icon->info, &error);
94 if(pixbuf) {
95 UiImage *img = malloc(
sizeof(UiImage));
96 img->pixbuf = pixbuf;
97 return img;
98 }
99 return NULL;
100 }
101
102 UiImage* ui_image(
const char *filename) {
103 return ui_named_image(filename,
NULL);
104 }
105
106 UiImage* ui_named_image(
const char *filename,
const char *name) {
107 char *path = uic_get_image_path(filename);
108 if(!path) {
109 fprintf(stderr,
"UiError: pixmaps directory not set\n");
110 return NULL;
111 }
112 UiImage *img = ui_load_image_from_path(path, name);
113 free(path);
114 return img;
115 }
116
117 UiImage* ui_load_image_from_path(
const char *path,
const char *name) {
118 GError *error =
NULL;
119 GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path, &error);
120 if(!pixbuf) {
121 fprintf(stderr,
"UiError: Cannot load image: %s\n", path);
122 return NULL;
123 }
124
125 UiImage *img = malloc(
sizeof(UiImage));
126 img->pixbuf = pixbuf;
127 if(name) {
128 ucx_map_cstr_put(image_map, name, img);
129 }
130 return img;
131 }
132
133 void ui_free_image(UiImage *img) {
134 g_object_unref(img->pixbuf);
135 free(img);
136 }
137