Sat, 31 Jan 2004 02:02:46 +0000
[gaim-migrate @ 8911]
Daniel Atallah noticed a problem with my changes to the disconnect
account dialog and submitted a patch. I did this instead because
I think it's cleaner, but it might be an iota or three slower. But
really, if you think about it, what's just one little iota when you
sleep for BILLIONS of iotas a DAY?
| 4359 | 1 | /** |
| 2 | * @file stock.c GTK+ Stock resources | |
| 3 | * | |
| 4 | * gaim | |
| 5 | * | |
| 8046 | 6 | * Gaim is the legal property of its developers, whose names are too numerous |
| 7 | * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 8 | * source distribution. | |
| 4359 | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify | |
| 11 | * it under the terms of the GNU General Public License as published by | |
| 12 | * the Free Software Foundation; either version 2 of the License, or | |
| 13 | * (at your option) any later version. | |
| 14 | * | |
| 15 | * This program is distributed in the hope that it will be useful, | |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 | * GNU General Public License for more details. | |
| 19 | * | |
| 20 | * You should have received a copy of the GNU General Public License | |
| 21 | * along with this program; if not, write to the Free Software | |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 23 | * | |
| 24 | */ | |
|
6371
e92b66ee5518
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6155
diff
changeset
|
25 | #include "gtkinternal.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5822
diff
changeset
|
26 | |
| 4359 | 27 | #include "stock.h" |
|
4363
08b6dea58732
[gaim-migrate @ 4629]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
28 | |
| 4359 | 29 | static struct StockIcon |
| 30 | { | |
| 31 | const char *name; | |
| 32 | const char *dir; | |
| 33 | const char *filename; | |
| 34 | ||
| 35 | } const stock_icons[] = | |
| 36 | { | |
|
5024
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
37 | { GAIM_STOCK_ABOUT, "buttons", "about_menu.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
38 | { GAIM_STOCK_ACCOUNTS, "buttons", "accounts.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
39 | { GAIM_STOCK_BGCOLOR, "buttons", "change-bgcolor-small.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
40 | { GAIM_STOCK_BLOCK, NULL, GTK_STOCK_STOP }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
41 | { GAIM_STOCK_CHAT, NULL, GTK_STOCK_JUMP_TO }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
42 | { GAIM_STOCK_DOWNLOAD, NULL, GTK_STOCK_GO_DOWN }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
43 | { GAIM_STOCK_DIALOG_AUTH, "dialogs", "gaim_auth.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
44 | { GAIM_STOCK_DIALOG_COOL, "dialogs", "gaim_cool.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
45 | { GAIM_STOCK_DIALOG_ERROR, "dialogs", "gaim_error.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
46 | { GAIM_STOCK_DIALOG_INFO, "dialogs", "gaim_info.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
47 | { GAIM_STOCK_DIALOG_QUESTION, "dialogs", "gaim_question.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
48 | { GAIM_STOCK_DIALOG_WARNING, "dialogs", "gaim_warning.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
49 | { GAIM_STOCK_FGCOLOR, "buttons", "change-fgcolor-small.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
50 | { GAIM_STOCK_EDIT, "buttons", "edit.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
51 | { GAIM_STOCK_FILE_CANCELED, NULL, GTK_STOCK_CANCEL }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
52 | { GAIM_STOCK_FILE_DONE, NULL, GTK_STOCK_APPLY }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
53 | { GAIM_STOCK_FILE_TRANSFER, NULL, GTK_STOCK_REVERT_TO_SAVED }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
54 | { GAIM_STOCK_ICON_AWAY, "icons", "away.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
55 | { GAIM_STOCK_ICON_AWAY_MSG, "icons", "msgpend.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
56 | { GAIM_STOCK_ICON_CONNECT, "icons", "connect.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
57 | { GAIM_STOCK_ICON_OFFLINE, "icons", "offline.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
58 | { GAIM_STOCK_ICON_ONLINE, "icons", "online.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
59 | { GAIM_STOCK_ICON_ONLINE_MSG, "icons", "msgunread.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
60 | { GAIM_STOCK_IGNORE, NULL, GTK_STOCK_DIALOG_ERROR }, |
| 5822 | 61 | { GAIM_STOCK_IM, "buttons", "send-im.png" }, |
|
5024
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
62 | { GAIM_STOCK_IMAGE, "buttons", "insert-image-small.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
63 | { GAIM_STOCK_INFO, NULL, GTK_STOCK_FIND }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
64 | { GAIM_STOCK_INVITE, NULL, GTK_STOCK_JUMP_TO }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
65 | { GAIM_STOCK_LINK, "buttons", "insert-link-small.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
66 | { GAIM_STOCK_LOGO, "gaim", "logo.png" }, |
|
5563
d5a7852aa0cb
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5523
diff
changeset
|
67 | { GAIM_STOCK_MODIFY, NULL, GTK_STOCK_PREFERENCES }, |
|
6009
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
68 | { GAIM_STOCK_PAUSE, "buttons", "pause.png" }, |
|
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
69 | { GAIM_STOCK_OPEN_MAIL, NULL, GTK_STOCK_JUMP_TO }, |
| 5822 | 70 | { GAIM_STOCK_SEND, "buttons", "send-im.png" }, |
|
5024
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
71 | { GAIM_STOCK_SIGN_ON, NULL, GTK_STOCK_EXECUTE }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
72 | { GAIM_STOCK_SIGN_OFF, NULL, GTK_STOCK_CLOSE }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
73 | { GAIM_STOCK_SMILEY, "buttons", "insert-smiley-small.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
74 | { GAIM_STOCK_TEXT_BIGGER, "buttons", "text_bigger.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
75 | { GAIM_STOCK_TEXT_NORMAL, "buttons", "text_normal.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
76 | { GAIM_STOCK_TEXT_SMALLER, "buttons", "text_smaller.png" }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
77 | { GAIM_STOCK_TYPED, "gaim", "typed.png" }, |
| 6155 | 78 | { GAIM_STOCK_TYPING, "gaim", "typing.png" }, |
|
5024
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
79 | { GAIM_STOCK_UPLOAD, NULL, GTK_STOCK_GO_UP }, |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
80 | { GAIM_STOCK_WARN, NULL, GTK_STOCK_DIALOG_WARNING } |
| 4359 | 81 | }; |
| 82 | ||
|
5523
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
83 | const GtkStockItem stock_items[] = |
|
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
84 | { |
|
5563
d5a7852aa0cb
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5523
diff
changeset
|
85 | { GAIM_STOCK_MODIFY, N_("_Modify"), 0, 0, NULL }, |
|
6009
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
86 | { GAIM_STOCK_OPEN_MAIL, N_("_Open Mail"), 0, 0, NULL }, |
|
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
87 | { GAIM_STOCK_PAUSE, N_("_Pause"), 0, 0, NULL } |
|
5523
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
88 | }; |
|
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
89 | |
| 4359 | 90 | static gint stock_icon_count = sizeof(stock_icons) / sizeof(*stock_icons); |
|
5523
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
91 | static gint stock_item_count = sizeof(stock_items) / sizeof(*stock_items); |
| 4359 | 92 | |
|
6009
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
93 | static gboolean stock_inited = FALSE; |
|
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
94 | |
| 4359 | 95 | static gchar * |
| 96 | find_file(const char *dir, const char *base) | |
| 97 | { | |
| 98 | char *filename; | |
| 99 | ||
| 100 | if (base == NULL) | |
| 101 | return NULL; | |
| 102 | ||
| 103 | if (!strcmp(dir, "gaim")) | |
| 104 | filename = g_build_filename(DATADIR, "pixmaps", "gaim", base, NULL); | |
| 105 | else | |
|
5523
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
106 | filename = g_build_filename(DATADIR, "pixmaps", "gaim", dir, base, NULL); |
| 4359 | 107 | |
| 108 | if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
|
4866
1c0f16f3859c
[gaim-migrate @ 5196]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
109 | g_critical("Unable to load stock pixmap %s\n", base); |
| 4359 | 110 | |
| 111 | g_free(filename); | |
| 112 | ||
| 113 | return NULL; | |
| 114 | } | |
| 115 | ||
| 116 | return filename; | |
| 117 | } | |
| 118 | ||
| 119 | void | |
|
6009
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
120 | gaim_gtk_stock_init(void) |
| 4359 | 121 | { |
| 122 | GtkIconFactory *icon_factory; | |
| 123 | int i; | |
|
4670
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
124 | GtkWidget *win; |
| 4359 | 125 | |
|
6009
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
126 | if (stock_inited) |
|
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
127 | return; |
|
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
128 | |
| 4359 | 129 | /* Setup the icon factory. */ |
| 130 | icon_factory = gtk_icon_factory_new(); | |
| 131 | ||
| 132 | gtk_icon_factory_add_default(icon_factory); | |
| 133 | ||
|
4670
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
134 | /* Er, yeah, a hack, but it works. :) */ |
|
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
135 | win = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
|
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
136 | gtk_widget_realize(win); |
|
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
137 | |
| 4359 | 138 | for (i = 0; i < stock_icon_count; i++) { |
| 139 | GdkPixbuf *pixbuf; | |
| 140 | GtkIconSet *iconset; | |
| 141 | gchar *filename; | |
| 142 | ||
| 143 | if (stock_icons[i].dir == NULL) { | |
|
4670
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
144 | |
| 4359 | 145 | /* GTK+ Stock icon */ |
|
4670
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
146 | iconset = gtk_style_lookup_icon_set(gtk_widget_get_style(win), |
|
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
147 | stock_icons[i].filename); |
| 4359 | 148 | } |
| 149 | else { | |
| 150 | filename = find_file(stock_icons[i].dir, stock_icons[i].filename); | |
| 151 | ||
| 152 | if (filename == NULL) | |
| 153 | continue; | |
| 154 | ||
| 155 | pixbuf = gdk_pixbuf_new_from_file(filename, NULL); | |
| 156 | ||
| 157 | g_free(filename); | |
| 158 | ||
| 159 | iconset = gtk_icon_set_new_from_pixbuf(pixbuf); | |
| 160 | } | |
| 161 | ||
| 162 | gtk_icon_factory_add(icon_factory, stock_icons[i].name, iconset); | |
| 163 | ||
| 164 | gtk_icon_set_unref(iconset); | |
| 165 | } | |
| 166 | ||
|
4670
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
167 | gtk_widget_destroy(win); |
|
8b9f47138de1
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
168 | |
|
5024
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
169 | /* register logo icon size */ |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
170 | gtk_icon_size_register(GAIM_ICON_SIZE_LOGO, 210, 150); |
|
3b5412e4b483
[gaim-migrate @ 5361]
Robert McQueen <robot101@debian.org>
parents:
4956
diff
changeset
|
171 | |
| 4359 | 172 | g_object_unref(G_OBJECT(icon_factory)); |
|
5523
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
173 | |
|
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
174 | /* Register the stock items. */ |
|
bf704f74966a
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
175 | gtk_stock_add_static(stock_items, stock_item_count); |
|
6009
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
176 | |
|
971bff448e46
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
177 | stock_inited = TRUE; |
| 4359 | 178 | } |