1 | /*
|
---|
2 | * Declarations for IMM32
|
---|
3 | *
|
---|
4 | * Copyright (C) the Wine project
|
---|
5 | *
|
---|
6 | * This library is free software; you can redistribute it and/or
|
---|
7 | * modify it under the terms of the GNU Lesser General Public
|
---|
8 | * License as published by the Free Software Foundation; either
|
---|
9 | * version 2.1 of the License, or (at your option) any later version.
|
---|
10 | *
|
---|
11 | * This library is distributed in the hope that it will be useful,
|
---|
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
14 | * Lesser General Public License for more details.
|
---|
15 | *
|
---|
16 | * You should have received a copy of the GNU Lesser General Public
|
---|
17 | * License along with this library; if not, write to the Free Software
|
---|
18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
---|
19 | */
|
---|
20 |
|
---|
21 | /*
|
---|
22 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
23 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
24 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
25 | * a choice of LGPL license versions is made available with the language indicating
|
---|
26 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
27 | * of the LGPL is applied is otherwise unspecified.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef __WINE_IMM_H
|
---|
31 | #define __WINE_IMM_H
|
---|
32 |
|
---|
33 | #ifdef __cplusplus
|
---|
34 | extern "C" {
|
---|
35 | #endif
|
---|
36 |
|
---|
37 | typedef HANDLE HIMC;
|
---|
38 | typedef HANDLE HIMCC;
|
---|
39 |
|
---|
40 | typedef struct tagREGISTERWORDA {
|
---|
41 | LPSTR lpReading;
|
---|
42 | LPSTR lpWord;
|
---|
43 | } REGISTERWORDA, *PREGISTERWORDA, *NPREGISTERWORDA, *LPREGISTERWORDA;
|
---|
44 |
|
---|
45 | typedef struct tagREGISTERWORDW {
|
---|
46 | LPWSTR lpReading;
|
---|
47 | LPWSTR lpWord;
|
---|
48 | } REGISTERWORDW, *PREGISTERWORDW, *NPREGISTERWORDW, *LPREGISTERWORDW;
|
---|
49 |
|
---|
50 | typedef int (CALLBACK *REGISTERWORDENUMPROCA)(LPCSTR, DWORD, LPCSTR, LPVOID);
|
---|
51 | typedef int (CALLBACK *REGISTERWORDENUMPROCW)(LPCWSTR, DWORD, LPCWSTR, LPVOID);
|
---|
52 |
|
---|
53 | typedef struct tagCANDIDATEFORM
|
---|
54 | {
|
---|
55 | DWORD dwIndex;
|
---|
56 | DWORD dwStyle;
|
---|
57 | POINT ptCurrentPos;
|
---|
58 | RECT rcArea;
|
---|
59 | } CANDIDATEFORM, *LPCANDIDATEFORM;
|
---|
60 |
|
---|
61 | typedef struct tagCANDIDATELIST
|
---|
62 | {
|
---|
63 | DWORD dwSize;
|
---|
64 | DWORD dwStyle;
|
---|
65 | DWORD dwCount;
|
---|
66 | DWORD dwSelection;
|
---|
67 | DWORD dwPageStart;
|
---|
68 | DWORD dwPageSize;
|
---|
69 | DWORD dwOffset[1];
|
---|
70 | } CANDIDATELIST, *LPCANDIDATELIST;
|
---|
71 |
|
---|
72 | typedef struct tagSTYLEBUFA
|
---|
73 | {
|
---|
74 | DWORD dwStyle;
|
---|
75 | CHAR szDescription[32];
|
---|
76 | } STYLEBUFA, *LPSTYLEBUFA;
|
---|
77 |
|
---|
78 | typedef struct tagSTYLEBUFW
|
---|
79 | {
|
---|
80 | DWORD dwStyle;
|
---|
81 | WCHAR szDescription[32];
|
---|
82 | } STYLEBUFW, *LPSTYLEBUFW;
|
---|
83 |
|
---|
84 | DECL_WINELIB_TYPE_AW(STYLEBUF)
|
---|
85 | DECL_WINELIB_TYPE_AW(LPSTYLEBUF)
|
---|
86 |
|
---|
87 | typedef struct tagRECONVERTSTRING
|
---|
88 | {
|
---|
89 | DWORD dwSize;
|
---|
90 | DWORD dwVersion;
|
---|
91 | DWORD dwStrLen;
|
---|
92 | DWORD dwStrOffset;
|
---|
93 | DWORD dwCompStrLen;
|
---|
94 | DWORD dwCompStrOffset;
|
---|
95 | DWORD dwTargetStrLen;
|
---|
96 | DWORD dwTargetStrOffset;
|
---|
97 | } RECONVERTSTRING, *LPRECONVERTSTRING;
|
---|
98 |
|
---|
99 |
|
---|
100 | #define IMEMENUITEM_STRING_SIZE 80
|
---|
101 |
|
---|
102 | typedef struct tagIMEMENUITEMINFOA
|
---|
103 | {
|
---|
104 | UINT cbSize;
|
---|
105 | UINT fType;
|
---|
106 | UINT fState;
|
---|
107 | UINT wID;
|
---|
108 | HBITMAP hbmpChecked;
|
---|
109 | HBITMAP hbmpUnchecked;
|
---|
110 | DWORD dwItemData;
|
---|
111 | CHAR szString[IMEMENUITEM_STRING_SIZE];
|
---|
112 | HBITMAP hbmpItem;
|
---|
113 | } IMEMENUITEMINFOA, *LPIMEMENUITEMINFOA;
|
---|
114 |
|
---|
115 | typedef struct tagIMEMENUITEMINFOW
|
---|
116 | {
|
---|
117 | UINT cbSize;
|
---|
118 | UINT fType;
|
---|
119 | UINT fState;
|
---|
120 | UINT wID;
|
---|
121 | HBITMAP hbmpChecked;
|
---|
122 | HBITMAP hbmpUnchecked;
|
---|
123 | DWORD dwItemData;
|
---|
124 | WCHAR szString[IMEMENUITEM_STRING_SIZE];
|
---|
125 | HBITMAP hbmpItem;
|
---|
126 | } IMEMENUITEMINFOW, *LPIMEMENUITEMINFOW;
|
---|
127 |
|
---|
128 | DECL_WINELIB_TYPE_AW(IMEMENUITEMINFO)
|
---|
129 | DECL_WINELIB_TYPE_AW(LPIMEMENUITEMINFO)
|
---|
130 |
|
---|
131 |
|
---|
132 | typedef struct _tagCOMPOSITIONFORM
|
---|
133 | {
|
---|
134 | DWORD dwStyle;
|
---|
135 | POINT ptCurrentPos;
|
---|
136 | RECT rcArea;
|
---|
137 | } COMPOSITIONFORM, *LPCOMPOSITIONFORM;
|
---|
138 |
|
---|
139 | /* wParam for WM_IME_CONTROL */
|
---|
140 | #define IMC_GETCANDIDATEPOS 0x0007
|
---|
141 | #define IMC_SETCANDIDATEPOS 0x0008
|
---|
142 | #define IMC_GETCOMPOSITIONFONT 0x0009
|
---|
143 | #define IMC_SETCOMPOSITIONFONT 0x000A
|
---|
144 | #define IMC_GETCOMPOSITIONWINDOW 0x000B
|
---|
145 | #define IMC_SETCOMPOSITIONWINDOW 0x000C
|
---|
146 | #define IMC_GETSTATUSWINDOWPOS 0x000F
|
---|
147 | #define IMC_SETSTATUSWINDOWPOS 0x0010
|
---|
148 | #define IMC_CLOSESTATUSWINDOW 0x0021
|
---|
149 | #define IMC_OPENSTATUSWINDOW 0x0022
|
---|
150 |
|
---|
151 | /*
|
---|
152 | * wParam for WM_IME_CONTROL to the soft keyboard
|
---|
153 | * dwAction for ImmNotifyIME
|
---|
154 | */
|
---|
155 | #define NI_OPENCANDIDATE 0x0010
|
---|
156 | #define NI_CLOSECANDIDATE 0x0011
|
---|
157 | #define NI_SELECTCANDIDATESTR 0x0012
|
---|
158 | #define NI_CHANGECANDIDATELIST 0x0013
|
---|
159 | #define NI_FINALIZECONVERSIONRESULT 0x0014
|
---|
160 | #define NI_COMPOSITIONSTR 0x0015
|
---|
161 | #define NI_SETCANDIDATE_PAGESTART 0x0016
|
---|
162 | #define NI_SETCANDIDATE_PAGESIZE 0x0017
|
---|
163 | #define NI_IMEMENUSELECTED 0x0018
|
---|
164 |
|
---|
165 | /* lParam for WM_IME_SETCONTEXT */
|
---|
166 | #define ISC_SHOWUICANDIDATEWINDOW 0x00000001
|
---|
167 | #define ISC_SHOWUICOMPOSITIONWINDOW 0x80000000
|
---|
168 | #define ISC_SHOWUIGUIDELINE 0x40000000
|
---|
169 | #define ISC_SHOWUIALLCANDIDATEWINDOW 0x0000000F
|
---|
170 | #define ISC_SHOWUIALL 0xC000000F
|
---|
171 |
|
---|
172 |
|
---|
173 | /* dwIndex for ImmNotifyIME/NI_COMPOSITIONSTR */
|
---|
174 | #define CPS_COMPLETE 0x0001
|
---|
175 | #define CPS_CONVERT 0x0002
|
---|
176 | #define CPS_REVERT 0x0003
|
---|
177 | #define CPS_CANCEL 0x0004
|
---|
178 |
|
---|
179 |
|
---|
180 | /* the modifiers of hot key */
|
---|
181 | #define MOD_ALT 0x0001
|
---|
182 | #define MOD_CONTROL 0x0002
|
---|
183 | #define MOD_SHIFT 0x0004
|
---|
184 |
|
---|
185 | #define MOD_LEFT 0x8000
|
---|
186 | #define MOD_RIGHT 0x4000
|
---|
187 |
|
---|
188 | #define MOD_ON_KEYUP 0x0800
|
---|
189 | #define MOD_IGNORE_ALL_MODIFIER 0x0400
|
---|
190 |
|
---|
191 |
|
---|
192 | /* Windows for Simplified Chinese Edition hot key ID from 0x10 - 0x2F */
|
---|
193 | #define IME_CHOTKEY_IME_NONIME_TOGGLE 0x10
|
---|
194 | #define IME_CHOTKEY_SHAPE_TOGGLE 0x11
|
---|
195 | #define IME_CHOTKEY_SYMBOL_TOGGLE 0x12
|
---|
196 |
|
---|
197 | /* Windows for Japanese Edition hot key ID from 0x30 - 0x4F */
|
---|
198 | #define IME_JHOTKEY_CLOSE_OPEN 0x30
|
---|
199 |
|
---|
200 | /* Windows for Korean Edition hot key ID from 0x50 - 0x6F */
|
---|
201 | #define IME_KHOTKEY_SHAPE_TOGGLE 0x50
|
---|
202 | #define IME_KHOTKEY_HANJACONVERT 0x51
|
---|
203 | #define IME_KHOTKEY_ENGLISH 0x52
|
---|
204 | /* Windows for Tranditional Chinese Edition hot key ID from 0x70 - 0x8F */
|
---|
205 | #define IME_THOTKEY_IME_NONIME_TOGGLE 0x70
|
---|
206 | #define IME_THOTKEY_SHAPE_TOGGLE 0x71
|
---|
207 | #define IME_THOTKEY_SYMBOL_TOGGLE 0x72
|
---|
208 |
|
---|
209 | /* direct switch hot key ID from 0x100 - 0x11F */
|
---|
210 | #define IME_HOTKEY_DSWITCH_FIRST 0x100
|
---|
211 | #define IME_HOTKEY_DSWITCH_LAST 0x11F
|
---|
212 |
|
---|
213 | /* IME private hot key from 0x200 - 0x21F */
|
---|
214 | #define IME_HOTKEY_PRIVATE_FIRST 0x200
|
---|
215 | #define IME_ITHOTKEY_RESEND_RESULTSTR 0x200
|
---|
216 | #define IME_ITHOTKEY_PREVIOUS_COMPOSITION 0x201
|
---|
217 | #define IME_ITHOTKEY_UISTYLE_TOGGLE 0x202
|
---|
218 | #define IME_ITHOTKEY_RECONVERTSTRING 0x203
|
---|
219 | #define IME_HOTKEY_PRIVATE_LAST 0x21F
|
---|
220 |
|
---|
221 |
|
---|
222 | /*
|
---|
223 | * dwSystemInfoFlags bits
|
---|
224 | * parameter of ImmGetCompositionString
|
---|
225 | */
|
---|
226 | #define GCS_COMPREADSTR 0x0001
|
---|
227 | #define GCS_COMPREADATTR 0x0002
|
---|
228 | #define GCS_COMPREADCLAUSE 0x0004
|
---|
229 | #define GCS_COMPSTR 0x0008
|
---|
230 | #define GCS_COMPATTR 0x0010
|
---|
231 | #define GCS_COMPCLAUSE 0x0020
|
---|
232 | #define GCS_CURSORPOS 0x0080
|
---|
233 | #define GCS_DELTASTART 0x0100
|
---|
234 | #define GCS_RESULTREADSTR 0x0200
|
---|
235 | #define GCS_RESULTREADCLAUSE 0x0400
|
---|
236 | #define GCS_RESULTSTR 0x0800
|
---|
237 | #define GCS_RESULTCLAUSE 0x1000
|
---|
238 |
|
---|
239 | /* style bit flags for WM_IME_COMPOSITION */
|
---|
240 | #define CS_INSERTCHAR 0x2000
|
---|
241 | #define CS_NOMOVECARET 0x4000
|
---|
242 |
|
---|
243 |
|
---|
244 | /*
|
---|
245 | * bits of fdwInit of INPUTCONTEXT
|
---|
246 | * IME version constants
|
---|
247 | */
|
---|
248 | #define IMEVER_0310 0x0003000A
|
---|
249 | #define IMEVER_0400 0x00040000
|
---|
250 |
|
---|
251 |
|
---|
252 | /* IME property bits */
|
---|
253 | #define IME_PROP_AT_CARET 0x00010000
|
---|
254 | #define IME_PROP_SPECIAL_UI 0x00020000
|
---|
255 | #define IME_PROP_CANDLIST_START_FROM_1 0x00040000
|
---|
256 | #define IME_PROP_UNICODE 0x00080000
|
---|
257 | #define IME_PROP_COMPLETE_ON_UNSELECT 0x00100000
|
---|
258 |
|
---|
259 |
|
---|
260 | /* IME UICapability bits */
|
---|
261 | #define UI_CAP_2700 0x00000001
|
---|
262 | #define UI_CAP_ROT90 0x00000002
|
---|
263 | #define UI_CAP_ROTANY 0x00000004
|
---|
264 | /* ImmSetCompositionString Capability bits */
|
---|
265 | #define SCS_CAP_COMPSTR 0x00000001
|
---|
266 | #define SCS_CAP_MAKEREAD 0x00000002
|
---|
267 | #define SCS_CAP_SETRECONVERTSTRING 0x00000004
|
---|
268 |
|
---|
269 |
|
---|
270 | /* IME WM_IME_SELECT inheritance Capability bits */
|
---|
271 | #define SELECT_CAP_CONVERSION 0x00000001
|
---|
272 | #define SELECT_CAP_SENTENCE 0x00000002
|
---|
273 |
|
---|
274 |
|
---|
275 | /* ID for deIndex of ImmGetGuideLine */
|
---|
276 | #define GGL_LEVEL 0x00000001
|
---|
277 | #define GGL_INDEX 0x00000002
|
---|
278 | #define GGL_STRING 0x00000003
|
---|
279 | #define GGL_PRIVATE 0x00000004
|
---|
280 |
|
---|
281 | /* ID for dwLevel of GUIDELINE Structure */
|
---|
282 | #define GL_LEVEL_NOGUIDELINE 0x00000000
|
---|
283 | #define GL_LEVEL_FATAL 0x00000001
|
---|
284 | #define GL_LEVEL_ERROR 0x00000002
|
---|
285 | #define GL_LEVEL_WARNING 0x00000003
|
---|
286 | #define GL_LEVEL_INFORMATION 0x00000004
|
---|
287 |
|
---|
288 | /* ID for dwIndex of GUIDELINE Structure */
|
---|
289 | #define GL_ID_UNKNOWN 0x00000000
|
---|
290 | #define GL_ID_NOMODULE 0x00000001
|
---|
291 | #define GL_ID_NODICTIONARY 0x00000010
|
---|
292 | #define GL_ID_CANNOTSAVE 0x00000011
|
---|
293 | #define GL_ID_NOCONVERT 0x00000020
|
---|
294 | #define GL_ID_TYPINGERROR 0x00000021
|
---|
295 | #define GL_ID_TOOMANYSTROKE 0x00000022
|
---|
296 | #define GL_ID_READINGCONFLICT 0x00000023
|
---|
297 | #define GL_ID_INPUTREADING 0x00000024
|
---|
298 | #define GL_ID_INPUTRADICAL 0x00000025
|
---|
299 | #define GL_ID_INPUTCODE 0x00000026
|
---|
300 | #define GL_ID_INPUTSYMBOL 0x00000027
|
---|
301 | #define GL_ID_CHOOSECANDIDATE 0x00000028
|
---|
302 | #define GL_ID_REVERSECONVERSION 0x00000029
|
---|
303 | #define GL_ID_PRIVATE_FIRST 0x00008000
|
---|
304 | #define GL_ID_PRIVATE_LAST 0x0000FFFF
|
---|
305 |
|
---|
306 | /* ID for dwIndex of ImmGetProperty */
|
---|
307 | #define IGP_GETIMEVERSION (DWORD)(-4)
|
---|
308 | #define IGP_PROPERTY 0x00000004
|
---|
309 | #define IGP_CONVERSION 0x00000008
|
---|
310 | #define IGP_SENTENCE 0x0000000c
|
---|
311 | #define IGP_UI 0x00000010
|
---|
312 | #define IGP_SETCOMPSTR 0x00000014
|
---|
313 | #define IGP_SELECT 0x00000018
|
---|
314 |
|
---|
315 |
|
---|
316 | /* dwIndex for ImmSetCompositionString API */
|
---|
317 | #define SCS_SETSTR (GCS_COMPREADSTR|GCS_COMPSTR)
|
---|
318 | #define SCS_CHANGEATTR (GCS_COMPREADATTR|GCS_COMPATTR)
|
---|
319 | #define SCS_CHANGECLAUSE (GCS_COMPREADCLAUSE|GCS_COMPCLAUSE)
|
---|
320 | #define SCS_SETRECONVERTSTRING 0x00010000
|
---|
321 | #define SCS_QUERYRECONVERTSTRING 0x00020000
|
---|
322 |
|
---|
323 | /* attribute for COMPOSITIONSTRING Structure */
|
---|
324 | #define ATTR_INPUT 0x00
|
---|
325 | #define ATTR_TARGET_CONVERTED 0x01
|
---|
326 | #define ATTR_CONVERTED 0x02
|
---|
327 | #define ATTR_TARGET_NOTCONVERTED 0x03
|
---|
328 | #define ATTR_INPUT_ERROR 0x04
|
---|
329 | #define ATTR_FIXEDCONVERTED 0x05
|
---|
330 |
|
---|
331 |
|
---|
332 | /* bit field for IMC_SETCOMPOSITIONWINDOW, IMC_SETCANDIDATEWINDOW */
|
---|
333 | #define CFS_DEFAULT 0x0000
|
---|
334 | #define CFS_RECT 0x0001
|
---|
335 | #define CFS_POINT 0x0002
|
---|
336 | #define CFS_FORCE_POSITION 0x0020
|
---|
337 | #define CFS_CANDIDATEPOS 0x0040
|
---|
338 | #define CFS_EXCLUDE 0x0080
|
---|
339 |
|
---|
340 | /* conversion direction for ImmGetConversionList */
|
---|
341 | #define GCL_CONVERSION 0x0001
|
---|
342 | #define GCL_REVERSECONVERSION 0x0002
|
---|
343 | #define GCL_REVERSE_LENGTH 0x0003
|
---|
344 |
|
---|
345 |
|
---|
346 | /* bit field for conversion mode */
|
---|
347 | #define IME_CMODE_ALPHANUMERIC 0x0000
|
---|
348 | #define IME_CMODE_NATIVE 0x0001
|
---|
349 | #define IME_CMODE_CHINESE IME_CMODE_NATIVE
|
---|
350 | /* IME_CMODE_HANGEUL is old name of IME_CMODE_HANGUL. It will be gone eventually. */
|
---|
351 | #define IME_CMODE_HANGEUL IME_CMODE_NATIVE
|
---|
352 | #define IME_CMODE_HANGUL IME_CMODE_NATIVE
|
---|
353 | #define IME_CMODE_JAPANESE IME_CMODE_NATIVE
|
---|
354 | #define IME_CMODE_KATAKANA 0x0002 /* only effect under IME_CMODE_NATIVE */
|
---|
355 | #define IME_CMODE_LANGUAGE 0x0003
|
---|
356 | #define IME_CMODE_FULLSHAPE 0x0008
|
---|
357 | #define IME_CMODE_ROMAN 0x0010
|
---|
358 | #define IME_CMODE_CHARCODE 0x0020
|
---|
359 | #define IME_CMODE_HANJACONVERT 0x0040
|
---|
360 | #define IME_CMODE_SOFTKBD 0x0080
|
---|
361 | #define IME_CMODE_NOCONVERSION 0x0100
|
---|
362 | #define IME_CMODE_EUDC 0x0200
|
---|
363 | #define IME_CMODE_SYMBOL 0x0400
|
---|
364 | #define IME_CMODE_FIXED 0x0800
|
---|
365 |
|
---|
366 |
|
---|
367 | #define IME_SMODE_NONE 0x0000
|
---|
368 | #define IME_SMODE_PLAURALCLAUSE 0x0001
|
---|
369 | #define IME_SMODE_SINGLECONVERT 0x0002
|
---|
370 | #define IME_SMODE_AUTOMATIC 0x0004
|
---|
371 | #define IME_SMODE_PHRASEPREDICT 0x0008
|
---|
372 | #define IME_SMODE_CONVERSATION 0x0010
|
---|
373 |
|
---|
374 | /* style of candidate */
|
---|
375 | #define IME_CAND_UNKNOWN 0x0000
|
---|
376 | #define IME_CAND_READ 0x0001
|
---|
377 | #define IME_CAND_CODE 0x0002
|
---|
378 | #define IME_CAND_MEANING 0x0003
|
---|
379 | #define IME_CAND_RADICAL 0x0004
|
---|
380 | #define IME_CAND_STROKE 0x0005
|
---|
381 |
|
---|
382 |
|
---|
383 | /* wParam of report message WM_IME_NOTIFY */
|
---|
384 | #define IMN_CLOSESTATUSWINDOW 0x0001
|
---|
385 | #define IMN_OPENSTATUSWINDOW 0x0002
|
---|
386 | #define IMN_CHANGECANDIDATE 0x0003
|
---|
387 | #define IMN_CLOSECANDIDATE 0x0004
|
---|
388 | #define IMN_OPENCANDIDATE 0x0005
|
---|
389 | #define IMN_SETCONVERSIONMODE 0x0006
|
---|
390 | #define IMN_SETSENTENCEMODE 0x0007
|
---|
391 | #define IMN_SETOPENSTATUS 0x0008
|
---|
392 | #define IMN_SETCANDIDATEPOS 0x0009
|
---|
393 | #define IMN_SETCOMPOSITIONFONT 0x000A
|
---|
394 | #define IMN_SETCOMPOSITIONWINDOW 0x000B
|
---|
395 | #define IMN_SETSTATUSWINDOWPOS 0x000C
|
---|
396 | #define IMN_GUIDELINE 0x000D
|
---|
397 | #define IMN_PRIVATE 0x000E
|
---|
398 |
|
---|
399 |
|
---|
400 | /* wParam of report message WM_IME_REQUEST */
|
---|
401 | #define IMR_COMPOSITIONWINDOW 0x0001
|
---|
402 | #define IMR_CANDIDATEWINDOW 0x0002
|
---|
403 | #define IMR_COMPOSITIONFONT 0x0003
|
---|
404 | #define IMR_RECONVERTSTRING 0x0004
|
---|
405 | #define IMR_CONFIRMRECONVERTSTRING 0x0005
|
---|
406 | #define IMR_QUERYCHARPOSITION 0x0006
|
---|
407 | #define IMR_DOCUMENTFEED 0x0007
|
---|
408 |
|
---|
409 |
|
---|
410 | /* error code of ImmGetCompositionString */
|
---|
411 | #define IMM_ERROR_NODATA (-1)
|
---|
412 | #define IMM_ERROR_GENERAL (-2)
|
---|
413 |
|
---|
414 |
|
---|
415 | /* dialog mode of ImmConfigureIME */
|
---|
416 | #define IME_CONFIG_GENERAL 1
|
---|
417 | #define IME_CONFIG_REGISTERWORD 2
|
---|
418 | #define IME_CONFIG_SELECTDICTIONARY 3
|
---|
419 |
|
---|
420 | /* dialog mode of ImmEscape */
|
---|
421 | #define IME_ESC_QUERY_SUPPORT 0x0003
|
---|
422 | #define IME_ESC_RESERVED_FIRST 0x0004
|
---|
423 | #define IME_ESC_RESERVED_LAST 0x07FF
|
---|
424 | #define IME_ESC_PRIVATE_FIRST 0x0800
|
---|
425 | #define IME_ESC_PRIVATE_LAST 0x0FFF
|
---|
426 | #define IME_ESC_SEQUENCE_TO_INTERNAL 0x1001
|
---|
427 | #define IME_ESC_GET_EUDC_DICTIONARY 0x1003
|
---|
428 | #define IME_ESC_SET_EUDC_DICTIONARY 0x1004
|
---|
429 | #define IME_ESC_MAX_KEY 0x1005
|
---|
430 | #define IME_ESC_IME_NAME 0x1006
|
---|
431 | #define IME_ESC_SYNC_HOTKEY 0x1007
|
---|
432 | #define IME_ESC_HANJA_MODE 0x1008
|
---|
433 | #define IME_ESC_AUTOMATA 0x1009
|
---|
434 | #define IME_ESC_PRIVATE_HOTKEY 0x100a
|
---|
435 | #define IME_ESC_GETHELPFILENAME 0x100b
|
---|
436 |
|
---|
437 |
|
---|
438 | /* style of word registration */
|
---|
439 | #define IME_REGWORD_STYLE_EUDC 0x00000001
|
---|
440 | #define IME_REGWORD_STYLE_USER_FIRST 0x80000000
|
---|
441 | #define IME_REGWORD_STYLE_USER_LAST 0xFFFFFFFF
|
---|
442 |
|
---|
443 |
|
---|
444 | /* dwFlags for ImmAssociateContextEx */
|
---|
445 | #define IACE_CHILDREN 0x0001
|
---|
446 | #define IACE_DEFAULT 0x0010
|
---|
447 | #define IACE_IGNORENOCONTEXT 0x0020
|
---|
448 |
|
---|
449 | /* dwFlags for ImmGetImeMenuItems */
|
---|
450 | #define IGIMIF_RIGHTMENU 0x0001
|
---|
451 |
|
---|
452 | /* dwType for ImmGetImeMenuItems */
|
---|
453 | #define IGIMII_CMODE 0x0001
|
---|
454 | #define IGIMII_SMODE 0x0002
|
---|
455 | #define IGIMII_CONFIGURE 0x0004
|
---|
456 | #define IGIMII_TOOLS 0x0008
|
---|
457 | #define IGIMII_HELP 0x0010
|
---|
458 | #define IGIMII_OTHER 0x0020
|
---|
459 | #define IGIMII_INPUTTOOLS 0x0040
|
---|
460 |
|
---|
461 | /* fType of IMEMENUITEMINFO structure */
|
---|
462 | #define IMFT_RADIOCHECK 0x00001
|
---|
463 | #define IMFT_SEPARATOR 0x00002
|
---|
464 | #define IMFT_SUBMENU 0x00004
|
---|
465 |
|
---|
466 | /* fState of IMEMENUITEMINFO structure */
|
---|
467 | #define IMFS_GRAYED MFS_GRAYED
|
---|
468 | #define IMFS_DISABLED MFS_DISABLED
|
---|
469 | #define IMFS_CHECKED MFS_CHECKED
|
---|
470 | #define IMFS_HILITE MFS_HILITE
|
---|
471 | #define IMFS_ENABLED MFS_ENABLED
|
---|
472 | #define IMFS_UNCHECKED MFS_UNCHECKED
|
---|
473 | #define IMFS_UNHILITE MFS_UNHILITE
|
---|
474 | #define IMFS_DEFAULT MFS_DEFAULT
|
---|
475 |
|
---|
476 |
|
---|
477 | /*
|
---|
478 | * type of soft keyboard
|
---|
479 | * for Windows Tranditional Chinese Edition
|
---|
480 | */
|
---|
481 | #define SOFTKEYBOARD_TYPE_T1 0x0001
|
---|
482 | /* for Windows Simplified Chinese Edition */
|
---|
483 | #define SOFTKEYBOARD_TYPE_C1 0x0002
|
---|
484 |
|
---|
485 |
|
---|
486 | HIMC WINAPI ImmAssociateContext(HWND, HIMC);
|
---|
487 | BOOL WINAPI ImmAssociateContextEx(HWND, HIMC, DWORD);
|
---|
488 | BOOL WINAPI ImmConfigureIMEA(HKL, HWND, DWORD, LPVOID);
|
---|
489 | BOOL WINAPI ImmConfigureIMEW(HKL, HWND, DWORD, LPVOID);
|
---|
490 | #define ImmConfigureIME WINELIB_NAME_AW(ImmConfigureIME)
|
---|
491 | HIMC WINAPI ImmCreateContext(void);
|
---|
492 | BOOL WINAPI ImmDestroyContext(HIMC hIMC);
|
---|
493 | BOOL WINAPI ImmDisableIME(DWORD idThread);
|
---|
494 | UINT WINAPI ImmEnumRegisterWordA(HKL, REGISTERWORDENUMPROCA, LPCSTR, DWORD, LPCSTR, LPVOID);
|
---|
495 | UINT WINAPI ImmEnumRegisterWordW(HKL, REGISTERWORDENUMPROCW, LPCWSTR, DWORD, LPCWSTR, LPVOID);
|
---|
496 | #define ImmEnumRegisterWord WINELIB_NAME_AW(ImmEnumRegisterWord)
|
---|
497 | LRESULT WINAPI ImmEscapeA(HKL, HIMC, UINT, LPVOID);
|
---|
498 | LRESULT WINAPI ImmEscapeW(HKL, HIMC, UINT, LPVOID);
|
---|
499 | #define ImmEscape WINELIB_NAME_AW(ImmEscape)
|
---|
500 | DWORD WINAPI ImmGetCandidateListA(HIMC, DWORD, LPCANDIDATELIST, DWORD);
|
---|
501 | DWORD WINAPI ImmGetCandidateListW(HIMC, DWORD, LPCANDIDATELIST, DWORD);
|
---|
502 | #define ImmGetCandidateList WINELIB_NAME_AW(ImmGetCandidateList)
|
---|
503 | DWORD WINAPI ImmGetCandidateListCountA(HIMC, LPDWORD);
|
---|
504 | DWORD WINAPI ImmGetCandidateListCountW(HIMC, LPDWORD);
|
---|
505 | #define ImmGetCandidateListCount WINELIB_NAME_AW(ImmGetCandidateListCount)
|
---|
506 | BOOL WINAPI ImmGetCandidateWindow(HIMC, DWORD, LPCANDIDATEFORM);
|
---|
507 | #if defined(_WINGDI_) && !defined(NOGDI)
|
---|
508 | BOOL WINAPI ImmGetCompositionFontA(HIMC, LPLOGFONTA);
|
---|
509 | BOOL WINAPI ImmGetCompositionFontW(HIMC, LPLOGFONTW);
|
---|
510 | #define ImmGetCompositionFont WINELIB_NAME_AW(ImmGetCompositionFont)
|
---|
511 | BOOL WINAPI ImmSetCompositionFontA(HIMC, LPLOGFONTA);
|
---|
512 | BOOL WINAPI ImmSetCompositionFontW(HIMC, LPLOGFONTW);
|
---|
513 | #define ImmSetCompositionFont WINELIB_NAME_AW(ImmSetCompositionFont)
|
---|
514 | #endif
|
---|
515 | LONG WINAPI ImmGetCompositionStringA(HIMC, DWORD, LPVOID, DWORD);
|
---|
516 | LONG WINAPI ImmGetCompositionStringW(HIMC, DWORD, LPVOID, DWORD);
|
---|
517 | #define ImmGetCompositionString WINELIB_NAME_AW(ImmGetCompositionString)
|
---|
518 | BOOL WINAPI ImmGetCompositionWindow(HIMC, LPCOMPOSITIONFORM);
|
---|
519 | HIMC WINAPI ImmGetContext(HWND);
|
---|
520 | DWORD WINAPI ImmGetConversionListA(HKL, HIMC, LPCSTR, LPCANDIDATELIST, DWORD, UINT);
|
---|
521 | DWORD WINAPI ImmGetConversionListW(HKL, HIMC, LPCWSTR, LPCANDIDATELIST, DWORD, UINT);
|
---|
522 | #define ImmGetConversionList WINELIB_NAME_AW(ImmGetConversionList)
|
---|
523 | BOOL WINAPI ImmGetConversionStatus(HIMC, LPDWORD, LPDWORD);
|
---|
524 | HWND WINAPI ImmGetDefaultIMEWnd(HWND);
|
---|
525 | UINT WINAPI ImmGetDescriptionA(HKL, LPSTR, UINT);
|
---|
526 | UINT WINAPI ImmGetDescriptionW(HKL, LPWSTR, UINT);
|
---|
527 | #define ImmGetDescription WINELIB_NAME_AW(ImmGetDescription)
|
---|
528 | DWORD WINAPI ImmGetGuideLineA(HIMC, DWORD, LPSTR, DWORD);
|
---|
529 | DWORD WINAPI ImmGetGuideLineW(HIMC, DWORD, LPWSTR, DWORD);
|
---|
530 | #define ImmGetGuideLine WINELIB_NAME_AW(ImmGetGuideLine)
|
---|
531 | UINT WINAPI ImmGetIMEFileNameA(HKL, LPSTR, UINT);
|
---|
532 | UINT WINAPI ImmGetIMEFileNameW(HKL, LPWSTR, UINT);
|
---|
533 | #define ImmGetIMEFileName WINELIB_NAME_AW(ImmGetIMEFileName)
|
---|
534 | DWORD WINAPI ImmGetImeMenuItemsA(HIMC, DWORD, DWORD, LPIMEMENUITEMINFOA, LPIMEMENUITEMINFOA, DWORD);
|
---|
535 | DWORD WINAPI ImmGetImeMenuItemsW(HIMC, DWORD, DWORD, LPIMEMENUITEMINFOW, LPIMEMENUITEMINFOW, DWORD);
|
---|
536 | #define ImmGetImeMenuItems WINELIB_NAME_AW(ImmGetImeMenuItems)
|
---|
537 | BOOL WINAPI ImmGetOpenStatus(HIMC);
|
---|
538 | DWORD WINAPI ImmGetProperty(HKL, DWORD);
|
---|
539 | UINT WINAPI ImmGetRegisterWordStyleA(HKL, UINT, LPSTYLEBUFA);
|
---|
540 | UINT WINAPI ImmGetRegisterWordStyleW(HKL, UINT, LPSTYLEBUFW);
|
---|
541 | #define ImmGetRegisterWordStyle WINELIB_NAME_AW(ImmGetRegisterWordStyle)
|
---|
542 | BOOL WINAPI ImmGetStatusWindowPos(HIMC, LPPOINT);
|
---|
543 | UINT WINAPI ImmGetVirtualKey(HWND);
|
---|
544 | HKL WINAPI ImmInstallIMEA(LPCSTR, LPCSTR);
|
---|
545 | HKL WINAPI ImmInstallIMEW(LPCWSTR, LPCWSTR);
|
---|
546 | #define ImmInstallIME WINELIB_NAME_AW(ImmInstallIME)
|
---|
547 | BOOL WINAPI ImmIsIME(HKL);
|
---|
548 | BOOL WINAPI ImmIsUIMessageA(HWND, UINT, WPARAM, LPARAM);
|
---|
549 | BOOL WINAPI ImmIsUIMessageW(HWND, UINT, WPARAM, LPARAM);
|
---|
550 | #define ImmIsUIMessage WINELIB_NAME_AW(ImmIsUIMessage)
|
---|
551 | BOOL WINAPI ImmNotifyIME(HIMC, DWORD, DWORD, DWORD);
|
---|
552 | BOOL WINAPI ImmProcessKey(HWND, HKL, UINT, LPARAM, DWORD);
|
---|
553 | BOOL WINAPI ImmRegisterWordA(HKL, LPCSTR, DWORD, LPCSTR);
|
---|
554 | BOOL WINAPI ImmRegisterWordW(HKL, LPCWSTR, DWORD, LPCWSTR);
|
---|
555 | #define ImmRegisterWord WINELIB_NAME_AW(ImmRegisterWord)
|
---|
556 | BOOL WINAPI ImmReleaseContext(HWND, HIMC);
|
---|
557 | BOOL WINAPI ImmSetCandidateWindow(HIMC, LPCANDIDATEFORM);
|
---|
558 | BOOL WINAPI ImmSetCompositionStringA(HIMC, DWORD, LPCVOID, DWORD, LPCVOID, DWORD);
|
---|
559 | BOOL WINAPI ImmSetCompositionStringW(HIMC, DWORD, LPCVOID, DWORD, LPCVOID, DWORD);
|
---|
560 | #define ImmSetCompositionString WINELIB_NAME_AW(ImmSetCompositionString)
|
---|
561 | BOOL WINAPI ImmSetCompositionWindow(HIMC, LPCOMPOSITIONFORM);
|
---|
562 | BOOL WINAPI ImmSetConversionStatus(HIMC, DWORD, DWORD);
|
---|
563 | BOOL WINAPI ImmSetOpenStatus(HIMC, BOOL);
|
---|
564 | BOOL WINAPI ImmSetStatusWindowPos(HIMC, LPPOINT);
|
---|
565 | BOOL WINAPI ImmSimulateHotKey(HWND, DWORD);
|
---|
566 | BOOL WINAPI ImmUnregisterWordA(HKL, LPCSTR, DWORD, LPCSTR);
|
---|
567 | BOOL WINAPI ImmUnregisterWordW(HKL, LPCWSTR, DWORD, LPCWSTR);
|
---|
568 | #define ImmUnregisterWord WINELIB_NAME_AW(ImmUnregisterWord)
|
---|
569 |
|
---|
570 |
|
---|
571 | #ifdef __cplusplus
|
---|
572 | }
|
---|
573 | #endif
|
---|
574 |
|
---|
575 | #endif /* __WINE_IMM_H */
|
---|