CmyFC.cpp
上传用户:hyb6888
上传日期:2016-01-24
资源大小:5186k
文件大小:16k
源码类别:

输入法编程

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "stdio.h"
  3. #include "windows.h"
  4. #include "windef.h"
  5. #include "math.h"
  6. #include "CmyFC.h"
  7. #include "myHDC.h" 
  8. #include "COMMDLG.H" 
  9. #include "SHLOBJ.H" 
  10. extern BYTE VirtKey48Map[48];
  11. CmyFC::CmyFC()
  12. {
  13. OSVERSIONINFO osvi;
  14. osvi.dwOSVersionInfoSize = 148;
  15. GetVersionEx(&osvi);
  16. if(osvi.dwPlatformId == VER_PLATFORM_WIN32_NT)
  17. ValIsWinNT=1;
  18. else
  19. ValIsWinNT=0;
  20. }
  21. //浏览文件夹函数
  22. //browseDirectory("极速五笔",gg, m_hWnd);
  23. int CALLBACK CmyFC::browseCallbackProc(HWND hwnd, UINT uMsg, LPARAM /*lp*/, LPARAM pData) {
  24. switch(uMsg) {
  25. case BFFM_INITIALIZED: 
  26. SendMessage(hwnd, BFFM_SETSELECTION, TRUE, pData);
  27. break;
  28. }
  29. return 0;
  30. }
  31. //browseFile(gg, m_hWnd,true,"",NULL);
  32. bool CmyFC::browseDirectory(char *Title,char * target, HWND owner /* = NULL */) {
  33. char buf[MAX_PATH];
  34. BROWSEINFO bi;
  35. LPMALLOC ma;
  36. int lon;
  37. ZeroMemory(&bi, sizeof(bi));
  38. bi.hwndOwner = owner;
  39. bi.pszDisplayName = buf;
  40. bi.lpszTitle = Title;
  41. bi.ulFlags = BIF_RETURNONLYFSDIRS ;
  42. bi.lParam = (LPARAM)target;
  43. //bi.lpfn = &browseCallbackProc;
  44. LPITEMIDLIST pidl = SHBrowseForFolder(&bi);
  45. if(pidl != NULL) 
  46. {
  47. SHGetPathFromIDList(pidl, buf);
  48. strcpy(target, buf);
  49. lon=strlen(target);
  50. if(lon > 0 && (target)[lon-1] != '\')
  51. {
  52. target[lon]='\';
  53. target[lon+1]=0;
  54. }
  55. if(SHGetMalloc(&ma) != E_FAIL) 
  56. {
  57. ma->Free(pidl);
  58. ma->Release();
  59. }
  60. }
  61. return 1;
  62. }
  63. //save为0表示打开,为真表示保存
  64. UINT APIENTRY openhook (HWND, UINT, WPARAM, LPARAM)
  65. {
  66. return 0;
  67. }
  68. bool CmyFC::browseFile(char * target,int buflen, HWND owner /* = NULL */, bool save /* = true */, char* initialDir /* = Util::emptyString */, char* types /* = NULL */)
  69. {
  70. char buf[MAX_PATH];
  71. OPENFILENAME ofn; // common dialog box structure
  72. try{
  73. memcpy(buf, target, buflen);
  74. // Initialize OPENFILENAME
  75. ZeroMemory(&ofn, sizeof(OPENFILENAME));
  76. ofn.lStructSize = sizeof(OPENFILENAME);
  77. ofn.hwndOwner = owner;
  78. ofn.lpstrFile = buf;
  79. ofn.lpstrFilter = types;
  80. ofn.nFilterIndex = 1;
  81. ofn.lpfnHook=openhook;
  82. ofn.lpstrInitialDir = initialDir;
  83. ofn.nMaxFile = sizeof(buf);
  84. ofn.Flags = (save ? 0: OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST);
  85. // Display the Open dialog box. 
  86. if ( (save ? GetSaveFileName(&ofn) : GetOpenFileName(&ofn) ) ==TRUE) {
  87. //MessageBox(0,ofn.lpstrFile,"dd",0);
  88. memcpy(target,ofn.lpstrFile,buflen);
  89. return true;
  90. }
  91. }
  92. catch(...)
  93. {
  94. MessageBox(0,"图片选择有错误发生","dd",0);
  95. }
  96. return false;
  97. }
  98. //判断系统是否NT
  99. BOOL CmyFC::MyIsWinNT() 
  100. {
  101. OSVERSIONINFO osvi;
  102. osvi.dwOSVersionInfoSize = 148;
  103. GetVersionEx(&osvi);
  104. if(osvi.dwPlatformId == VER_PLATFORM_WIN32_NT)
  105. return 1;
  106. else
  107. return 0;
  108. }
  109. int CmyFC::myGetPath(char *filefullname)
  110. {
  111. int  i,lon;
  112. lon=strlen(filefullname);
  113. for(i=lon;i>0;i--)
  114. if(filefullname[i]=='\')
  115. {
  116. filefullname[i+1]=0;
  117. break;
  118. }
  119. return 0;
  120. }
  121. int CmyFC::myfileExtname(char *filefullname,char *extname)
  122. {
  123. int  i,lon;
  124. extname[0]=0;
  125. lon=strlen(filefullname);
  126. for(i=lon;i>0;i--)
  127. if(filefullname[i]=='.')
  128. {
  129. strcpy(extname,&filefullname[i+1]);
  130. break;
  131. }
  132. return 0;
  133. }
  134. //输出文本图片
  135. CmyFC::OutTextPic(char *ss,long x,long y,HDC hDC1,HDC hDC2, long dw , long dh,double a, double zoom,HDC backhdc)
  136. {
  137. int i,index;
  138. myHDC tt,temtt,pp;
  139. char temss[100];
  140. long r,outdw;
  141. strcpy(temss,ss);
  142. r=(long)sqrt(dw*dw+dh*dh);
  143. outdw=dw*2*strlen(temss)+r*2;
  144. tt.StartHDC(hDC2,outdw,500);
  145. temtt.StartHDC(hDC1,outdw,500);
  146. pp.StartHDC(hDC1,outdw,500);
  147. strupr(temss);
  148. for(i=0;i<(int)strlen(temss);i++)
  149. {
  150. index=temss[i]-65;
  151. OutPicture(r,r,tt.hdc,dw*2*index,0,hDC2,dw,dh,a);
  152. TransparentBlt2(temtt.hdc,dw*2*i,0,dw*2+r,r*2,tt.hdc,0,0,dw*2+r,r*2,RGB(255,255,255));
  153. //BitBlt(temtt.hdc,dw*2*i,0,dw*2+r,r*2,tt.hdc,0,0,SRCAND);//
  154. }
  155. BitBlt(pp.hdc,0,0,outdw,r*2,backhdc,x,y,SRCCOPY);
  156. TransparentBlt2(pp.hdc,0,0,(int)(outdw*zoom),(int)(r*2*zoom),temtt.hdc,0,0,outdw,r*2,RGB(255,255,255));
  157. BitBlt(hDC1,x,y,(int)(outdw*zoom),r*2,pp.hdc,0,0,SRCCOPY);
  158. }
  159. //在hDC1中输出hDC2的指定位置和大小和角度的图片
  160. CmyFC::OutPicture(long x,long y,HDC hDC1,long startx,long starty,HDC hDC2, long dw , long dh,double a)
  161. {
  162. POINT pt[3];
  163. double sidas,sidac ;
  164. HBRUSH hBrush;
  165. HRGN hRgn;
  166. if(ValIsWinNT==TRUE)
  167. {
  168. sidac =cos(a * 0.0174533);
  169. sidas =sin(a * 0.0174533);
  170. pt[0].y = (long)(-dh * sidac -dw * sidas + y);
  171. pt[0].x = (long)( dh * sidas -dw * sidac + x);
  172. pt[1].y = (long)(-dh * sidac +dw * sidas + y);
  173. pt[1].x = (long)( dh * sidas +dw * sidac + x);
  174. pt[2].y = (long)( dh * sidac -dw * sidas + y);
  175. pt[2].x = (long)(-dh * sidas -dw * sidac + x);
  176. //BitBlt(hDC1,0,0,2000,500,0,0,0,WHITENESS);//由于WHITENESS并不是白色
  177. hBrush=(HBRUSH)GetStockObject(WHITE_BRUSH);
  178. hRgn=CreateRectRgn(0,0,300,300);
  179. FillRgn(hDC1,hRgn, hBrush);
  180. DeleteObject (hRgn);
  181. PlgBlt(hDC1,pt,hDC2,startx,starty, dw*2,dh*2,0,0,0);
  182. }
  183. else
  184. BitBlt(hDC1,10,10,dw*2,dh*2,hDC2,startx,starty,SRCCOPY);
  185. }
  186. void CmyFC::TransparentBlt2(HDC hdc0,
  187. int nX0,int nY0,int nW0,int nH0,
  188. HDC hdc1,
  189. int nX1,int nY1,int nW1,int nH1,
  190. UINT Tcol)
  191.  
  192. {
  193. HBITMAP hBMP   =CreateCompatibleBitmap(hdc0,nW0, nH0);
  194. // HBITMAP mBMP   =CreateCompatibleBitmap(hdc0,nW0, nH0);
  195. HBITMAP mBMP   =CreateBitmap(nW0,nH0,1,1,NULL); //建单色位图
  196. HDC hDC    =CreateCompatibleDC(hdc0);
  197. HDC mDC    =CreateCompatibleDC(hdc0);
  198. HBITMAP oldBMP =(HBITMAP)SelectObject(hDC, hBMP);
  199. HBITMAP oldmBMP=(HBITMAP)SelectObject(mDC, mBMP);
  200. //拷备位图到hDC中
  201. if (nW0==nW1&&nH0==nH1)
  202. BitBlt(hDC,0,0,nW0,nH0,hdc1,nX1,nY1,SRCCOPY);
  203. else
  204. StretchBlt(hDC,0,0,nW0,nH0,hdc1,nX1,nY1,nW1,nH1,SRCCOPY);
  205. SetBkColor(hDC, Tcol);//除去背景色的其他色形成轮括
  206. BitBlt(mDC,0,0,nW0,nH0,hDC,0,0,SRCCOPY);    
  207. //在单色的mDC设备中形成位图的黑色轮括。
  208. SetBkColor(hDC, RGB(0,0,0));            //设置形成图形与后的0值色
  209. SetTextColor(hDC, RGB(255,255,255));    //设置需要处理颜色的范围
  210. BitBlt(hDC,0,0,nW0,nH0,mDC,0,0,SRCAND); //取出实际以黑色为背景的图形。
  211. SetBkColor(hdc0,RGB(255,255,255));
  212. SetTextColor(hdc0,RGB(0,0,0));
  213. //在背景图上形成轮括
  214. BitBlt(hdc0,nX0,nY0,nW0,nH0,mDC,0,0,SRCAND); // SRCAND   dest=source AND dest
  215. BitBlt(hdc0,nX0,nY0,nW0,nH0,hDC,0,0,SRCPAINT);//SRCPAINT dest=source OR  dest  
  216. SelectObject(hDC,oldBMP);
  217. SelectObject(mDC,oldmBMP);
  218. DeleteDC(hDC);
  219. DeleteDC(mDC);
  220. DeleteObject(hBMP);
  221. DeleteObject(mBMP);
  222. }
  223. //////////////////////////////////////////////////////////////////////////////
  224. //读取注册表中的一个变量
  225. DWORD CmyFC::ReadReg(char *valname)
  226. {
  227. HKEY hKey;
  228. DWORD myupdate=0, myupdate1=0;
  229. unsigned long lon;
  230. if ( RegCreateKey(HKEY_CURRENT_USER,"Software\jsime", &hKey) == ERROR_SUCCESS )
  231. {
  232. //如果没有键值就建立一个
  233. if( RegQueryValueEx( hKey,valname,NULL,NULL,(LPBYTE)&myupdate1,&lon) != ERROR_SUCCESS )
  234.   RegSetValueEx(hKey, valname,0,REG_DWORD,(LPBYTE)&myupdate,sizeof(DWORD));
  235. RegCloseKey(hKey);
  236. }
  237. return myupdate1;
  238. }
  239. int CmyFC::WriteReg(char *valname,DWORD keyVal)
  240. {
  241. HKEY hKey;
  242. if ( RegCreateKey(HKEY_CURRENT_USER,"Software\jsime", &hKey) == ERROR_SUCCESS )
  243. {
  244.  //   MessageBox(0,valname,keyVal,0);
  245.   RegSetValueEx(hKey, valname,0,REG_DWORD,(LPBYTE)&keyVal,sizeof(DWORD));
  246. RegCloseKey(hKey);
  247. }
  248. return 0;
  249. }
  250. /////////////////////////////////////////////////////////////////////////
  251. // read string  
  252. int CmyFC::RegReadString(char *valname, char *keyVal)
  253. {
  254. HKEY hKey;
  255. unsigned long lon;
  256. char dd[100]="";
  257. keyVal[0]=0;
  258. if ( RegCreateKey(HKEY_CURRENT_USER,"Software\jsime", &hKey) == ERROR_SUCCESS )
  259. {
  260. //如果没有键值就建立一个
  261. if( RegQueryValueEx( hKey,valname,NULL,NULL,(LPBYTE)keyVal,&lon) != ERROR_SUCCESS ){
  262.   //RegSetValueEx(hKey, valname,0,REG_SZ,(LPBYTE)dd,0);
  263. }
  264. RegCloseKey(hKey);
  265. }
  266. return 0;
  267. }
  268. int CmyFC:: RegSaveString(char *valname, char *keyVal)
  269. {
  270. HKEY hKey;
  271. if ( RegCreateKey(HKEY_CURRENT_USER,"Software\jsime", &hKey) == ERROR_SUCCESS )
  272. {
  273.  //   MessageBox(0,valname,keyVal,0);
  274.   RegSetValueEx(hKey, valname,0,REG_SZ,(LPBYTE)keyVal,strlen(keyVal)+1);
  275. RegCloseKey(hKey);
  276. }
  277. return 0;
  278. }
  279. //////////////////////////////////////////////////////////////////
  280. POINT  CmyFC:: ReadRegPos(char *PathName)
  281. {
  282. HKEY hKey;
  283. DWORD myupdate=0, myupdate1=0;
  284. unsigned long lon=4;
  285. POINT GetPos;
  286. char ss[100];
  287. GetPos.x=0;
  288. GetPos.y=0;
  289. sprintf(ss,"Software\jsime\%s",PathName);
  290. if ( RegCreateKey(HKEY_CURRENT_USER,ss, &hKey) == ERROR_SUCCESS )
  291. {
  292. RegQueryValueEx( hKey,"x",NULL,NULL,(LPBYTE)&GetPos.x,(LPDWORD)&lon);
  293. RegQueryValueEx( hKey,"y",NULL,NULL,(LPBYTE)&GetPos.y,(LPDWORD)&lon);
  294. RegCloseKey(hKey);
  295. }
  296. //sprintf(ss,"%d  %d",GetPos.x,GetPos.y);
  297. //MessageBox(0,ss,ss,0);
  298. return GetPos;
  299. }
  300. int CmyFC::WriteRegPos(char *PathName,POINT SavePos)
  301. {
  302. HKEY hKey;
  303. char ss[100];
  304. sprintf(ss,"Software\jsime\%s",PathName);
  305. if ( RegCreateKey(HKEY_CURRENT_USER,ss, &hKey) == ERROR_SUCCESS )
  306. {
  307.  //   MessageBox(0,valname,keyVal,0);
  308.   RegSetValueEx(hKey, "x",0,REG_DWORD,(LPBYTE)&SavePos.x,sizeof(DWORD));
  309.   RegSetValueEx(hKey, "y",0,REG_DWORD,(LPBYTE)&SavePos.y,sizeof(DWORD));
  310. RegCloseKey(hKey);
  311. }
  312. return 0;
  313. }
  314. ///////////////////////////////////////////////////////////
  315. //
  316. //////////////////////////////////////////////////////////////////////////////
  317. //读取注册表中的一个变量
  318. DWORD CmyFC::ReadReg(char *pathname, char *valname)
  319. {
  320. HKEY hKey;
  321. DWORD myupdate=0, myupdate1=0;
  322. unsigned long lon;
  323. if ( RegCreateKey(HKEY_CURRENT_USER,pathname, &hKey) == ERROR_SUCCESS )
  324. {
  325. //如果没有键值
  326. if( RegQueryValueEx( hKey,valname,NULL,NULL,(LPBYTE)&myupdate1,&lon) != ERROR_SUCCESS )
  327.   MessageBox(0,valname,"没有键值",0);
  328. RegCloseKey(hKey);
  329. }
  330. return myupdate1;
  331. }
  332. int CmyFC::WriteReg(char *pathname,char *valname,DWORD keyVal)
  333. {
  334. HKEY hKey;
  335. int ret =0;
  336. if ( RegCreateKey(HKEY_CURRENT_USER,pathname, &hKey) == ERROR_SUCCESS )
  337. {
  338.  //   MessageBox(0,valname,keyVal,0);
  339.   RegSetValueEx(hKey, valname,0,REG_DWORD,(LPBYTE)&keyVal,sizeof(DWORD));
  340. RegCloseKey(hKey);
  341. }
  342. else 
  343. ret =1;
  344. return 0;
  345. }
  346. int CmyFC::WriteReg(HKEY mainhkey,char *pathname,char *valname,DWORD keyVal)
  347. {
  348. HKEY hKey;
  349. int ret =0;
  350. if ( RegCreateKey(mainhkey,pathname, &hKey) == ERROR_SUCCESS )
  351. {
  352.  //   MessageBox(0,valname,keyVal,0);
  353.   RegSetValueEx(hKey, valname,0,REG_DWORD,(LPBYTE)&keyVal,sizeof(DWORD));
  354. RegCloseKey(hKey);
  355. }
  356. else
  357. ret =1;
  358. return 0;
  359. }
  360. /////////////////////////////////////////////////////////////////////////
  361. // read string  
  362. int CmyFC::RegReadString(char *pathname,char *valname, char *keyVal)
  363. {
  364. HKEY hKey;
  365. unsigned long lon;
  366. char dd[10]="";
  367. keyVal[0]=0;
  368. if ( RegCreateKey(HKEY_CURRENT_USER,pathname, &hKey) == ERROR_SUCCESS )
  369. {
  370. //如果没有键值
  371. if( RegQueryValueEx( hKey,valname,NULL,NULL,(LPBYTE)keyVal,&lon) != ERROR_SUCCESS )
  372.   MessageBox(0,valname,"没有键值",0);
  373. RegCloseKey(hKey);
  374. }
  375. return 0;
  376. }
  377. int CmyFC::RegSaveString(char *pathname,char *valname, char *keyVal)
  378. {
  379. HKEY hKey;
  380. if ( RegCreateKey(HKEY_CURRENT_USER,pathname, &hKey) == ERROR_SUCCESS )
  381. {
  382.  //   MessageBox(0,valname,keyVal,0);
  383.   RegSetValueEx(hKey, valname,0,REG_SZ,(LPBYTE)keyVal,strlen(keyVal)+1);
  384. RegCloseKey(hKey);
  385. }
  386. return 0;
  387. }
  388. int CmyFC::RegSaveString(HKEY mainhkey ,char *pathname,char *valname, char *keyVal)
  389. {
  390. HKEY hKey;
  391. if ( RegCreateKey(mainhkey,pathname, &hKey) == ERROR_SUCCESS )
  392. {
  393.  //   MessageBox(0,valname,keyVal,0);
  394.   RegSetValueEx(hKey, valname,0,REG_SZ,(LPBYTE)keyVal,strlen(keyVal)+1);
  395. RegCloseKey(hKey);
  396. }
  397. return 0;
  398. }
  399. bool CmyFC:: DirExists(const char *dir)
  400. {
  401. bool tf;
  402. WIN32_FIND_DATA fd; 
  403.     HANDLE hFind = FindFirstFile(dir, &fd); 
  404.     if ((hFind != INVALID_HANDLE_VALUE) && (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) 
  405.     { 
  406. tf = true;
  407.     } 
  408. else
  409. {
  410. tf = false;
  411. }
  412.     FindClose(hFind); 
  413. return tf;
  414. }
  415. //判断文件是否存在
  416. BOOL CmyFC:: FileExists(const char *dir)
  417. {
  418. BOOL tf;
  419. WIN32_FIND_DATA fd; 
  420.     HANDLE hFind = FindFirstFile(dir, &fd); 
  421.     if (hFind !=INVALID_HANDLE_VALUE) 
  422.     { 
  423. tf = TRUE;
  424.     } 
  425. else
  426. {
  427. tf = FALSE;
  428. }
  429.     FindClose(hFind); 
  430. return tf;
  431. }
  432. ///////////////////////////////////////////////////////////////
  433. //读注册表判断是否需要重新装载库
  434. //返回为0表示不需要,1为需要重新装载
  435. long CmyFC::GetIsUpdate()
  436. {
  437. HKEY hKey;
  438. DWORD myupdate1;
  439. unsigned long lon;
  440. long ret=0;
  441. if ( RegCreateKey(HKEY_CURRENT_USER,"Software\jsime", &hKey) == ERROR_SUCCESS )
  442. {
  443. if( RegQueryValueEx( hKey,"jsime",NULL,NULL,(LPBYTE)&myupdate1,&lon) == ERROR_SUCCESS )
  444. {
  445. if(myupdate1==1)
  446. {
  447. //char ss[100];
  448. //sprintf(ss,"需要更新字库%d",myupdate1);
  449. //MessageBox(0,ss,"ddd",0);
  450. myupdate1=0;
  451.      RegSetValueEx(hKey, "jsime",0,REG_DWORD,(LPBYTE)&myupdate1,sizeof(DWORD));
  452. ret=1;
  453. }
  454. }
  455. RegCloseKey(hKey);
  456. }
  457. else
  458. MessageBox(0,"Software\jsime","主键打开失败",0);
  459. return ret;
  460. }
  461. ////////////////////////////////////////////////////////////////
  462. //取得键盘字符
  463. //需要得到VirtKey48Map支持
  464. ///////////////////////////////////////////////////////////////
  465. BOOL CmyFC::SoftKbdProcess(char *chss,int mykey,char*retSendCH)
  466. {
  467. unsigned char temss[3];
  468. char temchss[3];
  469. int i,bas=0,ret=0;
  470. BYTE bb;
  471. bb=mykey;
  472. for(i=0;i<49;i++)
  473. {
  474. if(VirtKey48Map[i]==bb)
  475.    break;
  476. }
  477. if(i<49)
  478. {
  479. GetAsyncKeyState(16);
  480. if(GetAsyncKeyState(16)!=0)
  481. bas=48;
  482. temchss[0] = chss[(bas+i)*2] ;
  483. temchss[1] = chss[(bas+i)*2 + 1] ;
  484. temchss[2] =0;
  485. temss[0] = chss[(bas+i)*2] & 0x00ff;
  486. temss[1] = chss[(bas+i)*2 + 1] & 0x00ff;
  487. if(temss[1]==' ')
  488. temss[1]=0;
  489. if(strcmp(temchss," ")==0)
  490. temss[0]=0;
  491. temss[2]=0;
  492. strcpy(retSendCH,(char*)temss);
  493. ret=1;
  494. }
  495. return ret;
  496. }
  497. /////////////////////////////////////////////////////////////
  498. //下面为函数部分
  499. //用于向系统发送消息
  500. BOOL CmyFC::GenerateMessage(HIMC hIMC, LPDWORD lpdwTransKey,LPGENEMSG lpGeneMsg)
  501. {
  502.     LPINPUTCONTEXT lpIMC;
  503. if( (lpIMC = ImmLockIMC(hIMC)) == NULL ) 
  504. return FALSE;
  505. if (IsWindow(lpIMC->hWnd))
  506. {
  507. LPDWORD lpdw;
  508. if (!(lpIMC->hMsgBuf = ImmReSizeIMCC(lpIMC->hMsgBuf,
  509. sizeof(DWORD) * (lpIMC->dwNumMsgBuf +1) * 3)))
  510. return FALSE;
  511. if (!(lpdw = (LPDWORD)ImmLockIMCC(lpIMC->hMsgBuf)))
  512. return FALSE;
  513. lpdw += (lpIMC->dwNumMsgBuf) * 3;
  514. *((LPGENEMSG)lpdw) = *lpGeneMsg;
  515. ImmUnlockIMCC(lpIMC->hMsgBuf);
  516. lpIMC->dwNumMsgBuf++;
  517. ImmGenerateMessage(hIMC);
  518. }
  519. ImmUnlockIMC(hIMC);
  520. return TRUE;
  521. }
  522. //把转换后的汉字发到接收程序中使用内部机制.
  523. BOOL CmyFC::IMESenChiApp(HIMC hIMC, char *ss)
  524. {
  525. //内部发送在首次发送时可能失效,因此暂时不用
  526. if(strlen(ss)<2)
  527. {
  528. GENEMSG GnMsg;
  529. LPCOMPOSITIONSTRING lpCompStr;
  530. LPINPUTCONTEXT lpIMC;
  531. lpIMC = ImmLockIMC(hIMC);
  532. lpCompStr = (LPCOMPOSITIONSTRING)ImmLockIMCC(lpIMC->hCompStr);
  533. if(strlen(ss))
  534. {
  535. strcpy(GETLPRESULTSTR(lpCompStr),ss);
  536. //_tcscpy(GETLPRESULTSTR(lpCompStr),"高点");
  537. lpCompStr->dwResultStrLen =strlen(ss);
  538. //{
  539. // char sss[100];
  540. // sprintf(sss,"%d",strlen(ss));
  541. // MessageBox(0,sss,0,0);
  542. //}
  543. GnMsg.msg = WM_IME_COMPOSITION;//
  544. GnMsg.wParam = 0;
  545. GnMsg.lParam = GCS_RESULTSTR;
  546. GenerateMessage(hIMC, 0,(LPGENEMSG)&GnMsg);
  547. }
  548. }
  549. else
  550. {
  551. //向获得焦点的窗口发送字符串
  552. //发送过多的字符有可能失去挂钩
  553. int i;
  554. for(i=0;i<(int)strlen(ss);)
  555. {
  556. if(ss[i]<0)
  557. {
  558. SendMessage(GetFocus(), WM_IME_CHAR, MAKEWORD(ss[i+1],ss[i]), 0);
  559.     i+=2;
  560. }
  561. else
  562. {
  563. SendMessage(GetFocus(), WM_IME_CHAR, MAKEWORD(ss[i],0), 1);
  564. if(ss[i]==13&&ss[i+1]==10)
  565. i++;
  566. i++;
  567. }
  568. }
  569. }
  570. return TRUE; 
  571. }