comparison src/stock.c @ 4514:7521e29658bc

[gaim-migrate @ 4792] Of course, file transfer wasn't really gone.. I'm trying my hardest to bring on the end of the world (see the roadmap at http://gaim.sf.net/roadmap.png). File transfer is being rewritten. This isn't the finished implementation, but it's enough to let us get the prpls working. There is now a file transfer dialog, which will appear when you get a new transfer request or when you go to Tools -> File Transfers. This is of course core/UI split. I'll also be working on documentation on how to write FT support in a prpl. Oh, and I'll get resumes and transfer batches done when school isn't breathing down my back. Only DCC receive in IRC currently works. Sorry. We'll get the other prpls working soon, as well as send. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 04 Feb 2003 06:57:35 +0000
parents 65d98b565fbe
children ada933d434cb
comparison
equal deleted inserted replaced
4513:adb0245e1dfc 4514:7521e29658bc
37 37
38 } const stock_icons[] = 38 } const stock_icons[] =
39 { 39 {
40 { GAIM_STOCK_BGCOLOR, "buttons", "change-bgcolor-small.png" }, 40 { GAIM_STOCK_BGCOLOR, "buttons", "change-bgcolor-small.png" },
41 { GAIM_STOCK_BLOCK, NULL, GTK_STOCK_STOP }, 41 { GAIM_STOCK_BLOCK, NULL, GTK_STOCK_STOP },
42 { GAIM_STOCK_DOWNLOAD, NULL, GTK_STOCK_GO_DOWN },
42 { GAIM_STOCK_FGCOLOR, "buttons", "change-fgcolor-small.png" }, 43 { GAIM_STOCK_FGCOLOR, "buttons", "change-fgcolor-small.png" },
44 { GAIM_STOCK_FILE_CANCELED, NULL, GTK_STOCK_CANCEL },
45 { GAIM_STOCK_FILE_DONE, NULL, GTK_STOCK_APPLY },
43 { GAIM_STOCK_IGNORE, NULL, GTK_STOCK_DIALOG_ERROR }, 46 { GAIM_STOCK_IGNORE, NULL, GTK_STOCK_DIALOG_ERROR },
44 { GAIM_STOCK_IMAGE, "menus", "insert-image-small.png" }, 47 { GAIM_STOCK_IMAGE, "menus", "insert-image-small.png" },
45 { GAIM_STOCK_INFO, NULL, GTK_STOCK_FIND }, 48 { GAIM_STOCK_INFO, NULL, GTK_STOCK_FIND },
46 { GAIM_STOCK_INVITE, NULL, GTK_STOCK_JUMP_TO }, 49 { GAIM_STOCK_INVITE, NULL, GTK_STOCK_JUMP_TO },
47 { GAIM_STOCK_LINK, "menus", "insert-link-small.png" }, 50 { GAIM_STOCK_LINK, "menus", "insert-link-small.png" },
48 { GAIM_STOCK_SEND, NULL, GTK_STOCK_CONVERT }, 51 { GAIM_STOCK_SEND, NULL, GTK_STOCK_CONVERT },
49 { GAIM_STOCK_SMILEY, "buttons", "insert-smiley-small.png" }, 52 { GAIM_STOCK_SMILEY, "buttons", "insert-smiley-small.png" },
50 { GAIM_STOCK_TEXT_BIGGER, "buttons", "text_bigger.png" }, 53 { GAIM_STOCK_TEXT_BIGGER, "buttons", "text_bigger.png" },
51 { GAIM_STOCK_TEXT_NORMAL, "buttons", "text_normal.png" }, 54 { GAIM_STOCK_TEXT_NORMAL, "buttons", "text_normal.png" },
52 { GAIM_STOCK_TEXT_SMALLER, "buttons", "text_smaller.png" }, 55 { GAIM_STOCK_TEXT_SMALLER, "buttons", "text_smaller.png" },
56 { GAIM_STOCK_UPLOAD, NULL, GTK_STOCK_GO_UP },
53 { GAIM_STOCK_WARN, NULL, GTK_STOCK_DIALOG_WARNING } 57 { GAIM_STOCK_WARN, NULL, GTK_STOCK_DIALOG_WARNING }
54 }; 58 };
55 59
56 static gint stock_icon_count = sizeof(stock_icons) / sizeof(*stock_icons); 60 static gint stock_icon_count = sizeof(stock_icons) / sizeof(*stock_icons);
57 61