forked from phuang/ibus
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |