ClutterIMText

ClutterIMText — Text widget with Input Method Context embbed

Stability Level

Unstable, unless otherwise indicated

Functions

ClutterActor * clutter_imtext_new ()
void clutter_imtext_set_autoshow_im ()

Object Hierarchy

    GObject
    ╰── GInitiallyUnowned
        ╰── ClutterActor
            ╰── ClutterText
                ╰── ClutterIMText

Includes

#include <clutter-imtext/clutter-imtext.h>

Description

ClutterIMText is a widget which can work with Different Input Method. It derives from ClutterText to add the capability to handle Input Method Related function and signals.

Functions

clutter_imtext_new ()

ClutterActor *
clutter_imtext_new (const gchar *text);

Create a new ClutterIMText with the specified text

Parameters

text

text to set to

 

Returns

a new ClutterActor


clutter_imtext_set_autoshow_im ()

void
clutter_imtext_set_autoshow_im (ClutterIMText *self,
                                gboolean autoshow);

Set to True if you want to ask IM to show it's UI when ClutterIMText is on focus

Parameters

self

a ClutterIMText

 

autoshow

TRUE to send show event to IM on focus

 

See Also

ClutterText