]> git.0d.be Git - empathy.git/blob - src/empathy-contact-list-main.c
[darcs-to-svn @ Use icon-name API instead of stock icons and update tango icons]
[empathy.git] / src / 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-gtk/empathy-main-window.h>
33 #include <libempathy-gtk/gossip-accounts-dialog.h>
34
35 static void
36 destroy_cb (GtkWidget *window,
37             gpointer   user_data)
38 {
39         gtk_main_quit ();
40 }
41
42 int
43 main (int argc, char *argv[])
44 {
45         GtkWidget *window;
46         GList     *accounts;
47
48         gtk_init (&argc, &argv);
49
50         window = empathy_main_window_show ();
51         g_signal_connect (window, "destroy",
52                           G_CALLBACK (destroy_cb),
53                           NULL);
54
55         /* Show the accounts dialog if there is no enabled accounts */
56         accounts = mc_accounts_list_by_enabled (TRUE);
57         if (accounts) {
58                 mc_accounts_list_free (accounts);
59         } else {
60                 gossip_accounts_dialog_show ();
61         }
62
63         gtk_main ();
64
65         return EXIT_SUCCESS;
66 }
67