5f59343517b4bfdaa18f6be81ea6bf5673b03edc
[moonshot-ui.git] / src / moonshot-utils.vala
1 #if OS_WIN32
2 extern string? g_win32_get_package_installation_directory_of_module (void *module);
3 #endif
4
5 public Gdk.Pixbuf? find_icon_sized (string name, Gtk.IconSize icon_size)
6 {
7     int width, height;
8     Gtk.icon_size_lookup (icon_size, out width, out height);
9     return find_icon (name, width);
10 }
11
12 /* Portability hack: making Gtk icon themes work on Windows is
13  * difficult; let's just bundle the icons that are necessary and
14  * load them manually.
15  */
16
17 public bool gtk_available = false;
18
19 public Gdk.Pixbuf? find_icon (string name, int size)
20 {
21     if (!gtk_available)
22         return null;
23     try
24     {
25 #if OS_WIN32
26         string? base_path = g_win32_get_package_installation_directory_of_module (null);
27
28         // Hack to allow running within the source tree
29         int last_dir_index = base_path.last_index_of_char ('\\');
30         if (base_path.substring (last_dir_index) == "\\.libs" || base_path.substring (last_dir_index) == "src")
31             base_path = base_path.slice(0, last_dir_index);
32
33         string? filename = Path.build_filename (base_path, "share", "icons", "%s.png".printf (name));
34         return new Gdk.Pixbuf.from_file_at_size (filename, size, size);
35
36 #else
37         var icon_theme = Gtk.IconTheme.get_default ();
38         return icon_theme.load_icon (name, size, Gtk.IconLookupFlags.FORCE_SIZE);
39 #endif
40     }
41     catch (Error e)
42     {
43         stdout.printf("Error loading icon '%s': %s\n", name, e.message);
44         return null;
45     }
46 }