comparison src/main.c @ 6371:8f94cce8faa5

[gaim-migrate @ 6876] I think I touched almost every file. Here's what happened. I started off fixing up the Makefile.am and configure.ac files to help with the core/UI split some. Then I got annoyed with the build_{allow,deny}_list() functions that everything used, and decided to core/UI split privacy. While doing that, I decided to redesign the dialog. So now, a lot has changed, but not really so much. Just that most files got affected. Oh yeah, and the UI stuff was taken out of internal.h and moved to gtkinternal.h. If you use this, please be aware of this change. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 05 Aug 2003 10:55:04 +0000
parents 18e965f3a4aa
children d6777fa16645
comparison
equal deleted inserted replaced
6370:a4b83df2165b 6371:8f94cce8faa5
17 * along with this program; if not, write to the Free Software 17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * 19 *
20 */ 20 */
21 21
22 #include "internal.h" 22 #include "gtkinternal.h"
23 23
24 #include "account.h" 24 #include "account.h"
25 #include "conversation.h" 25 #include "conversation.h"
26 #include "core.h" 26 #include "core.h"
27 #include "debug.h" 27 #include "debug.h"
42 #include "gtkdebug.h" 42 #include "gtkdebug.h"
43 #include "gtkft.h" 43 #include "gtkft.h"
44 #include "gtknotify.h" 44 #include "gtknotify.h"
45 #include "gtkpounce.h" 45 #include "gtkpounce.h"
46 #include "gtkprefs.h" 46 #include "gtkprefs.h"
47 #include "gtkprivacy.h"
47 #include "gtkrequest.h" 48 #include "gtkrequest.h"
48 #include "gtksound.h" 49 #include "gtksound.h"
49 #include "gtkutils.h" 50 #include "gtkutils.h"
50 #include "stock.h" 51 #include "stock.h"
51 52
497 /* Set the UI operation structures. */ 498 /* Set the UI operation structures. */
498 gaim_set_win_ui_ops(gaim_get_gtk_window_ui_ops()); 499 gaim_set_win_ui_ops(gaim_get_gtk_window_ui_ops());
499 gaim_set_xfer_ui_ops(gaim_get_gtk_xfer_ui_ops()); 500 gaim_set_xfer_ui_ops(gaim_get_gtk_xfer_ui_ops());
500 gaim_set_blist_ui_ops(gaim_get_gtk_blist_ui_ops()); 501 gaim_set_blist_ui_ops(gaim_get_gtk_blist_ui_ops());
501 gaim_set_notify_ui_ops(gaim_get_gtk_notify_ui_ops()); 502 gaim_set_notify_ui_ops(gaim_get_gtk_notify_ui_ops());
503 gaim_set_privacy_ui_ops(gaim_gtk_privacy_get_ui_ops());
502 gaim_set_request_ui_ops(gaim_get_gtk_request_ui_ops()); 504 gaim_set_request_ui_ops(gaim_get_gtk_request_ui_ops());
503 gaim_set_sound_ui_ops(gaim_get_gtk_sound_ui_ops()); 505 gaim_set_sound_ui_ops(gaim_get_gtk_sound_ui_ops());
504 gaim_set_connection_ui_ops(gaim_get_gtk_connection_ui_ops()); 506 gaim_set_connection_ui_ops(gaim_get_gtk_connection_ui_ops());
505 507
506 gaim_gtk_prefs_init(); 508 gaim_gtk_prefs_init();
507 gaim_gtk_blist_init(); 509 gaim_gtk_blist_init();
508 gaim_gtk_conversation_init(); 510 gaim_gtk_conversation_init();
509 gaim_gtk_pounces_init(); 511 gaim_gtk_pounces_init();
512 gaim_gtk_privacy_init();
510 gaim_gtk_xfers_init(); 513 gaim_gtk_xfers_init();
511 } 514 }
512 515
513 static void 516 static void
514 gaim_gtk_quit(void) 517 gaim_gtk_quit(void)