]> git.0d.be Git - empathy.git/blob - contact-list/empathy-contact-list-main.c
dfa7695e3b9569ce00a937ec2f040c37f02e4466
[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 <libempathy/empathy-session.h>
31 #include <libempathy-gtk/empathy-main-window.h>
32 #include <libempathy-gtk/gossip-stock.h>
33
34 static void
35 destroy_cb (GtkWidget *window,
36             gpointer   user_data)
37 {
38         gossip_stock_finalize ();
39         empathy_session_finalize ();
40         gtk_main_quit ();
41 }
42
43 int
44 main (int argc, char *argv[])
45 {
46         GtkWidget *window;
47
48         gtk_init (&argc, &argv);
49
50         window = empathy_main_window_new ();
51         gossip_stock_init (window);
52
53         g_signal_connect (window, "destroy",
54                           G_CALLBACK (destroy_cb),
55                           NULL);
56
57         gtk_widget_show (window);
58
59         gtk_main ();
60
61         return EXIT_SUCCESS;
62 }
63