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