]> git.0d.be Git - empathy.git/commitdiff
Add a test program for the presence widget
authorDavyd Madeley <davyd@madeley.id.au>
Fri, 10 Apr 2009 16:52:58 +0000 (16:52 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 10 Apr 2009 16:52:58 +0000 (16:52 +0000)
From: Davyd Madeley <davyd@madeley.id.au>

svn path=/trunk/; revision=2767

tests/Makefile.am
tests/test-empathy-presence-chooser.c [new file with mode: 0644]

index 9a91e9d92cb7eeed777df2c55527dd44709612c1..6078e1a90e37c3d4df1859d7401a2c73356709e5 100644 (file)
@@ -25,12 +25,14 @@ noinst_PROGRAMS =                   \
        contact-manager                 \
        contact-run-until-ready         \
        contact-run-until-ready-2       \
-       empetit
+       empetit                         \
+       test-empathy-presence-chooser
 
 contact_manager_SOURCES = contact-manager.c
 contact_run_until_ready_SOURCES = contact-run-until-ready.c
 contact_run_until_ready_2_SOURCES = contact-run-until-ready-2.c
 empetit_SOURCES = empetit.c
+test_empathy_presence_chooser_SOURCES = test-empathy-presence-chooser.c
 
 check_PROGRAMS = check-main
 TESTS = check-main
diff --git a/tests/test-empathy-presence-chooser.c b/tests/test-empathy-presence-chooser.c
new file mode 100644 (file)
index 0000000..b4766c8
--- /dev/null
@@ -0,0 +1,29 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+
+#include <config.h>
+
+#include <gtk/gtk.h>
+
+#include <libempathy-gtk/empathy-ui-utils.h>
+#include <libempathy-gtk/empathy-presence-chooser.h>
+
+int
+main (int argc, char **argv)
+{
+       gtk_init (&argc, &argv);
+       empathy_gtk_init ();
+
+       GtkWidget *window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+       GtkWidget *chooser = empathy_presence_chooser_new ();
+       gtk_container_add (GTK_CONTAINER (window), chooser);
+
+       gtk_window_set_default_size (GTK_WINDOW (window), 150, -1);
+       gtk_widget_show_all (window);
+
+       g_signal_connect_swapped (window, "destroy",
+                       G_CALLBACK (gtk_main_quit), NULL);
+
+       gtk_main ();
+
+       return 0;
+}