]> git.0d.be Git - empathy.git/blob - tests/interactive/test-empathy-presence-chooser.c
Update FSF postal address
[empathy.git] / tests / interactive / test-empathy-presence-chooser.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2009 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 Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Davyd Madeley <davyd.madeley@collabora.co.uk>
20  */
21
22 #include "config.h"
23
24 #include <gtk/gtk.h>
25
26 #include "empathy-presence-chooser.h"
27 #include "empathy-status-presets.h"
28 #include "empathy-ui-utils.h"
29
30 int
31 main (int argc, char **argv)
32 {
33         GtkWidget *window;
34         GtkWidget *chooser;
35
36         gtk_init (&argc, &argv);
37         empathy_gtk_init ();
38
39         empathy_status_presets_get_all ();
40
41         window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
42         chooser = empathy_presence_chooser_new ();
43         gtk_container_add (GTK_CONTAINER (window), chooser);
44
45         gtk_window_set_default_size (GTK_WINDOW (window), 150, -1);
46         gtk_widget_show_all (window);
47
48         g_signal_connect_swapped (window, "destroy",
49                         G_CALLBACK (gtk_main_quit), NULL);
50
51         gtk_main ();
52
53         return 0;
54 }