# HG changeset patch # User Rob Flynn # Date 966720119 0 # Node ID 8b9f0537f4730dc7444725666fb88b51988426b7 # Parent 012bf218a6555bbe5d75adc4d2868215c3f64d2b [gaim-migrate @ 737] Added a few more little pixmaps to the file menu. committer: Tailor Script diff -r 012bf218a655 -r 8b9f0537f473 pixmaps/close_small.xpm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pixmaps/close_small.xpm Sat Aug 19 21:21:59 2000 +0000 @@ -0,0 +1,23 @@ +/* XPM */ +static char * close_small_xpm[] = { +"18 18 2 1", +" c None", +". c #000000", +" ", +" ", +" ", +" ", +" . ", +" .. ... ", +" .... ", +" ... ", +" ... ", +" ..... ", +" . ... ", +" . . ", +" ", +" ", +" ", +" ", +" ", +" "}; diff -r 012bf218a655 -r 8b9f0537f473 pixmaps/exit_small.xpm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pixmaps/exit_small.xpm Sat Aug 19 21:21:59 2000 +0000 @@ -0,0 +1,49 @@ +/* XPM */ +static char * exit_small_xpm[] = { +"18 18 28 1", +" c None", +". c #000000", +"+ c #555552", +"@ c #72726E", +"# c #ABABA5", +"$ c #E4E4DC", +"% c #0C0708", +"& c #180F0F", +"* c #301D1E", +"= c #905A5D", +"- c #6E6563", +"; c #B6B6B0", +"> c #787874", +", c #6B3C3D", +"' c #7A4446", +") c #824B4C", +"! c #965B5E", +"~ c #C2797D", +"{ c #A56B6D", +"] c #646460", +"^ c #1C1C1C", +"/ c #6B3C3E", +"( c #915A5D", +"_ c #D6D6CE", +": c #2B2B29", +"< c #565653", +"[ c #575754", +"} c #040404", +" ", +" ", +" ", +" ", +" .+@@@+. ", +" .#$$$#. ", +" %&#$$$#. ", +" ...*=-$;>#. ", +" .,')!~{]>^#. ", +" ./')!~{]$$#. ", +" ...*(-$$$#. ", +" %&#$$$#. ", +" .#_#:.. ", +" .<[}}}} ", +" ", +" ", +" ", +" "}; diff -r 012bf218a655 -r 8b9f0537f473 src/buddy.c --- a/src/buddy.c Sat Aug 19 04:32:52 2000 +0000 +++ b/src/buddy.c Sat Aug 19 21:21:59 2000 +0000 @@ -67,6 +67,8 @@ #include "pixmaps/add_small.xpm" #include "pixmaps/import_small.xpm" +#include "pixmaps/close_small.xpm" +#include "pixmaps/exit_small.xpm" static GtkTooltips *tips; static GtkWidget *editpane; @@ -1858,9 +1860,9 @@ gaim_new_item_with_pixmap(menu, _("Signoff"), add_small_xpm, GTK_SIGNAL_FUNC(signoff)); #ifndef USE_APPLET - gaim_new_item_with_pixmap(menu, _("Quit"), add_small_xpm, GTK_SIGNAL_FUNC(do_quit)); + gaim_new_item_with_pixmap(menu, _("Quit"), exit_small_xpm, GTK_SIGNAL_FUNC(do_quit)); #else - gaim_new_item_with_pixmap(menu, _("Close"), add_small_xpm, GTK_SIGNAL_FUNC(applet_destroy_buddy)); + gaim_new_item_with_pixmap(menu, _("Close"), close_small_xpm, GTK_SIGNAL_FUNC(applet_destroy_buddy)); #endif menu = gtk_menu_new();