aboutsummaryrefslogtreecommitdiffstats
path: root/tests/contact-run-until-ready.c
blob: 1d263dd05228bba6f67fad66bafd1852440413ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <stdlib.h>

#include <glib.h>
#include <gtk/gtk.h>
#include <libempathy/empathy-contact-factory.h>
#include <libmissioncontrol/mc-account.h>

static gboolean
callback (gpointer data)
{
    EmpathyContactFactory *factory;
    McAccount             *account;
    EmpathyContact        *contact;
    EmpathyContactReady    ready_flags;

    factory = empathy_contact_factory_new ();
    account = mc_account_lookup ("jabber0");
    contact = empathy_contact_factory_get_from_handle (factory, account, 2);

    g_print ("Contact handle=%d alias=%s\n",
         empathy_contact_get_handle (contact),
         empathy_contact_get_name (contact));

    ready_flags = EMPATHY_CONTACT_READY_HANDLE | EMPATHY_CONTACT_READY_NAME;
    empathy_contact_run_until_ready (contact, ready_flags, NULL);

    g_print ("Contact ready: handle=%d alias=%s ready=%d needed-ready=%d\n",
         empathy_contact_get_handle (contact),
         empathy_contact_get_name (contact),
         empathy_contact_get_ready (contact),
         ready_flags);

    g_object_unref (factory);
    g_object_unref (account);
    g_object_unref (contact);

    gtk_main_quit ();

    return FALSE;
}

int
main (int argc, char **argv)
{
    gtk_init (&argc, &argv);

    g_idle_add (callback, NULL);

    gtk_main ();

    return EXIT_SUCCESS;
}