IBusEngineSimple

IBusEngineSimple

Synopsis

#define             IBUS_MAX_COMPOSE_LEN
struct              IBusEngineSimple;
struct              IBusEngineSimpleClass;
void                ibus_engine_simple_add_table        (IBusEngineSimple *simple,
                                                         const guint16 *data,
                                                         gint max_seq_len,
                                                         gint n_seqs);

Description

Details

IBUS_MAX_COMPOSE_LEN

#define IBUS_MAX_COMPOSE_LEN 7


struct IBusEngineSimple

struct IBusEngineSimple {
};

IBusEngineSimple properties.


struct IBusEngineSimpleClass

struct IBusEngineSimpleClass {
    /* signals */
};


ibus_engine_simple_add_table ()

void                ibus_engine_simple_add_table        (IBusEngineSimple *simple,
                                                         const guint16 *data,
                                                         gint max_seq_len,
                                                         gint n_seqs);

Adds an additional table to search to the engine. Each row of the table consists of max_seq_len key symbols followed by two guint16 interpreted as the high and low words of a gunicode value. Tables are searched starting from the last added.

The table must be sorted in dictionary order on the numeric value of the key symbol fields. (Values beyond the length of the sequence should be zero.)

simple :

An IBusEngineSimple.

data :

The table which must be available during the whole life of the simple engine. [element-type guint16][array]

max_seq_len :

Maximum length of a swquence in the table (cannot be greater than IBUS_MAX_COMPOSE_LEN)