Class
ClutterInputMethod
Signals
Signals inherited from GObject (1)
GObject::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.
Class structure
struct ClutterInputMethodClass {
  GObjectClass parent_class;
  void (* focus_in) (
    ClutterInputMethod* im,
    ClutterInputFocus* actor
  );
  void (* focus_out) (
    ClutterInputMethod* im
  );
  void (* reset) (
    ClutterInputMethod* im
  );
  void (* set_cursor_location) (
    ClutterInputMethod* im,
    const graphene_rect_t* rect
  );
  void (* set_surrounding) (
    ClutterInputMethod* im,
    const gchar* text,
    guint cursor,
    guint anchor
  );
  void (* update_content_hints) (
    ClutterInputMethod* im,
    ClutterInputContentHintFlags hint
  );
  void (* update_content_purpose) (
    ClutterInputMethod* im,
    ClutterInputContentPurpose purpose
  );
  gboolean (* filter_key_event) (
    ClutterInputMethod* im,
    const ClutterEvent* key
  );
  
}No description available.
Class members
- parent_class: GObjectClass
- No description available. 
- focus_in: void (* focus_in) ( ClutterInputMethod* im, ClutterInputFocus* actor )
- No description available. 
- focus_out: void (* focus_out) ( ClutterInputMethod* im )
- No description available. 
- reset: void (* reset) ( ClutterInputMethod* im )
- No description available. 
- set_cursor_location: void (* set_cursor_location) ( ClutterInputMethod* im, const graphene_rect_t* rect )
- No description available. 
- set_surrounding: void (* set_surrounding) ( ClutterInputMethod* im, const gchar* text, guint cursor, guint anchor )
- No description available. 
- update_content_hints: void (* update_content_hints) ( ClutterInputMethod* im, ClutterInputContentHintFlags hint )
- No description available. 
- update_content_purpose: void (* update_content_purpose) ( ClutterInputMethod* im, ClutterInputContentPurpose purpose )
- No description available. 
- filter_key_event: gboolean (* filter_key_event) ( ClutterInputMethod* im, const ClutterEvent* key )
- No description available.