summaryrefslogtreecommitdiff
path: root/gir/test.c
blob: c2cde1bec7da4f66ac7f9bc7c52b88c4055e6e67 (plain)
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
#include <stdio.h>

#include "anthygcontext.h"

int
main (int argc, char *argv[])
{
    AnthyGContext *obj = NULL;
    gchar *string = NULL;

#if !GLIB_CHECK_VERSION(2,35,0)
    g_type_init ();
#endif

    anthy_gcontext_set_logger (0);
    obj = anthy_gcontext_new ();

    anthy_gcontext_set_encoding (obj, ANTHY_UTF8_ENCODING);
    anthy_gcontext_init_personality (obj);
    anthy_gcontext_do_set_personality(obj, "ibus__ibus_symbol");
    anthy_gcontext_set_string (obj, "てすと");
    anthy_gcontext_resize_segment (obj, 0, -1);
    printf ("%d\n", anthy_gcontext_get_nr_segments (obj));
    printf ("%d\n", anthy_gcontext_get_nr_candidates (obj, 0));
    string = anthy_gcontext_get_segment (obj, 0, 0);
    printf ("%s\n", string ? string : "(null)");
    anthy_gcontext_commit_segment (obj, 0, 0);
    anthy_gcontext_set_prediction_string (obj, "てすと");
    printf ("%d\n", anthy_gcontext_get_nr_predictions (obj));
    string = anthy_gcontext_get_prediction (obj, 0);
    printf ("%s\n", string ? string : "(null)");
    anthy_gcontext_commit_prediction (obj, 0);

    g_object_unref (obj);

    return 0;
}