Help: Use stable 'if' namespace instead of experimental
[empathy-mirror.git] / tests / interactive / test-empathy-contact-blocking-dialog.c
bloba478c05de5784f52b201fe6d9f588d6de8c161ea
1 /*
2 * Copyright (C) 2011 Collabora Ltd.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 * Authors: Danielle Madeley <danielle.madeley@collabora.co.uk>
21 #include "config.h"
23 #include <gtk/gtk.h>
25 #include "empathy-client-factory.h"
26 #include "empathy-contact-blocking-dialog.h"
27 #include "empathy-ui-utils.h"
29 static void
30 am_prepare_cb (GObject *source,
31 GAsyncResult *result,
32 gpointer user_data)
34 GMainLoop *loop = user_data;
35 GtkWidget *dialog;
37 dialog = empathy_contact_blocking_dialog_new (NULL);
39 gtk_dialog_run (GTK_DIALOG (dialog));
41 g_main_loop_quit (loop);
44 int
45 main (int argc,
46 char **argv)
48 EmpathyClientFactory *factory;
49 TpAccountManager *am;
50 GMainLoop *loop;
52 gtk_init (&argc, &argv);
53 empathy_gtk_init ();
55 /* The blocking dialog needs the contact list for the contacts completion
56 * so we prepare it first. */
57 factory = empathy_client_factory_dup ();
59 tp_simple_client_factory_add_connection_features_varargs (
60 TP_SIMPLE_CLIENT_FACTORY (factory),
61 TP_CONNECTION_FEATURE_CONTACT_LIST,
62 NULL);
64 am = tp_account_manager_dup ();
66 loop = g_main_loop_new (NULL, FALSE);
68 tp_proxy_prepare_async (am, NULL, am_prepare_cb, loop);
70 g_main_loop_run (loop);
72 g_object_unref (am);
73 return 0;