1 /* -*- mode:c; coding:utf-8; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- */
2 /*
3   Copyright (c) 2003-2005 MacUIM contributors, All rights reserved.
4 
5   Redistribution and use in source and binary forms, with or without
6   modification, are permitted provided that the following conditions
7   are met:
8 
9   1. Redistributions of source code must retain the above copyright
10      notice, this list of conditions and the following disclaimer.
11   2. Redistributions in binary form must reproduce the above copyright
12      notice, this list of conditions and the following disclaimer in the
13      documentation and/or other materials provided with the distribution.
14   3. Neither the name of authors nor the names of its contributors
15      may be used to endorse or promote products derived from this software
16      without specific prior written permission.
17 
18   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
19   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21   ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
22   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24   OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26   LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27   OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28   SUCH DAMAGE.
29 */
30 
31 #ifndef DEBUG_h
32 #define DEBUG_h
33 
34 #ifndef DEBUG
35 #define DEBUG  0
36 #endif
37 
38 #ifndef DEBUG_INPUT_EVENT
39 #define DEBUG_INPUT_EVENT  0
40 #endif
41 
42 #ifndef DEBUG_PREEDIT
43 #define DEBUG_PREEDIT  0
44 #endif
45 
46 #ifndef DEBUG_HELPER
47 #define DEBUG_HELPER  0
48 #endif
49 
50 #ifndef DEBUG_HELPER_EXTRA
51 #define DEBUG_HELPER_EXTRA  0
52 #endif
53 
54 #ifndef DEBUG_CANDIDATES
55 #define DEBUG_CANDIDATES  0
56 #endif
57 
58 #ifndef DEBUG_KEYEVENT
59 #define DEBUG_KEYEVENT  0
60 #endif
61 
62 #ifndef DEBUG_MENU
63 #define DEBUG_MENU  0
64 #endif
65 
66 #ifndef DEBUG_CANDIDATES
67 #define DEBUG_CANDIDATES  0
68 #endif
69 
70 #ifndef DEBUG_CANDIDATE_WINDOW
71 #define DEBUG_CANDIDATE_WINDOW  0
72 #endif
73 
74 #ifndef DEBUG_MODETIPS
75 #define DEBUG_MODETIPS  0
76 #endif
77 
78 #ifndef DEBUG_SYNCMODE
79 #define DEBUG_SYNCMODE  0
80 #endif
81 
82 #ifndef DEBUG_INPUTMODE
83 #define DEBUG_INPUTMODE  0
84 #endif
85 
86 #ifndef DEBUG_HILITERANGE
87 #define DEBUG_HILITERANGE  0
88 #endif
89 
90 #ifndef DEBUG_SESSION
91 #define DEBUG_SESSION  0
92 #endif
93 
94 #ifndef DEBUG_COMPONENT
95 #define DEBUG_COMPONENT  0
96 #endif
97 
98 #ifndef DEBUG_NOTIFY
99 #define DEBUG_NOTIFY  0
100 #endif
101 
102 #ifndef DEBUG_CUSTOM
103 #define DEBUG_CUSTOM  0
104 #endif
105 
106 #ifndef DEBUG_UIM
107 #define DEBUG_UIM  0
108 #endif
109 
110 #ifndef DEBUG_PRIME
111 #define DEBUG_PRIME  0
112 #endif
113 
114 #endif // Debug_h
115