1 | /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ |
---|---|
2 | /* vim:set et sts=4: */ |
3 | /* ibus - The Input Bus |
4 | * Copyright (C) 2008-2013 Peng Huang <shawn.p.huang@gmail.com> |
5 | * Copyright (C) 2018 Takao Fujiwara <takao.fujiwara1@gmail.com> |
6 | * Copyright (C) 2008-2018 Red Hat, Inc. |
7 | * |
8 | * This library is free software; you can redistribute it and/or |
9 | * modify it under the terms of the GNU Lesser General Public |
10 | * License as published by the Free Software Foundation; either |
11 | * version 2.1 of the License, or (at your option) any later version. |
12 | * |
13 | * This library is distributed in the hope that it will be useful, |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 | * Lesser General Public License for more details. |
17 | * |
18 | * You should have received a copy of the GNU Lesser General Public |
19 | * License along with this library; if not, write to the Free Software |
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
21 | * USA |
22 | */ |
23 | |
24 | #ifndef __IBUS_H_ |
25 | #define __IBUS_H_ |
26 | |
27 | #define __IBUS_H_INSIDE__ |
28 | |
29 | #include <ibusversion.h> |
30 | #include <ibusshare.h> |
31 | #include <ibusobject.h> |
32 | #include <ibusserializable.h> |
33 | #include <ibusattribute.h> |
34 | #include <ibusattrlist.h> |
35 | #include <ibustext.h> |
36 | #include <ibusproxy.h> |
37 | #include <ibusservice.h> |
38 | #include <ibusfactory.h> |
39 | #include <ibusengine.h> |
40 | #include <ibusenginesimple.h> |
41 | #include <ibuserror.h> |
42 | #include <ibusproperty.h> |
43 | #include <ibusproplist.h> |
44 | #include <ibuslookuptable.h> |
45 | #include <ibusbus.h> |
46 | #include <ibuskeysyms.h> |
47 | #include <ibuskeymap.h> |
48 | #include <ibuskeys.h> |
49 | #include <ibusenumtypes.h> |
50 | #include <ibushotkey.h> |
51 | #include <ibusxml.h> |
52 | #include <ibusenginedesc.h> |
53 | #include <ibusobservedpath.h> |
54 | #include <ibuscomponent.h> |
55 | #include <ibusconfig.h> |
56 | #include <ibusconfigservice.h> |
57 | #include <ibuspanelservice.h> |
58 | #include <ibusutil.h> |
59 | #include <ibusregistry.h> |
60 | #include <ibusemoji.h> |
61 | #include <ibusunicode.h> |
62 | #include <ibusxevent.h> |
63 | #include <ibusaccelgroup.h> |
64 | |
65 | #ifndef IBUS_DISABLE_DEPRECATED |
66 | #include <ibuskeysyms-compat.h> |
67 | #endif |
68 | |
69 | #undef __IBUS_H_INSIDE__ |
70 | |
71 | #endif |
72 | |
73 |