changeset 1338:2e046be5e44a

[gaim-migrate @ 1348] Just making a reminder for myself. :-) committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Thu, 21 Dec 2000 00:21:40 +0000
parents 198b0e53d7c3
children 6b31e7948b05
files TODO plugins/napster.c
diffstat 2 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/TODO	Wed Dec 20 23:56:03 2000 +0000
+++ b/TODO	Thu Dec 21 00:21:40 2000 +0000
@@ -12,6 +12,7 @@
 	Get Jabber working
 	Fix MSN signon process
 	Make it so you can register new accounts via gaim
+	Napster user registration
 
 	Syd is cool and gave all of these ideas:
 		Have multiple tickers in the same window, one for buddies
--- a/plugins/napster.c	Wed Dec 20 23:56:03 2000 +0000
+++ b/plugins/napster.c	Thu Dec 21 00:21:40 2000 +0000
@@ -530,6 +530,17 @@
 	}
 }
 
+static void nap_draw_new_user(GtkWidget *box)
+{
+	GtkWidget *label;
+
+	label = gtk_label_new(_("Napster registration is currently under development"));
+
+	gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
+	gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5);
+	gtk_widget_show(label);
+}
+
 static char** nap_list_icon(int uc)
 {
 	return napster_xpm;
@@ -571,6 +582,7 @@
 	ret->chat_whisper = NULL;
 	ret->chat_send = nap_chat_send;
 	ret->keepalive = NULL;
+	ret->draw_new_user = nap_draw_new_user;
 
 	my_protocol = ret;
 }