GtkIMContextSimple

GtkIMContextSimple — An input method context supporting table-based input methods

Synopsis

#include <gtk/gtk.h>

                    GtkIMContextSimple;
GtkIMContext *      gtk_im_context_simple_new           (void);
void                gtk_im_context_simple_add_table     (GtkIMContextSimple *context_simple,
                                                         guint16 *data,
                                                         gint max_seq_len,
                                                         gint n_seqs);
#define             GTK_MAX_COMPOSE_LEN

Object Hierarchy

  GObject
   +----GtkIMContext
         +----GtkIMContextSimple

Description

Details

GtkIMContextSimple

typedef struct _GtkIMContextSimple GtkIMContextSimple;


gtk_im_context_simple_new ()

GtkIMContext *      gtk_im_context_simple_new           (void);

Creates a new GtkIMContextSimple.

Returns :

a new GtkIMContextSimple.

gtk_im_context_simple_add_table ()

void                gtk_im_context_simple_add_table     (GtkIMContextSimple *context_simple,
                                                         guint16 *data,
                                                         gint max_seq_len,
                                                         gint n_seqs);

Adds an additional table to search to the input context. 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.)

context_simple :

A GtkIMContextSimple

data :

the table

max_seq_len :

Maximum length of a sequence in the table (cannot be greater than GTK_MAX_COMPOSE_LEN)

n_seqs :

number of sequences in the table

GTK_MAX_COMPOSE_LEN

#define GTK_MAX_COMPOSE_LEN 7

The maximum length of sequences in compose tables.