Revision 424
| src/main.c (revision 424) | ||
|---|---|---|
| 73 | 73 |
#include "utils.h" |
| 74 | 74 |
#include "gtkutils.h" |
| 75 | 75 |
#include "socket.h" |
| 76 |
#include "stock_pixmap.h" |
|
| 76 | 77 |
|
| 77 | 78 |
#if USE_GPGME |
| 78 | 79 |
# include "rfc2015.h" |
| ... | ... | |
| 145 | 146 |
gchar *userrc; |
| 146 | 147 |
MainWindow *mainwin; |
| 147 | 148 |
FolderView *folderview; |
| 149 |
GdkPixbuf *icon; |
|
| 148 | 150 |
|
| 149 | 151 |
setlocale(LC_ALL, ""); |
| 150 | 152 |
bindtextdomain(PACKAGE, LOCALEDIR); |
| ... | ... | |
| 300 | 302 |
prefs_display_header_read_config(); |
| 301 | 303 |
|
| 302 | 304 |
gtkut_widget_init(); |
| 305 |
stock_pixbuf_gdk(NULL, STOCK_PIXMAP_SYLPHEED, &icon); |
|
| 306 |
gtk_window_set_default_icon(icon); |
|
| 303 | 307 |
|
| 304 | 308 |
mainwin = main_window_create |
| 305 | 309 |
(prefs_common.sep_folder | prefs_common.sep_msg << 1); |
| src/stock_pixmap.c (revision 424) | ||
|---|---|---|
| 46 | 46 |
#include "pixmaps/mark.xpm" |
| 47 | 47 |
#include "pixmaps/new.xpm" |
| 48 | 48 |
#include "pixmaps/replied.xpm" |
| 49 |
#include "pixmaps/unread.xpm" |
|
| 50 |
#include "pixmaps/vcard.xpm" |
|
| 51 |
#include "pixmaps/online.xpm" |
|
| 52 |
#include "pixmaps/offline.xpm" |
|
| 53 |
#include "pixmaps/mail.xpm" |
|
| 49 | 54 |
#include "pixmaps/stock_inbox.h" |
| 50 | 55 |
#include "pixmaps/stock_outbox.h" |
| 51 | 56 |
#include "pixmaps/stock_mail.h" |
| ... | ... | |
| 65 | 70 |
#include "pixmaps/stock_delete_16.h" |
| 66 | 71 |
#include "pixmaps/stock_spam.h" |
| 67 | 72 |
#include "pixmaps/stock_hand-signed.h" |
| 73 |
#include "pixmaps/stock_sylpheed.h" |
|
| 68 | 74 |
#include "pixmaps/sylpheed-logo.h" |
| 69 |
#include "pixmaps/unread.xpm" |
|
| 70 |
#include "pixmaps/vcard.xpm" |
|
| 71 |
#include "pixmaps/online.xpm" |
|
| 72 |
#include "pixmaps/offline.xpm" |
|
| 73 |
#include "pixmaps/mail.xpm" |
|
| 74 | 75 |
|
| 75 | 76 |
typedef struct _StockPixmapData StockPixmapData; |
| 76 | 77 |
|
| ... | ... | |
| 133 | 134 |
{NULL, NULL, NULL, NULL, stock_delete, sizeof(stock_delete), GTK_STOCK_DELETE, 24},
|
| 134 | 135 |
{NULL, NULL, NULL, NULL, stock_spam, sizeof(stock_spam), "stock_spam", 24},
|
| 135 | 136 |
{NULL, NULL, NULL, NULL, stock_hand_signed, sizeof(stock_hand_signed), "stock_hand-signed", 24},
|
| 137 |
{NULL, NULL, NULL, NULL, stock_sylpheed, sizeof(stock_sylpheed), NULL, 0},
|
|
| 136 | 138 |
{NULL, NULL, NULL, NULL, sylpheed_logo, sizeof(sylpheed_logo), NULL, 0},
|
| 137 | 139 |
}; |
| 138 | 140 |
|
| ... | ... | |
| 194 | 196 |
if (pixbuf) |
| 195 | 197 |
*pixbuf = NULL; |
| 196 | 198 |
|
| 197 |
g_return_val_if_fail(window != NULL, -1); |
|
| 198 | 199 |
g_return_val_if_fail(icon >= 0 && icon < N_STOCK_PIXMAPS, -1); |
| 199 | 200 |
|
| 200 | 201 |
pix_d = &pixmaps[icon]; |
| src/stock_pixmap.h (revision 424) | ||
|---|---|---|
| 70 | 70 |
STOCK_PIXMAP_DELETE, |
| 71 | 71 |
STOCK_PIXMAP_SPAM, |
| 72 | 72 |
STOCK_PIXMAP_SIGN, |
| 73 |
STOCK_PIXMAP_SYLPHEED, |
|
| 73 | 74 |
STOCK_PIXMAP_SYLPHEED_LOGO, |
| 74 | 75 |
|
| 75 | 76 |
N_STOCK_PIXMAPS |
| src/pixmaps/Makefile.am (revision 424) | ||
|---|---|---|
| 18 | 18 |
stock_mail_send_queue.h \ |
| 19 | 19 |
stock_outbox.h \ |
| 20 | 20 |
stock_spam.h \ |
| 21 |
stock_sylpheed.h \ |
|
| 21 | 22 |
sylpheed-logo.h |
| 22 | 23 |
|
| 23 | 24 |
EXTRA_DIST = \ |
| ... | ... | |
| 40 | 41 |
stock_mail_send_queue.png \ |
| 41 | 42 |
stock_outbox.png \ |
| 42 | 43 |
stock_spam.png \ |
| 44 |
stock_sylpheed.png \ |
|
| 43 | 45 |
sylpheed-logo.png \ |
| 44 | 46 |
clip.xpm \ |
| 45 | 47 |
deleted.xpm \ |
| ChangeLog.ja (revision 424) | ||
|---|---|---|
| 1 | 1 |
2005-07-12 |
| 2 | 2 |
|
| 3 |
* src/main.c |
|
| 4 |
src/stock_pixmap.[ch] |
|
| 5 |
src/Makefile.am |
|
| 6 |
src/pixmaps/stock_sylpheed.png |
|
| 7 |
sylpheed.png |
|
| 8 |
sylpheed-64x64.png |
|
| 9 |
sylpheed-128x128.png: ?????????ץꥱ???????????????ɲä??? |
|
| 10 |
?ǥե????ȤΥ??????ɥ??????????Ȥ??ƻ??ꡣ |
|
| 11 |
|
|
| 12 |
2005-07-12 |
|
| 13 |
|
|
| 3 | 14 |
* src/procmsg.[ch]: procmsg_send_queue(): ?????å??????????????ɤ? |
| 4 | 15 |
?????˥??ޥꥭ???å????ꥢ?????褦?ˤ????? |
| 5 | 16 |
|
| ChangeLog (revision 424) | ||
|---|---|---|
| 1 | 1 |
2005-07-12 |
| 2 | 2 |
|
| 3 |
* src/main.c |
|
| 4 |
src/stock_pixmap.[ch] |
|
| 5 |
src/Makefile.am |
|
| 6 |
src/pixmaps/stock_sylpheed.png |
|
| 7 |
sylpheed.png |
|
| 8 |
sylpheed-64x64.png |
|
| 9 |
sylpheed-128x128.png: added a new app icon, and specified it as |
|
| 10 |
a default window icon. |
|
| 11 |
|
|
| 12 |
2005-07-12 |
|
| 13 |
|
|
| 3 | 14 |
* src/procmsg.[ch]: procmsg_send_queue(): clear summary cache to |
| 4 | 15 |
prevent cache discrepancy. |
| 5 | 16 |
|
Also available in: Unified diff