Update python binding
[empathy.git] / tests / test-empathy-presence-chooser.c
blob02991e859b46316212ced429e41abf6eec32ca64
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2009 Collabora Ltd.
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.
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.
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.
20 * Authors: Davyd Madeley <davyd.madeley@collabora.co.uk>
23 #include <config.h>
25 #include <gtk/gtk.h>
27 #include <libempathy-gtk/empathy-ui-utils.h>
28 #include <libempathy-gtk/empathy-presence-chooser.h>
30 int
31 main (int argc, char **argv)
33 GtkWidget *window;
34 GtkWidget *chooser;
36 gtk_init (&argc, &argv);
37 empathy_gtk_init ();
39 window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
40 chooser = empathy_presence_chooser_new ();
41 gtk_container_add (GTK_CONTAINER (window), chooser);
43 gtk_window_set_default_size (GTK_WINDOW (window), 150, -1);
44 gtk_widget_show_all (window);
46 g_signal_connect_swapped (window, "destroy",
47 G_CALLBACK (gtk_main_quit), NULL);
49 gtk_main ();
51 return 0;