~ubuntu-branches/ubuntu/karmic/ibus/karmic-updates

« back to all changes in this revision

Viewing changes to src/ibusengine.h

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-07-23 20:22:09 UTC
  • mfrom: (1.1.4 upstream) (6.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090723202209-bmgqa80g1umg8l2p
Tags: 1.2.0.20090723-1
new upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
    gboolean    (* process_key_event)
87
87
                                    (IBusEngine     *engine,
88
88
                                     guint           keyval,
 
89
                                     guint           keycode,
89
90
                                     guint           state);
90
91
    void        (* focus_in)        (IBusEngine     *engine);
91
92
    void        (* focus_out)       (IBusEngine     *engine);
121
122
                                     guint           button,
122
123
                                     guint           state);
123
124
 
124
 
 
125
 
 
126
125
    /*< private >*/
127
126
    /* padding */
128
127
    gpointer pdummy[8];
269
268
 * ibus_engine_forward_key_event:
270
269
 * @engine: An IBusEngine.
271
270
 * @keyval: KeySym.
 
271
 * @keycode: keyboard scancode.
272
272
 * @state: Key modifier flags.
273
273
 *
274
274
 * Forward the key event.
276
276
void         ibus_engine_forward_key_event
277
277
                                        (IBusEngine         *engine,
278
278
                                         guint               keyval,
 
279
                                         guint               keycode,
279
280
                                         guint               state);
280
281
 
281
282
/**