Enable Input Method in Clutter Application

101
Article Source Moblin Documentation
July 16, 2009, 7:00 pm

Terminology

When we mention clutter application in this document, we refer to both of the applications who use clutter library directly or use some high level toolkit base on clutter (for example: NBTK)

Common

To enable input method support in clutter application, you need to have the “text” widget be able to work with the ClutterIMContext framework.

For Application Using Clutter Library Directly

Currently, the ClutterText actor in clutter library don‚Äôt support ClutterIMContext framework directly. If your application is using ClutterText actor for text input, you need to replace it with ClutterIMText actor to gain IM support. We have this actor inherit from the ClutterText actor in the ClutterIMContext library. You can read the API doc for ClutterIMContext library for more information…

Read More