comparison src/aim.c @ 430:0cd2ba801eb4

[gaim-migrate @ 440] First pass at a buddy ticker. committer: Tailor Script <tailor@pidgin.im>
author Syd Logan <slogan>
date Sat, 24 Jun 2000 23:15:48 +0000
parents 0d4e80bdb96b
children 7d5f91c1ff20
comparison
equal deleted inserted replaced
429:ccf7fc40263f 430:0cd2ba801eb4
48 #include "gaim.h" 48 #include "gaim.h"
49 #ifndef USE_APPLET 49 #ifndef USE_APPLET
50 #include "pixmaps/logo.xpm" 50 #include "pixmaps/logo.xpm"
51 #endif /* USE_APPLET */ 51 #endif /* USE_APPLET */
52 52
53 #include "gtkticker.h"
54
53 static GtkWidget *name; 55 static GtkWidget *name;
54 static GtkWidget *pass; 56 static GtkWidget *pass;
55 static GtkWidget *signon; 57 static GtkWidget *signon;
56 static GtkWidget *cancel; 58 static GtkWidget *cancel;
57 static GtkWidget *progress; 59 static GtkWidget *progress;
66 GList *buddy_chats = NULL; 68 GList *buddy_chats = NULL;
67 GList *conversations = NULL; 69 GList *conversations = NULL;
68 GList *chat_rooms = NULL; 70 GList *chat_rooms = NULL;
69 71
70 GtkWidget *mainwindow = NULL; 72 GtkWidget *mainwindow = NULL;
73
74 void BuddyTickerCreateWindow( void );
71 75
72 char toc_addy[16]; 76 char toc_addy[16];
73 char *quad_addr = NULL; 77 char *quad_addr = NULL;
74 78
75 gboolean running = FALSE; /* whether or not we're currently trying to sign on */ 79 gboolean running = FALSE; /* whether or not we're currently trying to sign on */
333 337
334 if (mainwindow) { 338 if (mainwindow) {
335 gtk_widget_show(mainwindow); 339 gtk_widget_show(mainwindow);
336 return; 340 return;
337 } 341 }
338 342
339 mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL); 343 mainwindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
340 signon = gtk_button_new_with_label(_("Signon")); 344 signon = gtk_button_new_with_label(_("Signon"));
341 cancel = gtk_button_new_with_label(_("Cancel")); 345 cancel = gtk_button_new_with_label(_("Cancel"));
342 reg = gtk_button_new_with_label(_("Register")); 346 reg = gtk_button_new_with_label(_("Register"));
343 options = gtk_button_new_with_label(_("Options")); 347 options = gtk_button_new_with_label(_("Options"));