]> git.0d.be Git - empathy.git/blob - contact-list/empathy-contact-list-main.c
[darcs-to-svn @ Autostart]
[empathy.git] / contact-list / empathy-contact-list-main.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  * 
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include <config.h>
24
25 #include <stdlib.h>
26
27 #include <glib.h>
28 #include <gtk/gtk.h>
29
30 #include <libmissioncontrol/mc-account.h>
31
32 #include <libempathy/empathy-session.h>
33 #include <libempathy-gtk/empathy-main-window.h>
34 #include <libempathy-gtk/gossip-stock.h>
35 #include <libempathy-gtk/gossip-accounts-dialog.h>
36
37 static void
38 destroy_cb (GtkWidget *window,
39             gpointer   user_data)
40 {
41         gossip_stock_finalize ();
42         empathy_session_finalize ();
43         gtk_main_quit ();
44 }
45
46 int
47 main (int argc, char *argv[])
48 {
49         GtkWidget *window;
50         GList     *accounts;
51
52         gtk_init (&argc, &argv);
53
54         /* FIXME: This is a horrible hack */
55         gossip_stock_init (gtk_window_new (GTK_WINDOW_TOPLEVEL));
56
57         window = empathy_main_window_show ();
58         g_signal_connect (window, "destroy",
59                           G_CALLBACK (destroy_cb),
60                           NULL);
61
62         /* Show the accounts dialog if there is no enabled accounts */
63         accounts = mc_accounts_list_by_enabled (TRUE);
64         if (accounts) {
65                 mc_accounts_list_free (accounts);
66         } else {
67                 gossip_accounts_dialog_show ();
68         }
69
70         gtk_main ();
71
72         return EXIT_SUCCESS;
73 }
74