diff options
Diffstat (limited to 'gconf/config.h')
-rw-r--r-- | gconf/config.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gconf/config.h b/gconf/config.h new file mode 100644 index 0000000..e2b5356 --- /dev/null +++ b/gconf/config.h @@ -0,0 +1,28 @@ +/* vim:set et sts=4: */ +#ifndef __CONFIG_GCONF_H__ +#define __CONFIG_GCONF_H__ + +#include <ibus.h> +#include <gconf/gconf-client.h> + +#define IBUS_TYPE_CONFIG_GCONF \ + (ibus_config_gconf_get_type ()) + +typedef struct _IBusConfigGConf IBusConfigGConf; +typedef struct _IBusConfigGConfClass IBusConfigGConfClass; + +struct _IBusConfigGConf { + IBusConfigService parent; + GConfClient *client; +}; + +struct _IBusConfigGConfClass { + IBusConfigServiceClass parent; + +}; + + +GType ibus_config_gconf_get_type (void); +IBusConfigGConf *ibus_config_gconf_new (IBusConnection *connection); + +#endif |