comparison src/main.c @ 5032:cb700c07ee07

[gaim-migrate @ 5375] Rewrote the buddy pounce code. It's now core/UI split, and may allow for more advanced stuff later. Pounce actions are now a UI thing, and the backend logic for registering, unregistering, and activating pouncs is now in core. Also, the buddy pounce dialog was redesigned. Oh, and there are new pounce types. You can now choose from: * Sign on * Sign off * Away * Return from away * Idle * Return from idle * Buddy starts typing * Buddy stops typing Should work. I've been using it for some time. If you find a bug, though, let me know. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 05 Apr 2003 10:14:21 +0000
parents 8e55a4d362a3
children fefad67de2c7
comparison
equal deleted inserted replaced
5031:bc494c4a3991 5032:cb700c07ee07
63 63
64 static GtkWidget *name; 64 static GtkWidget *name;
65 static GtkWidget *pass; 65 static GtkWidget *pass;
66 66
67 GList *log_conversations = NULL; 67 GList *log_conversations = NULL;
68 GList *buddy_pounces = NULL;
69 GSList *away_messages = NULL; 68 GSList *away_messages = NULL;
70 GSList *message_queue = NULL; 69 GSList *message_queue = NULL;
71 GSList *unread_message_queue = NULL; 70 GSList *unread_message_queue = NULL;
72 GSList *away_time_queue = NULL; 71 GSList *away_time_queue = NULL;
73 72
870 gaim_set_xfer_ui_ops(gaim_get_gtk_xfer_ui_ops()); 869 gaim_set_xfer_ui_ops(gaim_get_gtk_xfer_ui_ops());
871 gaim_set_blist_ui_ops(gaim_get_gtk_blist_ui_ops()); 870 gaim_set_blist_ui_ops(gaim_get_gtk_blist_ui_ops());
872 871
873 load_prefs(); 872 load_prefs();
874 core_main(); 873 core_main();
874 load_pounces();
875 ui_main(); 875 ui_main();
876 876
877 #ifdef USE_SM 877 #ifdef USE_SM
878 session_init(argv[0], opt_session_arg); 878 session_init(argv[0], opt_session_arg);
879 #endif 879 #endif