Generally, the on-the-spot conversion is preferred to the fixed-position conversion. To support it, your program should properly handle WM_QUERYCONVERTPOS, which is sent by the system to the application when the user tries to enter the conversion mode. The first message parameter contains pointer to cursorpos (RECTL) and the second message parameter is reserved. The application can specify its intention on DBCS input method by replying to this message as follows:
a.
The above process 1.a. is for the on-the-spot conversion and 1.b. is for the fixed-position conversion. The single line, multi-line, and prompted entry field control (WC_ENTRYFIELD, WC_MLE and WC_COMBOBOX) support the on-the-spot conversion.
The next code fragment is a sample AVIO application supporting the on-the-spot conversion.
case WM_QUERYCONVERTPOS: VioGetCurPos( &cpQuery.y, &cpQuery.x, hpsVio ); VioGetOrg( &Origin.y, &Origin.x, hpsVio); WinQueryWindowRect( hwnd, &rcl ); ((PRECTL)mp1)->xLeft = (cpQuery.x - Origin.x) * DevCell.cx; ((PRECTL)mp1)->yBottom = rcl.yTop-((cpQuery.y-Origin.y+1)*DevCell.cy); ((PRECTL)mp1)->xRight = ((PRECTL)mp1)->xLeft + DevCell.cx; ((PRECTL)mp1)->yTop = ((PRECTL)mp1)->yBottom + DevCell.cy; return (MPARAM)QCP_CONVERT; break;
Note: