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

« back to all changes in this revision

Viewing changes to bus/ibusimpl.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:
49
49
    (bus_ibus_impl_get_default ())
50
50
#define BUS_DEFAULT_HOTKEY_PROFILE \
51
51
    (bus_ibus_impl_get_hotkey_profile (BUS_DEFAULT_IBUS))
 
52
#define BUS_DEFAULT_KEYMAP \
 
53
    (bus_ibus_impl_get_keymap (BUS_DEFAULT_IBUS))
52
54
#define BUS_DEFAULT_REGISTRY \
53
55
    (bus_ibus_impl_get_registry (BUS_DEFAULT_IBUS))
54
56
 
69
71
    GList *register_engine_list;
70
72
    GList *component_list;
71
73
 
 
74
    gboolean use_sys_layout;
 
75
 
72
76
    BusRegistry     *registry;
73
77
 
74
78
    BusInputContext *focused_context;
75
79
    BusPanelProxy   *panel;
76
80
    IBusConfig      *config;
77
81
    IBusHotkeyProfile *hotkey_profile;
 
82
    IBusKeymap      *keymap;
78
83
 
79
84
};
80
85
 
95
100
                                                     const gchar        *path);
96
101
IBusHotkeyProfile
97
102
                *bus_ibus_impl_get_hotkey_profile   (BusIBusImpl        *ibus);
 
103
IBusKeymap      *bus_ibus_impl_get_keymap           (BusIBusImpl        *ibus);
98
104
BusRegistry     *bus_ibus_impl_get_registry         (BusIBusImpl        *ibus);
99
105
 
100
106
G_END_DECLS