ClutterIMText

ClutterIMText — Text widget with Input Method Context embbed

Stability Level

Unstable, unless otherwise indicated

Synopsis

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

struct              ClutterIMText;
struct              ClutterIMTextClass;
ClutterActor *      clutter_imtext_new                  (const gchar *text);
void                clutter_imtext_set_autoshow_im      (ClutterIMText *self,
                                                         gboolean autoshow);

Object Hierarchy

  GObject
   +----GInitiallyUnowned
         +----ClutterActor
               +----ClutterText
                     +----ClutterIMText

Implemented Interfaces

ClutterIMText implements ClutterScriptable, ClutterAnimatable and AtkImplementorIface.

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.

Details

struct ClutterIMText

struct ClutterIMText;

struct ClutterIMTextClass

struct ClutterIMTextClass {
  ClutterTextClass parent_class;
};

clutter_imtext_new ()

ClutterActor *      clutter_imtext_new                  (const gchar *text);

Create a new ClutterIMText with the specified text

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

self :

a ClutterIMText

autoshow :

TRUE to send show event to IM on focus

See Also

ClutterText