]> git.0d.be Git - empathy.git/blob - contact-list/empathy-contact-list-main.c
[darcs-to-svn @ Missing file]
[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/gossip-contact.h>
31 #include <libempathy/empathy-session.h>
32 #include <libempathy-gtk/gossip-contact-list.h>
33 #include <libempathy-gtk/gossip-private-chat.h>
34 #include <libempathy-gtk/gossip-stock.h>
35
36 static void
37 destroy_cb (GtkWidget *window,
38             gpointer   user_data)
39 {
40         gossip_stock_finalize ();
41         empathy_session_finalize ();
42         gtk_main_quit ();
43 }
44
45 static void
46 contact_chat_cb (GtkWidget     *list,
47                  GossipContact *contact,
48                  gpointer       user_data)
49 {
50         mission_control_request_channel (empathy_session_get_mission_control (),
51                                          gossip_contact_get_account (contact),
52                                          TP_IFACE_CHANNEL_TYPE_TEXT,
53                                          gossip_contact_get_handle (contact),
54                                          TP_HANDLE_TYPE_CONTACT,
55                                          NULL, NULL);
56 }
57
58 int
59 main (int argc, char *argv[])
60 {
61         GtkWidget *window;
62         GtkWidget *list;
63         GtkWidget *sw;
64
65         gtk_init (&argc, &argv);
66
67         empathy_session_connect ();
68
69         window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
70         gossip_stock_init (window);
71
72         list = GTK_WIDGET (gossip_contact_list_new ());
73         sw = gtk_scrolled_window_new (NULL, NULL);      
74         gtk_container_add (GTK_CONTAINER (window), sw);
75         gtk_container_add (GTK_CONTAINER (sw), list);
76
77         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),
78                                         GTK_POLICY_AUTOMATIC,
79                                         GTK_POLICY_AUTOMATIC);
80         gtk_widget_set_size_request (sw, 200, 400);
81
82         g_signal_connect (window, "destroy",
83                           G_CALLBACK (destroy_cb),
84                           NULL);
85         g_signal_connect (list, "contact-chat",
86                           G_CALLBACK (contact_chat_cb),
87                           NULL);
88
89         gtk_widget_show_all (window);
90
91         gtk_main ();
92
93         return EXIT_SUCCESS;
94 }
95