HZmodephtoch.c
上传用户:shdz666
上传日期:2007-01-03
资源大小:566k
文件大小:3k
源码类别:

输入法编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1999.4  Li ZhenChun
  3.  *
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License as published by
  6.  * the Free Software Foundation; either version 2 of the License; or
  7.  * (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that is will be useful, but
  10.  * WITHOUT ANY WARRANTY; without even the implied warranty of 
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12.  * General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 675 Mass Ave, Cambridge, M A 02139, USA.
  17.  *
  18.  * Author: Li ZhenChun  email: zhchli@163.net or zhchli@126.com
  19.  * 
  20.  */
  21. #include "freepy.h"
  22. BOOL CharHandlePhToCh( HIMC hIMC,WORD wParam,LONG lParam)
  23. {
  24. if( wParam >= _T('0') && wParam <= _T('9') ){
  25.     LPINPUTCONTEXT lpIMC;
  26. LPCANDIDATEINFO lpCandInfo;
  27. LPCANDIDATELIST lpCandList;
  28. LPCOMPOSITIONSTRING lpCompStr;
  29. WORD wIdx,wCount;
  30. TCHAR szCharArr[50][4];
  31. LPTSTR lpNextChar,lpStr,lpConvStr;
  32. GENEMSG GnMsg;
  33. int i;
  34. lpIMC = ImmLockIMC(hIMC);
  35. lpCandInfo = (LPCANDIDATEINFO)ImmLockIMCC(lpIMC->hCandInfo);
  36. lpCandList = (LPCANDIDATELIST)((LPSTR)lpCandInfo  + lpCandInfo->dwOffset[0]);
  37. lpCompStr = (LPCOMPOSITIONSTRING)ImmLockIMCC(lpIMC->hCompStr);
  38.     if( wParam == (WORD)_T('0') ) wIdx=9;
  39. else wIdx = wParam - _T('1');
  40. wIdx += (WORD)lpCandList->dwPageStart;
  41. if( wIdx >= 2 && wIdx < lpCandList->dwCount+2){
  42. wCount = 0;
  43. lpStr = GETLPCANDSTR(lpCandList,wIdx);
  44. lpNextChar = CharNext(lpStr);
  45. while( lpStr != lpNextChar ){
  46. memcpy(szCharArr[wCount],lpStr,lpNextChar-lpStr);
  47. szCharArr[wCount++][lpNextChar-lpStr] = _T('');
  48. lpStr = lpNextChar;
  49. lpNextChar = CharNext(lpStr);
  50. }
  51. if( !wCount ) goto my_exit;
  52. if( wCount == 1){
  53. lpConvStr = ((LPMYCOMPSTR)lpCompStr)->FreePYComp.szConvCompStr;
  54. _tcscpy(lpConvStr,szCharArr[0]);
  55. MakeResultString(hIMC,TRUE);
  56. goto my_exit;
  57. }
  58. if( wCount > 10 ) wCount = 10;
  59. lpCandList->dwCount = wCount;
  60. lpCandList->dwPageStart = 2;
  61. lpCandList->dwPageSize = 10;
  62. for (i=0;i<wCount;i++){
  63. _tcscpy(GETLPCANDSTR(lpCandList,i+2),szCharArr[i]);
  64. }
  65. GnMsg.msg = WM_IME_COMPOSITION;
  66. GnMsg.wParam = 0;
  67. GnMsg.lParam = GCS_COMPSTR;
  68. GenerateMessage(hIMC, lpdwCurTransKey,(LPGENEMSG)&GnMsg);
  69. }
  70. my_exit:
  71. ImmUnlockIMCC(lpIMC->hCandInfo);
  72. ImmUnlockIMCC(lpIMC->hCompStr);
  73. ImmUnlockIMC(hIMC);
  74. }
  75. return TRUE;
  76. }