Virtual Method

WPEPlatformInputMethodContextget_preedit_string

Declaration [src]

void
get_preedit_string (
  WPEInputMethodContext* context,
  gchar** text,
  GList** underlines,
  guint* cursor_offset
)

Description [src]

Get the pre-edit string and a list of WPEInputMethodUnderline.

Get the current pre-edit string for the context, and a list of WPEInputMethodUnderline to apply to the string. The string will be displayed inserted at cursor_offset.

Parameters

text

Type: gchar**

Location to store the preedit string.

The argument will be set by the function.
The argument can be set to NULL by the virtual function.
The called function takes ownership of the data, and is responsible for freeing it.
The value is a NUL terminated UTF-8 string.
underlines

Type: A list of None

Location to store the underlines as a GList of WPEInputMethodUnderline.

The argument will be set by the function.
The argument can be set to NULL by the virtual function.
The called function takes ownership of the data, and is responsible for freeing it.
cursor_offset

Type: guint*

Location to store the position of cursor in preedit string.

The argument will be set by the function.