[go: up one dir, main page]

File: config.h

package info (click to toggle)
ibus 1.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 9,616 kB
  • ctags: 10,909
  • sloc: ansic: 33,920; sh: 10,485; python: 6,705; makefile: 1,043; cpp: 170
file content (28 lines) | stat: -rw-r--r-- 603 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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