]> git.0d.be Git - empathy.git/blob - accounts/empathy-accounts-main.c
[darcs-to-svn @ initial import]
[empathy.git] / accounts / empathy-accounts-main.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Xavier Claessens <xclaesse@gmail.com>
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  */
21
22 #include <config.h>
23
24 #include <string.h>
25 #include <stdlib.h>
26
27 #include <glib.h>
28 #include <gtk/gtk.h>
29
30 #include <libempathy/empathy-session.h>
31 #include <libempathy-gtk/gossip-accounts-dialog.h>
32
33 static void
34 destroy_cb (GtkWidget *dialog,
35             gpointer   user_data)
36 {
37         empathy_session_finalize ();
38         gtk_main_quit ();
39 }
40
41 int
42 main (int argc, char *argv[])
43 {
44         GtkWidget *dialog;
45
46         gtk_init (&argc, &argv);
47
48         dialog = gossip_accounts_dialog_show ();
49
50         gtk_widget_show (dialog);
51         g_signal_connect (dialog, "destroy",
52                           G_CALLBACK (destroy_cb),
53                           NULL);
54
55         gtk_main ();
56
57         return EXIT_SUCCESS;
58 }
59