gecko-dev/cmd/winfe/edtrcdll/public/ime16.h
1998-03-28 02:44:41 +00:00

244 lines
8.4 KiB
C

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#ifdef KOREA // BeomOh - 10/05/92
#define CP_HWND 0
#define CP_OPEN 1
#define CP_DIRECT 2
#define CP_LEVEL 3
#define lpSource(lpks) (LPSTR)((LPSTR)lpks+lpks->dchSource)
#define lpDest(lpks) (LPSTR)((LPSTR)lpks+lpks->dchDest)
#endif // ifdef KOREA
/* virtual key */
#ifdef KOREA // BeomOh - 9/29/92
#define VK_FINAL 0x18 /* dummy VK to make final on mouse down */
#define VK_CONVERT 0x1C
#define VK_NONCONVERT 0x1D
#define VK_ACCEPT 0x1E
#define VK_MODECHANGE 0x1F
#else
#define VK_DBE_ALPHANUMERIC 0x0f0
#define VK_DBE_KATAKANA 0x0f1
#define VK_DBE_HIRAGANA 0x0f2
#define VK_DBE_SBCSCHAR 0x0f3
#define VK_DBE_DBCSCHAR 0x0f4
#define VK_DBE_ROMAN 0x0f5
#define VK_DBE_NOROMAN 0x0f6
#define VK_DBE_ENTERWORDREGISTERMODE 0x0f7 /* 3.1 */
#define VK_DBE_IME_WORDREGISTER VK_DBE_ENTERWORDREGISTERMODE /* for 3.0 */
#define VK_DBE_ENTERIMECONFIGMODE 0x0f8 /* 3.1 */
#define VK_DBE_IME_DIALOG VK_DBE_ENTERIMECONFIGMODE /* for 3.0 */
#define VK_DBE_FLUSHSTRING 0x0f9 /* 3.1 */
#define VK_DBE_FLUSH VK_DBE_FLUSHSTRING /* for 3.0 */
#define VK_DBE_CODEINPUT 0x0fa
#define VK_DBE_NOCODEINPUT 0x0fb
#define VK_DBE_DETERMINESTRING 0x0fc /* 3.1 */
#define VK_DBE_ENTERDLGCONVERSIONMODE 0xfd /* 3.1 */
#endif // ifdef KOREA
/* switch for wParam of IME_MOVECONVERTWINDOW (IME_SETCONVERSIONWINDOW) */
#define MCW_DEFAULT 0x00
#define MCW_RECT 0x01
#define MCW_WINDOW 0x02
#define MCW_SCREEN 0x04
#define MCW_VERTICAL 0x08
#define MCW_HIDDEN 0x10
#define MCW_CMD 0x16 /* command mask */
/* switch for wParam of IME_SETCONVERSIONMODE(IME_SET_MODE) and
** IME_GETCONVERSIONMODE(IME_GET_MODE)
*/
#define IME_MODE_ALPHANUMERIC 0x0001
#ifdef KOREA // BeomOh - 9/29/92
#define IME_MODE_SBCSCHAR 0x0002
#define IME_MODE_HANJACONVERT 0x0004
#else
#define IME_MODE_KATAKANA 0x0002
#define IME_MODE_HIRAGANA 0x0004
#define IME_MODE_SBCSCHAR 0x0008
#define IME_MODE_DBCSCHAR 0x0010
#define IME_MODE_ROMAN 0x0020
#define IME_MODE_NOROMAN 0x0040
#define IME_MODE_CODEINPUT 0x0080
#define IME_MODE_NOCODEINPUT 0x0100
#endif
/* functions */
#define IME_GETIMECAPS 0x03 /* 3.1 */
#define IME_QUERY IME_GETIMECAPS /* for 3.0 */
#define IME_SETOPEN 0x04
#define IME_GETOPEN 0x05
#define IME_GETVERSION 0x07 /* 3.1 */
#define IME_SETCONVERSIONWINDOW 0x08 /* 3.1 */
#ifdef KOREA
#define IME_MOVEIMEWINDOW IME_SETCONVERSIONWINDOW /* for 3.0 */
#else
#define IME_MOVECONVERTWINDOW IME_SETCONVERSIONWINDOW /* for 3.0 */
#endif
#define IME_SETCONVERSIONMODE 0x10 /* 3.1 */
#ifdef KOREA // BeomOh - 10/23/92
#define IME_SET_MODE 0x12
#else
#define IME_SET_MODE IME_SETCONVERSIONMODE /* for 3.0 */
#endif
#define IME_GETCONVERSIONMODE 0x11 /* 3.1 */
#define IME_GET_MODE IME_GETCONVERSIONMODE /* for 3.0 */
#define IME_SETCONVERSIONFONT 0x12 /* 3.1 */
#define IME_SETFONT IME_SETCONVERSIONFONT /* for 3.0 */
#define IME_SENDVKEY 0x13 /* 3.1 */
#define IME_SENDKEY IME_SENDVKEY /* for 3.0 */
#define IME_PRIVATE 0x15
#define IME_WINDOWUPDATE 0x16
#define IME_ENTERWORDREGISTERMODE 0x18 /* 3.1 */
#define IME_WORDREGISTER IME_ENTERWORDREGISTERMODE /* for 3.0 */
#define IME_SETCONVERSIONFONTEX 0x19 /* New for 3.1 */
#ifdef KOREA // 01/12/93 KDLee MSCH
#endif
#define IME_SETUNDETERMINESTRING 0x50 /* New for 3.1 (PENWIN) */
#define IME_SETCAPTURE 0x51 /* New for 3.1 (PENWIN) */
#define IME_PRIVATEFIRST 0x0100 /* New for 3.1 */
#define IME_PRIVATELAST 0x04FF /* New for 3.1 */
#ifdef KOREA // BeomOh - 9/29/92
/* IME_CODECONVERT subfunctions */
#define IME_BANJAtoJUNJA 0x13
#define IME_JUNJAtoBANJA 0x14
#define IME_JOHABtoKS 0x15
#define IME_KStoJOHAB 0x16
/* IME_AUTOMATA subfunctions */
#define IMEA_INIT 0x01
#define IMEA_NEXT 0x02
#define IMEA_PREV 0x03
/* IME_HANJAMODE subfunctions */
#define IME_REQUEST_CONVERT 0x01
#define IME_ENABLE_CONVERT 0x02
/* IME_MOVEIMEWINDOW subfunctions */
#define INTERIM_WINDOW 0x00
#define MODE_WINDOW 0x01
#define HANJA_WINDOW 0x02
#endif // ifdef KOREA
// CTRL_MODIFY is "or" all modify bits, but now only one
/* error code */
#define IME_RS_ERROR 0x01 /* general error */
#define IME_RS_NOIME 0x02 /* IME is not installed */
#define IME_RS_TOOLONG 0x05 /* given string is too long */
#define IME_RS_ILLEGAL 0x06 /* illegal charactor(s) is string */
#define IME_RS_NOTFOUND 0x07 /* no (more) candidate */
#define IME_RS_NOROOM 0x0a /* no disk/memory space */
#define IME_RS_DISKERROR 0x0e /* disk I/O error */
#define IME_RS_CAPTURED 0x10 /* IME is captured (PENWIN) */
#define IME_RS_INVALID 0x11 /* invalid sub-function was specified */
#define IME_RS_NEST 0x12 /* called nested */
#define IME_RS_SYSTEMMODAL 0x13 /* called when system mode */
/* messge ids */
#define WM_IME_REPORT 0x0280
#define IR_STRINGSTART 0x100
#define IR_STRINGEND 0x101
#define IR_OPENCONVERT 0x120
#define IR_CHANGECONVERT 0x121
#define IR_CLOSECONVERT 0x122
#define IR_FULLCONVERT 0x123
#define IR_IMESELECT 0x130
#define IR_STRING 0x140
#define IR_DBCSCHAR 0x160 /* New for 3.1 */
#define IR_UNDETERMINE 0x170 /* New for 3.1 */
#define IR_STRINGEX 0x180 /* New for 3.1 */
#define WM_IMEKEYDOWN 0x290
#define WM_IMEKEYUP 0x291
WORD WINAPI SendIMEMessage( HWND, LPARAM );
LRESULT WINAPI SendIMEMessageEx( HWND, LPARAM ); /* New for 3.1 */
typedef struct tagIMESTRUCT {
UINT fnc; /* function code */
WPARAM wParam; /* word parameter */
UINT wCount; /* word counter */
UINT dchSource;/* offset to Source from top of memory object */
UINT dchDest; /* offset to Desrination from top of memory object */
LPARAM lParam1;
LPARAM lParam2;
LPARAM lParam3;
} IMESTRUCT;
typedef IMESTRUCT *PIMESTRUCT;
typedef IMESTRUCT NEAR *NPIMESTRUCT;
typedef IMESTRUCT FAR *LPIMESTRUCT;
typedef struct tagOLDUNDETERMINESTRUCT {
UINT uSize;
UINT uDefIMESize;
UINT uLength;
UINT uDeltaStart;
UINT uCursorPos;
BYTE cbColor[16];
} OLDUNDETERMINESTRUCT,
NEAR *NPOLDUNDETERMINESTRUCT,
FAR *LPOLDUNDETERMINESTRUCT;
typedef struct tagUNDETERMINESTRUCT {
DWORD dwSize;
UINT uDefIMESize;
UINT uDefIMEPos;
UINT uUndetTextLen;
UINT uUndetTextPos;
UINT uUndetAttrPos;
UINT uCursorPos;
UINT uDeltaStart;
UINT uDetermineTextLen;
UINT uDetermineTextPos;
UINT uDetermineDelimPos;
UINT uYomiTextLen;
UINT uYomiTextPos;
UINT uYomiDelimPos;
} UNDETERMINESTRUCT,
NEAR *NPUNDETERMINESTRUCT,
FAR *LPUNDETERMINESTRUCT;
typedef struct tagSTRINGEXSTRUCT {
DWORD dwSize;
UINT uDeterminePos;
UINT uDetermineDelimPos;
UINT uYomiPos;
UINT uYomiDelimPos;
} STRINGEXSTRUCT,
NEAR *NPSTRINGEXSTRUCT,
FAR *LPSTRINGEXSTRUCT;