aboutsummaryrefslogtreecommitdiffstats
path: root/tests/interactive/test-empathy-account-chooser.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/interactive/test-empathy-account-chooser.c')
-rw-r--r--tests/interactive/test-empathy-account-chooser.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/tests/interactive/test-empathy-account-chooser.c b/tests/interactive/test-empathy-account-chooser.c
new file mode 100644
index 000000000..d2ce7ccbc
--- /dev/null
+++ b/tests/interactive/test-empathy-account-chooser.c
@@ -0,0 +1,45 @@
+#include <config.h>
+
+#include <gtk/gtk.h>
+
+#include <libempathy-gtk/empathy-ui-utils.h>
+#include <libempathy-gtk/empathy-account-chooser.h>
+
+static gboolean
+filter_func (TpAccount *account,
+ gpointer user_data)
+{
+ g_assert (TP_IS_ACCOUNT (account));
+ return TRUE;
+}
+
+int
+main (int argc,
+ char **argv)
+{
+ GtkWidget *window, *c;
+
+ gtk_init (&argc, &argv);
+ empathy_gtk_init ();
+
+ window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+ c = empathy_account_chooser_new ();
+
+ empathy_account_chooser_set_has_all_option (EMPATHY_ACCOUNT_CHOOSER (c),
+ TRUE);
+
+ empathy_account_chooser_set_filter (EMPATHY_ACCOUNT_CHOOSER (c),
+ filter_func, NULL);
+
+ gtk_container_add (GTK_CONTAINER (window), c);
+
+ /* 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;
+}