-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathufraw_icons.c
70 lines (65 loc) · 3 KB
/
ufraw_icons.c
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
/*
* UFRaw - Unidentified Flying Raw converter for digital camera images
*
* ufraw_icons.c - load icons for UFRaw's GUI.
* Copyright 2004-2016 by Udi Fuchs
*
* This program is free software; you can 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.
*/
#include "ufraw.h"
#include "icons/ufraw_icons.h"
#include <gtk/gtk.h>
static GdkPixbuf *load_icon(GtkIconFactory *factory,
const guint8 *icon, const char *name)
{
GdkPixbuf *pixbuf = gdk_pixbuf_new_from_inline(-1, icon, FALSE, NULL);
GtkIconSet *iconset = gtk_icon_set_new_from_pixbuf(pixbuf);
gtk_icon_factory_add(factory, name, iconset);
return pixbuf;
}
void ufraw_icons_init()
{
GtkIconFactory *factory = gtk_icon_factory_new();
gtk_icon_factory_add_default(factory);
GdkPixbuf *pixbuf = load_icon(factory, ufraw_icon, "ufraw");
gtk_icon_theme_add_builtin_icon("ufraw", 48, pixbuf);
load_icon(factory, exposure_24, "exposure");
load_icon(factory, film_24, "clip-highlights-film");
load_icon(factory, digital_24, "clip-highlights-digital");
load_icon(factory, restore_lch_24, "restore-highlights-lch");
load_icon(factory, restore_hsv_24, "restore-highlights-hsv");
load_icon(factory, interpolation_24, "interpolation");
load_icon(factory, white_balance_24, "white-balance");
load_icon(factory, color_management_24, "color-management");
load_icon(factory, color_corrections_24, "color-corrections");
load_icon(factory, icc_profile_camera_24, "icc-profile-camera");
load_icon(factory, icc_profile_output_24, "icc-profile-output");
load_icon(factory, icc_profile_display_24, "icc-profile-display");
load_icon(factory, curve_24, "base-curve");
load_icon(factory, flip_horiz_24, "object-flip-horizontal");
load_icon(factory, flip_vert_24, "object-flip-vertical");
load_icon(factory, rotate_90_24, "object-rotate-right");
load_icon(factory, rotate_270_24, "object-rotate-left");
load_icon(factory, lock_24, "object-lock");
load_icon(factory, unlock_24, "object-unlock");
load_icon(factory, automatic_24, "object-automatic");
load_icon(factory, manual_24, "object-manual");
load_icon(factory, exif_24, "exif");
load_icon(factory, crop_24, "crop");
load_icon(factory, rectify_24, "rectify");
load_icon(factory, gimp_24, "gimp");
load_icon(factory, grayscale_24, "grayscale");
load_icon(factory, channel_blue_24, "channel-blue");
load_icon(factory, channel_green_24, "channel-green");
load_icon(factory, channel_red_24, "channel-red");
load_icon(factory, channel_grey_24, "channel-grey");
load_icon(factory, lens_24, "lens");
load_icon(factory, tca_24, "tca");
load_icon(factory, vignetting_24, "vignetting");
load_icon(factory, distortion_24, "distortion");
load_icon(factory, geometry_24, "geometry");
load_icon(factory, hueadjust_24, "hueadjust");
}