1 /**************************************************************************
4 * Copyright (C) 2010 (mrovi@interfete-web-club.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 **************************************************************************/
22 #include <cairo-xlib.h>
23 #include <pango/pangocairo.h>
36 int launcher_max_icon_size
;
37 int launcher_tooltip_enabled
;
39 int launcher_saturation
;
40 int launcher_brightness
;
41 char *icon_theme_name
;
42 XSettingsClient
*xsettings_client
;
44 #define ICON_FALLBACK "application-x-executable"
46 char *icon_path(Launcher
*launcher
, const char *icon_name
, int size
);
47 void launcher_load_themes(Launcher
*launcher
);
48 void free_desktop_entry(DesktopEntry
*entry
);
49 int launcher_read_desktop_file(const char *path
, DesktopEntry
*entry
);
50 Imlib_Image
scale_icon(Imlib_Image original
, int icon_size
);
51 void free_icon(Imlib_Image icon
);
52 void free_icon_theme(IconTheme
*theme
);
55 void default_launcher()
58 launcher_max_icon_size
= 0;
59 launcher_tooltip_enabled
= 0;
61 launcher_saturation
= 0;
62 launcher_brightness
= 0;
64 xsettings_client
= NULL
;
70 if (launcher_enabled
) {
71 // if XSETTINGS manager running, tint2 read the icon_theme_name.
72 xsettings_client
= xsettings_client_new(server
.dsp
, server
.screen
, xsettings_notify_cb
, NULL
, NULL
);
77 void init_launcher_panel(void *p
)
79 Panel
*panel
=(Panel
*)p
;
80 Launcher
*launcher
= &panel
->launcher
;
82 launcher
->area
.parent
= p
;
83 launcher
->area
.panel
= p
;
84 launcher
->area
._draw_foreground
= NULL
;
85 launcher
->area
.size_mode
= SIZE_BY_CONTENT
;
86 launcher
->area
._resize
= resize_launcher
;
87 launcher
->area
.resize
= 1;
88 launcher
->area
.redraw
= 1;
89 if (launcher
->area
.bg
== 0)
90 launcher
->area
.bg
= &g_array_index(backgrounds
, Background
, 0);
93 if (launcher
->list_apps
== NULL
)
96 launcher
->area
.on_screen
= 1;
99 launcher_load_themes(launcher
);
100 launcher_load_icons(launcher
);
104 void cleanup_launcher()
108 if (xsettings_client
)
109 xsettings_client_destroy(xsettings_client
);
110 for (i
= 0 ; i
< nb_panel
; i
++) {
111 Panel
*panel
= &panel1
[i
];
112 Launcher
*launcher
= &panel
->launcher
;
113 cleanup_launcher_theme(launcher
);
116 for (l
= launcher
->list_apps
; l
; l
= l
->next
) {
119 g_slist_free(launcher
->list_apps
);
120 launcher
->list_apps
= NULL
;
122 g_free(icon_theme_name
);
123 launcher_enabled
= 0;
127 void cleanup_launcher_theme(Launcher
*launcher
)
129 free_area(&launcher
->area
);
131 for (l
= launcher
->list_icons
; l
; l
= l
->next
) {
132 LauncherIcon
*launcherIcon
= (LauncherIcon
*)l
->data
;
134 free_icon(launcherIcon
->icon_scaled
);
135 free_icon(launcherIcon
->icon_original
);
136 free(launcherIcon
->icon_name
);
137 free(launcherIcon
->icon_path
);
138 free(launcherIcon
->cmd
);
139 free(launcherIcon
->icon_tooltip
);
143 g_slist_free(launcher
->list_icons
);
145 for (l
= launcher
->list_themes
; l
; l
= l
->next
) {
146 IconTheme
*theme
= (IconTheme
*) l
->data
;
147 free_icon_theme(theme
);
150 g_slist_free(launcher
->list_themes
);
151 launcher
->list_icons
= launcher
->list_themes
= NULL
;
155 int resize_launcher(void *obj
)
157 Launcher
*launcher
= obj
;
159 int count
, icon_size
;
160 int icons_per_column
=1, icons_per_row
=1, marging
=0;
162 if (panel_horizontal
)
163 icon_size
= launcher
->area
.height
;
165 icon_size
= launcher
->area
.width
;
166 icon_size
= icon_size
- (2 * launcher
->area
.bg
->border
.width
) - (2 * launcher
->area
.paddingy
);
167 if (launcher_max_icon_size
> 0 && icon_size
> launcher_max_icon_size
)
168 icon_size
= launcher_max_icon_size
;
170 // Resize icons if necessary
171 for (l
= launcher
->list_icons
; l
; l
= l
->next
) {
172 LauncherIcon
*launcherIcon
= (LauncherIcon
*)l
->data
;
173 if (launcherIcon
->icon_size
!= icon_size
|| !launcherIcon
->icon_original
) {
174 launcherIcon
->icon_size
= icon_size
;
175 launcherIcon
->area
.width
= launcherIcon
->icon_size
;
176 launcherIcon
->area
.height
= launcherIcon
->icon_size
;
178 // Get the path for an icon file with the new size
179 char *new_icon_path
= icon_path(launcher
, launcherIcon
->icon_name
, launcherIcon
->icon_size
);
180 if (!new_icon_path
) {
182 free_icon(launcherIcon
->icon_original
);
183 launcherIcon
->icon_original
= NULL
;
184 free_icon(launcherIcon
->icon_scaled
);
185 launcherIcon
->icon_scaled
= NULL
;
186 new_icon_path
= icon_path(launcher
, ICON_FALLBACK
, launcherIcon
->icon_size
);
188 launcherIcon
->icon_original
= imlib_load_image(new_icon_path
);
189 fprintf(stderr
, "launcher.c %d: Using icon %s\n", __LINE__
, new_icon_path
);
192 launcherIcon
->icon_scaled
= scale_icon(launcherIcon
->icon_original
, icon_size
);
195 if (launcherIcon
->icon_path
&& strcmp(new_icon_path
, launcherIcon
->icon_path
) == 0) {
196 // If it's the same file just rescale
197 free_icon(launcherIcon
->icon_scaled
);
198 launcherIcon
->icon_scaled
= scale_icon(launcherIcon
->icon_original
, icon_size
);
200 fprintf(stderr
, "launcher.c %d: Using icon %s\n", __LINE__
, launcherIcon
->icon_path
);
202 // Free the old files
203 free_icon(launcherIcon
->icon_original
);
204 free_icon(launcherIcon
->icon_scaled
);
205 // Load the new file and scale
206 launcherIcon
->icon_original
= imlib_load_image(new_icon_path
);
207 launcherIcon
->icon_scaled
= scale_icon(launcherIcon
->icon_original
, launcherIcon
->icon_size
);
208 free(launcherIcon
->icon_path
);
209 launcherIcon
->icon_path
= new_icon_path
;
210 fprintf(stderr
, "launcher.c %d: Using icon %s\n", __LINE__
, launcherIcon
->icon_path
);
215 count
= g_slist_length(launcher
->list_icons
);
217 if (panel_horizontal
) {
218 if (!count
) launcher
->area
.width
= 0;
220 int height
= launcher
->area
.height
- 2*launcher
->area
.bg
->border
.width
- 2*launcher
->area
.paddingy
;
221 // here icons_per_column always higher than 0
222 icons_per_column
= (height
+launcher
->area
.paddingx
) / (icon_size
+launcher
->area
.paddingx
);
223 marging
= height
- (icons_per_column
-1)*(icon_size
+launcher
->area
.paddingx
) - icon_size
;
224 icons_per_row
= count
/ icons_per_column
+ (count%icons_per_column
!= 0);
225 launcher
->area
.width
= (2 * launcher
->area
.bg
->border
.width
) + (2 * launcher
->area
.paddingxlr
) + (icon_size
* icons_per_row
) + ((icons_per_row
-1) * launcher
->area
.paddingx
);
229 if (!count
) launcher
->area
.height
= 0;
231 int width
= launcher
->area
.width
- 2*launcher
->area
.bg
->border
.width
- 2*launcher
->area
.paddingy
;
232 // here icons_per_row always higher than 0
233 icons_per_row
= (width
+launcher
->area
.paddingx
) / (icon_size
+launcher
->area
.paddingx
);
234 marging
= width
- (icons_per_row
-1)*(icon_size
+launcher
->area
.paddingx
) - icon_size
;
235 icons_per_column
= count
/ icons_per_row
+ (count%icons_per_row
!= 0);
236 launcher
->area
.height
= (2 * launcher
->area
.bg
->border
.width
) + (2 * launcher
->area
.paddingxlr
) + (icon_size
* icons_per_column
) + ((icons_per_column
-1) * launcher
->area
.paddingx
);
241 int start
= launcher
->area
.bg
->border
.width
+ launcher
->area
.paddingy
+ marging
/2;
242 if (panel_horizontal
) {
244 posx
= launcher
->area
.bg
->border
.width
+ launcher
->area
.paddingxlr
;
248 posy
= launcher
->area
.bg
->border
.width
+ launcher
->area
.paddingxlr
;
251 for (i
=1, l
= launcher
->list_icons
; l
; i
++, l
= l
->next
) {
252 LauncherIcon
*launcherIcon
= (LauncherIcon
*)l
->data
;
254 launcherIcon
->y
= posy
;
255 launcherIcon
->x
= posx
;
256 //printf("launcher %d : %d,%d\n", i, posx, posy);
257 if (panel_horizontal
) {
258 if (i
% icons_per_column
)
259 posy
+= icon_size
+ launcher
->area
.paddingx
;
262 posx
+= (icon_size
+ launcher
->area
.paddingx
);
266 if (i
% icons_per_row
)
267 posx
+= icon_size
+ launcher
->area
.paddingx
;
270 posy
+= (icon_size
+ launcher
->area
.paddingx
);
277 // Here we override the default layout of the icons; normally Area layouts its children
278 // in a stack; we need to layout them in a kind of table
279 void launcher_icon_on_change_layout(void *obj
)
281 LauncherIcon
*launcherIcon
= (LauncherIcon
*)obj
;
282 launcherIcon
->area
.posy
= ((Area
*)launcherIcon
->area
.parent
)->posy
+ launcherIcon
->y
;
283 launcherIcon
->area
.posx
= ((Area
*)launcherIcon
->area
.parent
)->posx
+ launcherIcon
->x
;
286 const char* launcher_icon_get_tooltip_text(void *obj
)
288 LauncherIcon
*launcherIcon
= (LauncherIcon
*)obj
;
289 return launcherIcon
->icon_tooltip
;
292 void draw_launcher_icon(void *obj
, cairo_t
*c
)
294 LauncherIcon
*launcherIcon
= (LauncherIcon
*)obj
;
295 Imlib_Image icon_scaled
= launcherIcon
->icon_scaled
;
297 imlib_context_set_image (icon_scaled
);
298 if (server
.real_transparency
) {
299 render_image(launcherIcon
->area
.pix
, 0, 0, imlib_image_get_width(), imlib_image_get_height() );
301 imlib_context_set_drawable(launcherIcon
->area
.pix
);
302 imlib_render_image_on_drawable (0, 0);
306 Imlib_Image
scale_icon(Imlib_Image original
, int icon_size
)
308 Imlib_Image icon_scaled
;
310 imlib_context_set_image (original
);
311 icon_scaled
= imlib_create_cropped_scaled_image(0, 0, imlib_image_get_width(), imlib_image_get_height(), icon_size
, icon_size
);
312 imlib_context_set_image (icon_scaled
);
313 imlib_image_set_has_alpha(1);
314 DATA32
* data
= imlib_image_get_data();
315 adjust_asb(data
, icon_size
, icon_size
, launcher_alpha
, (float)launcher_saturation
/100, (float)launcher_brightness
/100);
316 imlib_image_put_back_data(data
);
318 icon_scaled
= imlib_create_image(icon_size
, icon_size
);
319 imlib_context_set_image (icon_scaled
);
320 imlib_context_set_color(255, 255, 255, 255);
321 imlib_image_fill_rectangle(0, 0, icon_size
, icon_size
);
326 void free_icon(Imlib_Image icon
)
329 imlib_context_set_image(icon
);
334 void launcher_action(LauncherIcon
*icon
)
336 char *cmd
= malloc(strlen(icon
->cmd
) + 10);
337 sprintf(cmd
, "(%s&)", icon
->cmd
);
342 /***************** Freedesktop app.desktop and icon theme handling *********************/
343 /* http://standards.freedesktop.org/desktop-entry-spec/ */
344 /* http://standards.freedesktop.org/icon-theme-spec/ */
346 // Splits line at first '=' and returns 1 if successful, and parts are not empty
347 // key and value point to the parts
348 int parse_dektop_line(char *line
, char **key
, char **value
)
353 for (p
= line
; *p
; p
++) {
363 if (found
&& (strlen(*key
) == 0 || strlen(*value
) == 0))
368 int parse_theme_line(char *line
, char **key
, char **value
)
370 return parse_dektop_line(line
, key
, value
);
373 void expand_exec(DesktopEntry
*entry
, const char *path
)
380 char *exec2
= malloc(strlen(entry
->exec
) + (entry
->name
? strlen(entry
->name
) : 1) + (entry
->icon
? strlen(entry
->icon
) : 1) + 100);
382 // p will never point to an escaped char
383 for (p
= entry
->exec
, q
= exec2
; *p
; p
++, q
++) {
387 // Copy the escaped char
388 if (*p
== '%') // For % we delete the backslash, i.e. write % over it
397 if (*p
== 'i' && entry
->icon
!= NULL
) {
398 sprintf(q
, "--icon '%s'", entry
->icon
);
399 q
+= strlen("--icon ''");
400 q
+= strlen(entry
->icon
);
401 q
--; // To balance the q++ in the for
402 } else if (*p
== 'c' && entry
->name
!= NULL
) {
403 sprintf(q
, "'%s'", entry
->name
);
405 q
+= strlen(entry
->name
);
406 q
--; // To balance the q++ in the for
407 } else if (*p
== 'c') {
408 sprintf(q
, "'%s'", path
);
411 q
--; // To balance the q++ in the for
413 // We don't care about other expansions
414 q
--; // Delete the last % from q
425 //TODO Use UTF8 when parsing the file
426 int launcher_read_desktop_file(const char *path
, DesktopEntry
*entry
)
433 entry
->name
= entry
->icon
= entry
->exec
= NULL
;
435 if ((fp
= fopen(path
, "rt")) == NULL
) {
436 fprintf(stderr
, "Could not open file %s\n", path
);
440 int inside_desktop_entry
= 0;
441 while (getline(&line
, &line_size
, fp
) >= 0) {
442 int len
= strlen(line
);
445 line
[len
- 1] = '\0';
446 if (line
[0] == '[') {
447 inside_desktop_entry
= (strcmp(line
, "[Desktop Entry]") == 0);
449 if (inside_desktop_entry
&& parse_dektop_line(line
, &key
, &value
)) {
450 if (!entry
->name
&& strcmp(key
, "Name") == 0) {
451 entry
->name
= strdup(value
);
452 } else if (!entry
->exec
&& strcmp(key
, "Exec") == 0) {
453 entry
->exec
= strdup(value
);
454 } else if (!entry
->icon
&& strcmp(key
, "Icon") == 0) {
455 entry
->icon
= strdup(value
);
461 // entry->name, entry->icon, entry->exec will never be empty strings (can be NULL though)
463 expand_exec(entry
, path
);
469 void free_desktop_entry(DesktopEntry
*entry
)
476 void test_launcher_read_desktop_file()
478 fprintf(stdout
, "\033[1;33m");
480 launcher_read_desktop_file("/usr/share/applications/firefox.desktop", &entry
);
481 printf("Name:%s Icon:%s Exec:%s\n", entry
.name
, entry
.icon
, entry
.exec
);
482 fprintf(stdout
, "\033[0m");
485 //TODO Use UTF8 when parsing the file
486 IconTheme
*load_theme(char *name
)
488 // Look for name/index.theme in $HOME/.icons, /usr/share/icons, /usr/share/pixmaps (stop at the first found)
489 // Parse index.theme -> list of IconThemeDir with attributes
501 file_name
= g_build_filename(g_get_home_dir(), ".icons", name
, "index.theme", NULL
);
502 if (!g_file_test(file_name
, G_FILE_TEST_EXISTS
)) {
504 file_name
= g_build_filename("/usr/share/icons", name
, "index.theme", NULL
);
505 if (!g_file_test(file_name
, G_FILE_TEST_EXISTS
)) {
507 file_name
= g_build_filename("/usr/share/pixmaps", name
, "index.theme", NULL
);
508 if (!g_file_test(file_name
, G_FILE_TEST_EXISTS
)) {
519 if ((f
= fopen(file_name
, "rt")) == NULL
) {
520 fprintf(stderr
, "Could not open theme '%s'\n", file_name
);
526 theme
= calloc(1, sizeof(IconTheme
));
527 theme
->name
= strdup(name
);
528 theme
->list_inherits
= NULL
;
529 theme
->list_directories
= NULL
;
531 IconThemeDir
*current_dir
= NULL
;
532 int inside_header
= 1;
533 while (getline(&line
, &line_size
, f
) >= 0) {
536 int line_len
= strlen(line
);
538 if (line
[line_len
- 1] == '\n') {
539 line
[line_len
- 1] = '\0';
548 if (parse_theme_line(line
, &key
, &value
)) {
549 if (strcmp(key
, "Inherits") == 0) {
550 // value is like oxygen,wood,default
552 token
= strtok(value
, ",\n");
553 while (token
!= NULL
)
555 theme
->list_inherits
= g_slist_append(theme
->list_inherits
, strdup(token
));
556 token
= strtok(NULL
, ",\n");
558 } else if (strcmp(key
, "Directories") == 0) {
559 // value is like 48x48/apps,48x48/mimetypes,32x32/apps,scalable/apps,scalable/mimetypes
561 token
= strtok(value
, ",\n");
562 while (token
!= NULL
)
564 IconThemeDir
*dir
= calloc(1, sizeof(IconThemeDir
));
565 dir
->name
= strdup(token
);
566 dir
->max_size
= dir
->min_size
= dir
->size
= -1;
567 dir
->type
= ICON_DIR_TYPE_THRESHOLD
;
569 theme
->list_directories
= g_slist_append(theme
->list_directories
, dir
);
570 token
= strtok(NULL
, ",\n");
574 } else if (current_dir
!= NULL
) {
575 if (parse_theme_line(line
, &key
, &value
)) {
576 if (strcmp(key
, "Size") == 0) {
578 sscanf(value
, "%d", ¤t_dir
->size
);
579 if (current_dir
->max_size
== -1)
580 current_dir
->max_size
= current_dir
->size
;
581 if (current_dir
->min_size
== -1)
582 current_dir
->min_size
= current_dir
->size
;
583 } else if (strcmp(key
, "MaxSize") == 0) {
585 sscanf(value
, "%d", ¤t_dir
->max_size
);
586 } else if (strcmp(key
, "MinSize") == 0) {
588 sscanf(value
, "%d", ¤t_dir
->min_size
);
589 } else if (strcmp(key
, "Threshold") == 0) {
591 sscanf(value
, "%d", ¤t_dir
->threshold
);
592 } else if (strcmp(key
, "Type") == 0) {
593 // value is Fixed, Scalable or Threshold : default to scalable for unknown Type.
594 if (strcmp(value
, "Fixed") == 0) {
595 current_dir
->type
= ICON_DIR_TYPE_FIXED
;
596 } else if (strcmp(value
, "Threshold") == 0) {
597 current_dir
->type
= ICON_DIR_TYPE_THRESHOLD
;
599 current_dir
->type
= ICON_DIR_TYPE_SCALABLE
;
601 } else if (strcmp(key
, "Context") == 0) {
602 // usual values: Actions, Applications, Devices, FileSystems, MimeTypes
603 current_dir
->context
= strdup(value
);
608 if (line
[0] == '[' && line
[line_len
- 1] == ']' && strcmp(line
, "[Icon Theme]") != 0) {
611 line
[line_len
- 1] = '\0';
612 char *dir_name
= line
+ 1;
613 GSList
* dir_item
= theme
->list_directories
;
614 while (dir_item
!= NULL
)
616 IconThemeDir
*dir
= dir_item
->data
;
617 if (strcmp(dir
->name
, dir_name
) == 0) {
621 dir_item
= g_slist_next(dir_item
);
632 void free_icon_theme(IconTheme
*theme
)
636 for (l_inherits
= theme
->list_inherits
; l_inherits
; l_inherits
= l_inherits
->next
) {
637 free(l_inherits
->data
);
640 for (l_dir
= theme
->list_directories
; l_dir
; l_dir
= l_dir
->next
) {
641 IconThemeDir
*dir
= (IconThemeDir
*)l_dir
->data
;
648 void test_launcher_read_theme_file()
650 fprintf(stdout
, "\033[1;33m");
651 IconTheme
*theme
= load_theme("oxygen");
653 printf("Could not load theme\n");
656 printf("Loaded theme: %s\n", theme
->name
);
657 GSList
* item
= theme
->list_inherits
;
660 printf("Inherits:%s\n", (char*)item
->data
);
661 item
= g_slist_next(item
);
663 item
= theme
->list_directories
;
666 IconThemeDir
*dir
= item
->data
;
667 printf("Dir:%s Size=%d MinSize=%d MaxSize=%d Threshold=%d Type=%s Context=%s\n",
668 dir
->name
, dir
->size
, dir
->min_size
, dir
->max_size
, dir
->threshold
,
669 dir
->type
== ICON_DIR_TYPE_FIXED
? "Fixed" :
670 dir
->type
== ICON_DIR_TYPE_SCALABLE
? "Scalable" :
671 dir
->type
== ICON_DIR_TYPE_THRESHOLD
? "Threshold" : "?????",
673 item
= g_slist_next(item
);
675 fprintf(stdout
, "\033[0m");
679 // Populates the list_icons list
680 void launcher_load_icons(Launcher
*launcher
)
682 // Load apps (.desktop style launcher items)
683 GSList
* app
= launcher
->list_apps
;
684 while (app
!= NULL
) {
686 launcher_read_desktop_file(app
->data
, &entry
);
688 LauncherIcon
*launcherIcon
= calloc(1, sizeof(LauncherIcon
));
689 launcherIcon
->area
.parent
= launcher
;
690 launcherIcon
->area
.panel
= launcher
->area
.panel
;
691 launcherIcon
->area
._draw_foreground
= draw_launcher_icon
;
692 launcherIcon
->area
.size_mode
= SIZE_BY_CONTENT
;
693 launcherIcon
->area
._resize
= NULL
;
694 launcherIcon
->area
.resize
= 0;
695 launcherIcon
->area
.redraw
= 1;
696 launcherIcon
->area
.bg
= &g_array_index(backgrounds
, Background
, 0);
697 launcherIcon
->area
.on_screen
= 1;
698 launcherIcon
->area
._on_change_layout
= launcher_icon_on_change_layout
;
699 if (launcher_tooltip_enabled
)
700 launcherIcon
->area
._get_tooltip_text
= launcher_icon_get_tooltip_text
;
702 launcherIcon
->area
._get_tooltip_text
= NULL
;
703 launcherIcon
->is_app_desktop
= 1;
704 launcherIcon
->cmd
= strdup(entry
.exec
);
705 launcherIcon
->icon_name
= entry
.icon
? strdup(entry
.icon
) : strdup(ICON_FALLBACK
);
706 launcherIcon
->icon_size
= 1;
707 launcherIcon
->icon_tooltip
= entry
.name
? strdup(entry
.name
) : strdup(entry
.exec
);
708 free_desktop_entry(&entry
);
709 launcher
->list_icons
= g_slist_append(launcher
->list_icons
, launcherIcon
);
710 add_area(&launcherIcon
->area
);
712 app
= g_slist_next(app
);
717 // Populates the list_themes list
718 void launcher_load_themes(Launcher
*launcher
)
720 // load the user theme, all the inherited themes recursively (DFS), and the hicolor theme
721 // avoid inheritance loops
722 if (!icon_theme_name
) {
723 fprintf(stderr
, "Missing launcher theme, default to 'hicolor'.\n");
724 icon_theme_name
= strdup("hicolor");
726 fprintf(stderr
, "Loading %s. Icon theme :", icon_theme_name
);
729 GSList
*queue
= g_slist_append(NULL
, strdup(icon_theme_name
));
730 GSList
*queued
= g_slist_append(NULL
, strdup(icon_theme_name
));
732 int hicolor_loaded
= 0;
733 while (queue
|| !hicolor_loaded
) {
735 GSList
* queued_item
= queued
;
736 while (queued_item
!= NULL
) {
737 if (strcmp(queued_item
->data
, "hicolor") == 0) {
741 queued_item
= g_slist_next(queued_item
);
745 queue
= g_slist_append(queue
, strdup("hicolor"));
746 queued
= g_slist_append(queued
, strdup("hicolor"));
749 char *name
= queue
->data
;
750 queue
= g_slist_remove(queue
, name
);
752 fprintf(stderr
, " '%s',", name
);
753 IconTheme
*theme
= load_theme(name
);
755 launcher
->list_themes
= g_slist_append(launcher
->list_themes
, theme
);
757 GSList
* item
= theme
->list_inherits
;
761 char *parent
= item
->data
;
763 GSList
* queued_item
= queued
;
764 while (queued_item
!= NULL
) {
765 if (strcmp(queued_item
->data
, parent
) == 0) {
769 queued_item
= g_slist_next(queued_item
);
772 queue
= g_slist_insert(queue
, strdup(parent
), pos
);
774 queued
= g_slist_append(queued
, strdup(parent
));
776 item
= g_slist_next(item
);
780 fprintf(stderr
, "\n");
784 for (l
= queue
; l
; l
= l
->next
)
787 for (l
= queued
; l
; l
= l
->next
)
789 g_slist_free(queued
);
792 int directory_matches_size(IconThemeDir
*dir
, int size
)
794 if (dir
->type
== ICON_DIR_TYPE_FIXED
) {
795 return dir
->size
== size
;
796 } else if (dir
->type
== ICON_DIR_TYPE_SCALABLE
) {
797 return dir
->min_size
<= size
&& size
<= dir
->max_size
;
798 } else /*if (dir->type == ICON_DIR_TYPE_THRESHOLD)*/ {
799 return dir
->size
- dir
->threshold
<= size
&& size
<= dir
->size
+ dir
->threshold
;
803 int directory_size_distance(IconThemeDir
*dir
, int size
)
805 if (dir
->type
== ICON_DIR_TYPE_FIXED
) {
806 return abs(dir
->size
- size
);
807 } else if (dir
->type
== ICON_DIR_TYPE_SCALABLE
) {
808 if (size
< dir
->min_size
) {
809 return dir
->min_size
- size
;
810 } else if (size
> dir
->max_size
) {
811 return size
- dir
->max_size
;
815 } else /*if (dir->type == ICON_DIR_TYPE_THRESHOLD)*/ {
816 if (size
< dir
->size
- dir
->threshold
) {
817 return dir
->min_size
- size
;
818 } else if (size
> dir
->size
+ dir
->threshold
) {
819 return size
- dir
->max_size
;
826 // Returns the full path to an icon file (or NULL) given the icon name
827 char *icon_path(Launcher
*launcher
, const char *icon_name
, int size
)
829 if (icon_name
== NULL
)
832 // If the icon_name is already a path and the file exists, return it
833 if (strstr(icon_name
, "/") == icon_name
) {
834 if (g_file_test(icon_name
, G_FILE_TEST_EXISTS
))
835 return strdup(icon_name
);
840 GSList
*basenames
= NULL
;
841 char *home_icons
= g_build_filename(g_get_home_dir(), ".icons", NULL
);
842 basenames
= g_slist_append(basenames
, home_icons
);
843 basenames
= g_slist_append(basenames
, "/usr/share/icons");
844 basenames
= g_slist_append(basenames
, "/usr/share/pixmaps");
846 GSList
*extensions
= NULL
;
847 extensions
= g_slist_append(extensions
, ".png");
848 extensions
= g_slist_append(extensions
, ".xpm");
849 // if the icon name already contains one of the extensions (e.g. vlc.png instead of vlc) add a special entry
851 for (ext
= extensions
; ext
; ext
= g_slist_next(ext
)) {
852 char *extension
= (char*) ext
->data
;
853 if (strlen(icon_name
) > strlen(extension
) &&
854 strcmp(extension
, icon_name
+ strlen(icon_name
) - strlen(extension
)) == 0) {
855 extensions
= g_slist_append(extensions
, "");
861 // Stage 1: exact size match
862 // the theme must have a higher priority than having an exact size match, so we will just use
863 // the code that searches for the best size match (it will find the exact size match if one exists)
865 for (theme = launcher->list_themes; theme; theme = g_slist_next(theme)) {
867 for (dir = ((IconTheme*)theme->data)->list_directories; dir; dir = g_slist_next(dir)) {
868 if (directory_matches_size((IconThemeDir*)dir->data, size)) {
870 for (base = basenames; base; base = g_slist_next(base)) {
872 for (ext = extensions; ext; ext = g_slist_next(ext)) {
873 char *base_name = (char*) base->data;
874 char *theme_name = ((IconTheme*)theme->data)->name;
875 char *dir_name = ((IconThemeDir*)dir->data)->name;
876 char *extension = (char*) ext->data;
877 char *file_name = malloc(strlen(base_name) + strlen(theme_name) +
878 strlen(dir_name) + strlen(icon_name) + strlen(extension) + 100);
879 // filename = directory/$(themename)/subdirectory/iconname.extension
880 sprintf(file_name, "%s/%s/%s/%s%s", base_name, theme_name, dir_name, icon_name, extension);
881 //printf("found exact: %s\n", file_name);
882 //printf("checking %s\n", file_name);
883 if (g_file_test(file_name, G_FILE_TEST_EXISTS)) {
884 g_slist_free(basenames);
885 g_slist_free(extensions);
900 // Stage 2: best size match
901 // Contrary to the freedesktop spec, we are not choosing the closest icon in size, but the next larger icon
902 // otherwise the quality is usually crap (for size 22, if you can choose 16 or 32, you're better with 32)
903 // We do fallback to the closest size if we cannot find a larger or equal icon
905 // These 3 variables are used for keeping the closest size match
906 int minimal_size
= INT_MAX
;
907 char *best_file_name
= NULL
;
908 GSList
*best_file_theme
= NULL
;
910 // These 3 variables are used for keeping the next larger match
911 int next_larger_size
= -1;
912 char *next_larger
= NULL
;
913 GSList
*next_larger_theme
= NULL
;
915 for (theme
= launcher
->list_themes
; theme
; theme
= g_slist_next(theme
)) {
917 for (dir
= ((IconTheme
*)theme
->data
)->list_directories
; dir
; dir
= g_slist_next(dir
)) {
919 for (base
= basenames
; base
; base
= g_slist_next(base
)) {
921 for (ext
= extensions
; ext
; ext
= g_slist_next(ext
)) {
922 char *base_name
= (char*) base
->data
;
923 char *theme_name
= ((IconTheme
*)theme
->data
)->name
;
924 char *dir_name
= ((IconThemeDir
*)dir
->data
)->name
;
925 char *extension
= (char*) ext
->data
;
926 char *file_name
= malloc(strlen(base_name
) + strlen(theme_name
) +
927 strlen(dir_name
) + strlen(icon_name
) + strlen(extension
) + 100);
928 // filename = directory/$(themename)/subdirectory/iconname.extension
929 sprintf(file_name
, "%s/%s/%s/%s%s", base_name
, theme_name
, dir_name
, icon_name
, extension
);
930 if (g_file_test(file_name
, G_FILE_TEST_EXISTS
)) {
931 //printf("found: %s\n", file_name);
933 if (directory_size_distance((IconThemeDir
*)dir
->data
, size
) < minimal_size
&& (!best_file_theme
? 1 : theme
== best_file_theme
)) {
934 if (best_file_name
) {
935 free(best_file_name
);
936 best_file_name
= NULL
;
938 best_file_name
= strdup(file_name
);
939 minimal_size
= directory_size_distance((IconThemeDir
*)dir
->data
, size
);
940 best_file_theme
= theme
;
941 //printf("best_file_name = %s; minimal_size = %d\n", best_file_name, minimal_size);
944 if (((IconThemeDir
*)dir
->data
)->size
>= size
&&
945 (next_larger_size
== -1 || ((IconThemeDir
*)dir
->data
)->size
< next_larger_size
) &&
946 (!next_larger_theme
? 1 : theme
== next_larger_theme
)) {
951 next_larger
= strdup(file_name
);
952 next_larger_size
= ((IconThemeDir
*)dir
->data
)->size
;
953 next_larger_theme
= theme
;
954 //printf("next_larger = %s; next_larger_size = %d\n", next_larger, next_larger_size);
963 g_slist_free(basenames
);
964 g_slist_free(extensions
);
965 free(best_file_name
);
969 if (best_file_name
) {
970 g_slist_free(basenames
);
971 g_slist_free(extensions
);
973 return best_file_name
;
976 // Stage 3: look in unthemed icons
979 for (base
= basenames
; base
; base
= g_slist_next(base
)) {
981 for (ext
= extensions
; ext
; ext
= g_slist_next(ext
)) {
982 char *base_name
= (char*) base
->data
;
983 char *extension
= (char*) ext
->data
;
984 char *file_name
= malloc(strlen(base_name
) + strlen(icon_name
) +
985 strlen(extension
) + 100);
986 // filename = directory/iconname.extension
987 sprintf(file_name
, "%s/%s%s", base_name
, icon_name
, extension
);
988 //printf("checking %s\n", file_name);
989 if (g_file_test(file_name
, G_FILE_TEST_EXISTS
)) {
990 g_slist_free(basenames
);
991 g_slist_free(extensions
);
1002 fprintf(stderr
, "Could not find icon %s\n", icon_name
);
1004 g_slist_free(basenames
);
1005 g_slist_free(extensions
);