changeset 15668:603488306e23

more icon updates.
author Sean Egan <seanegan@gmail.com>
date Wed, 21 Feb 2007 19:48:11 +0000
parents d44fca5248a1
children 878b1f5f64a6
files pidgin/gaimstock.c pidgin/gaimstock.h pidgin/gtkstatusbox.c pidgin/gtkstatusbox.h pidgin/pixmaps/animations/16/Makefile.am pidgin/pixmaps/animations/16/typing0.png pidgin/pixmaps/animations/16/typing1.png pidgin/pixmaps/animations/16/typing2.png pidgin/pixmaps/animations/16/typing3.png pidgin/pixmaps/animations/16/typing4.png pidgin/pixmaps/emblems/16/blocked.png pidgin/pixmaps/emblems/16/female.png pidgin/pixmaps/emblems/16/voice.png pidgin/pixmaps/status/16/message-pending.png
diffstat 14 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gaimstock.c	Tue Feb 20 19:36:08 2007 +0000
+++ b/pidgin/gaimstock.c	Wed Feb 21 19:48:11 2007 +0000
@@ -146,6 +146,7 @@
 	{ PIDGIN_STOCK_ANIMATION_TYPING1,  "animations", "typing1.png",TRUE, FALSE, FALSE, FALSE },
 	{ PIDGIN_STOCK_ANIMATION_TYPING2,  "animations", "typing2.png",TRUE, FALSE, FALSE, FALSE },
 	{ PIDGIN_STOCK_ANIMATION_TYPING3,  "animations", "typing3.png",TRUE, FALSE, FALSE, FALSE },
+	{ PIDGIN_STOCK_ANIMATION_TYPING4,  "animations", "typing4.png",TRUE, FALSE, FALSE, FALSE },
 
 	{ PIDGIN_STOCK_TOOLBAR_ACCOUNTS, "toolbar", "accounts.png", TRUE, FALSE, FALSE, FALSE },
 	{ PIDGIN_STOCK_TOOLBAR_BGCOLOR, "toolbar", "change-bgcolor.png", TRUE, FALSE, FALSE, FALSE },
--- a/pidgin/gaimstock.h	Tue Feb 20 19:36:08 2007 +0000
+++ b/pidgin/gaimstock.h	Wed Feb 21 19:48:11 2007 +0000
@@ -103,6 +103,7 @@
 #define PIDGIN_STOCK_ANIMATION_TYPING1	"pidgin-anim-typing1"
 #define PIDGIN_STOCK_ANIMATION_TYPING2	"pidgin-anim-typing2"
 #define PIDGIN_STOCK_ANIMATION_TYPING3	"pidgin-anim-typing3"
+#define PIDGIN_STOCK_ANIMATION_TYPING4	"pidgin-anim-typing4"
 
 /* Toolbar (and menu) icons */
 #define PIDGIN_STOCK_TOOLBAR_ACCOUNTS     "pidgin-accounts"
--- a/pidgin/gtkstatusbox.c	Tue Feb 20 19:36:08 2007 +0000
+++ b/pidgin/gtkstatusbox.c	Wed Feb 21 19:48:11 2007 +0000
@@ -1187,6 +1187,8 @@
 								     icon_size, "PidginStatusBox");
 	status_box->typing_pixbufs[3] =  gtk_widget_render_icon (GTK_WIDGET(status_box->vbox), PIDGIN_STOCK_ANIMATION_TYPING3,
 								     icon_size, "PidginStatusBox");
+	status_box->typing_pixbufs[4] =  gtk_widget_render_icon (GTK_WIDGET(status_box->vbox), PIDGIN_STOCK_ANIMATION_TYPING4,
+								     icon_size, "PidginStatusBox");
 }
 
 static void account_enabled_cb(GaimAccount *acct, PidginStatusBox *status_box) {
@@ -2053,7 +2055,7 @@
 static void
 pidgin_status_box_pulse_typing(PidginStatusBox *status_box)
 {
-	if (status_box->typing_index == 3)
+	if (status_box->typing_index == 4)
 		status_box->typing_index = 0;
 	else
 		status_box->typing_index++;
--- a/pidgin/gtkstatusbox.h	Tue Feb 20 19:36:08 2007 +0000
+++ b/pidgin/gtkstatusbox.h	Wed Feb 21 19:48:11 2007 +0000
@@ -110,7 +110,7 @@
 	int connecting_index;
 	GdkPixbuf *connecting_pixbufs[4];
 	int typing_index;
-	GdkPixbuf *typing_pixbufs[4];
+	GdkPixbuf *typing_pixbufs[6];
 
 	gboolean network_available;
 	gboolean connecting;
--- a/pidgin/pixmaps/animations/16/Makefile.am	Tue Feb 20 19:36:08 2007 +0000
+++ b/pidgin/pixmaps/animations/16/Makefile.am	Wed Feb 21 19:48:11 2007 +0000
@@ -5,7 +5,8 @@
 		typing0.png \
 		typing1.png \
 		typing2.png \
-		typing3.png
+		typing3.png \
+		typing4.png
 
 pidginanimpixdir = $(datadir)/pixmaps/pidgin/animations/16
 pidginanimpix_DATA = $(EXTRA_DIST)
Binary file pidgin/pixmaps/animations/16/typing0.png has changed
Binary file pidgin/pixmaps/animations/16/typing1.png has changed
Binary file pidgin/pixmaps/animations/16/typing2.png has changed
Binary file pidgin/pixmaps/animations/16/typing3.png has changed
Binary file pidgin/pixmaps/animations/16/typing4.png has changed
Binary file pidgin/pixmaps/emblems/16/blocked.png has changed
Binary file pidgin/pixmaps/emblems/16/female.png has changed
Binary file pidgin/pixmaps/emblems/16/voice.png has changed
Binary file pidgin/pixmaps/status/16/message-pending.png has changed