changeset 727:8b9f0537f473

[gaim-migrate @ 737] Added a few more little pixmaps to the file menu. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sat, 19 Aug 2000 21:21:59 +0000
parents 012bf218a655
children a509d6fad0de
files pixmaps/close_small.xpm pixmaps/exit_small.xpm src/buddy.c
diffstat 3 files changed, 76 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- /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",
+"                  ",
+"                  ",
+"                  ",
+"                  ",
+"         .        ",
+"     .. ...       ",
+"      ....        ",
+"      ...         ",
+"       ...        ",
+"      .....       ",
+"      .  ...      ",
+"     .    .       ",
+"                  ",
+"                  ",
+"                  ",
+"                  ",
+"                  ",
+"                  "};
--- /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",
+"                  ",
+"                  ",
+"                  ",
+"                  ",
+"       .+@@@+.    ",
+"       .#$$$#.    ",
+"      %&#$$$#.    ",
+"   ...*=-$;>#.    ",
+"  .,')!~{]>^#.    ",
+"  ./')!~{]$$#.    ",
+"   ...*(-$$$#.    ",
+"      %&#$$$#.    ",
+"       .#_#:..    ",
+"       .<[}}}}    ",
+"                  ",
+"                  ",
+"                  ",
+"                  "};
--- 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();