Mercurial > pidgin.yaz
annotate src/stock.c @ 4634:d19872836812
[gaim-migrate @ 4941]
This will let you set up different proxy settings for different accounts.
Mainly useful to the corporate users that need to connect to an internal
jabber server, and still want to connect to "external" stuff through a
proxy, or something along those lines. I'm sure someone will come up with
another use for it.
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Sun, 02 Mar 2003 18:48:02 +0000 |
parents | 7521e29658bc |
children | ada933d434cb |
rev | line source |
---|---|
4359 | 1 /** |
2 * @file stock.c GTK+ Stock resources | |
3 * | |
4 * gaim | |
5 * | |
6 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> | |
7 * | |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 * | |
22 */ | |
23 #include "stock.h" | |
24 #include "core.h" | |
25 #include <gtk/gtk.h> | |
26 #include <string.h> | |
27 | |
4363
65d98b565fbe
[gaim-migrate @ 4629]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
28 #ifdef _WIN32 |
65d98b565fbe
[gaim-migrate @ 4629]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
29 #include "win32dep.h" |
65d98b565fbe
[gaim-migrate @ 4629]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
30 #endif |
65d98b565fbe
[gaim-migrate @ 4629]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
31 |
4359 | 32 static struct StockIcon |
33 { | |
34 const char *name; | |
35 const char *dir; | |
36 const char *filename; | |
37 | |
38 } const stock_icons[] = | |
39 { | |
40 { GAIM_STOCK_BGCOLOR, "buttons", "change-bgcolor-small.png" }, | |
41 { GAIM_STOCK_BLOCK, NULL, GTK_STOCK_STOP }, | |
4514
7521e29658bc
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
42 { GAIM_STOCK_DOWNLOAD, NULL, GTK_STOCK_GO_DOWN }, |
4359 | 43 { GAIM_STOCK_FGCOLOR, "buttons", "change-fgcolor-small.png" }, |
4514
7521e29658bc
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
44 { GAIM_STOCK_FILE_CANCELED, NULL, GTK_STOCK_CANCEL }, |
7521e29658bc
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
45 { GAIM_STOCK_FILE_DONE, NULL, GTK_STOCK_APPLY }, |
4359 | 46 { GAIM_STOCK_IGNORE, NULL, GTK_STOCK_DIALOG_ERROR }, |
47 { GAIM_STOCK_IMAGE, "menus", "insert-image-small.png" }, | |
48 { GAIM_STOCK_INFO, NULL, GTK_STOCK_FIND }, | |
49 { GAIM_STOCK_INVITE, NULL, GTK_STOCK_JUMP_TO }, | |
50 { GAIM_STOCK_LINK, "menus", "insert-link-small.png" }, | |
51 { GAIM_STOCK_SEND, NULL, GTK_STOCK_CONVERT }, | |
52 { GAIM_STOCK_SMILEY, "buttons", "insert-smiley-small.png" }, | |
53 { GAIM_STOCK_TEXT_BIGGER, "buttons", "text_bigger.png" }, | |
54 { GAIM_STOCK_TEXT_NORMAL, "buttons", "text_normal.png" }, | |
55 { GAIM_STOCK_TEXT_SMALLER, "buttons", "text_smaller.png" }, | |
4514
7521e29658bc
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4363
diff
changeset
|
56 { GAIM_STOCK_UPLOAD, NULL, GTK_STOCK_GO_UP }, |
4359 | 57 { GAIM_STOCK_WARN, NULL, GTK_STOCK_DIALOG_WARNING } |
58 }; | |
59 | |
60 static gint stock_icon_count = sizeof(stock_icons) / sizeof(*stock_icons); | |
61 | |
62 static gchar * | |
63 find_file(const char *dir, const char *base) | |
64 { | |
65 char *filename; | |
66 | |
67 if (base == NULL) | |
68 return NULL; | |
69 | |
70 if (!strcmp(dir, "gaim")) | |
71 filename = g_build_filename(DATADIR, "pixmaps", "gaim", base, NULL); | |
72 else | |
73 filename = g_build_filename(DATADIR, "pixmaps", "gaim", | |
74 dir, base, NULL); | |
75 | |
76 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
77 debug_printf("Unable to load stock pixmap %s\n", base); | |
78 | |
79 g_free(filename); | |
80 | |
81 return NULL; | |
82 } | |
83 | |
84 return filename; | |
85 } | |
86 | |
87 void | |
88 setup_stock() | |
89 { | |
90 GtkIconFactory *icon_factory; | |
91 int i; | |
92 | |
93 /* Setup the icon factory. */ | |
94 icon_factory = gtk_icon_factory_new(); | |
95 | |
96 gtk_icon_factory_add_default(icon_factory); | |
97 | |
98 for (i = 0; i < stock_icon_count; i++) { | |
99 GdkPixbuf *pixbuf; | |
100 GtkIconSet *iconset; | |
101 gchar *filename; | |
102 | |
103 if (stock_icons[i].dir == NULL) { | |
104 /* GTK+ Stock icon */ | |
105 | |
106 iconset = gtk_icon_factory_lookup_default(stock_icons[i].filename); | |
107 } | |
108 else { | |
109 filename = find_file(stock_icons[i].dir, stock_icons[i].filename); | |
110 | |
111 if (filename == NULL) | |
112 continue; | |
113 | |
114 pixbuf = gdk_pixbuf_new_from_file(filename, NULL); | |
115 | |
116 g_free(filename); | |
117 | |
118 iconset = gtk_icon_set_new_from_pixbuf(pixbuf); | |
119 } | |
120 | |
121 gtk_icon_factory_add(icon_factory, stock_icons[i].name, iconset); | |
122 | |
123 gtk_icon_set_unref(iconset); | |
124 } | |
125 | |
126 g_object_unref(G_OBJECT(icon_factory)); | |
127 } |