Lines Matching refs:aEvt

5397     SalExtTextInputEvent    aEvt;  in ImplHandleIMECompositionInput()  local
5398 aEvt.mnTime = GetMessageTime(); in ImplHandleIMECompositionInput()
5399 aEvt.mpTextAttr = NULL; in ImplHandleIMECompositionInput()
5400 aEvt.mnCursorPos = 0; in ImplHandleIMECompositionInput()
5401 aEvt.mnDeltaStart = 0; in ImplHandleIMECompositionInput()
5402 aEvt.mbOnlyCursor = FALSE; in ImplHandleIMECompositionInput()
5403 aEvt.mnCursorFlags = 0; in ImplHandleIMECompositionInput()
5415aEvt.maText = XubString( reinterpret_cast<const xub_Unicode*>(pTextBuf), (xub_StrLen)nTextLen ); in ImplHandleIMECompositionInput()
5419 aEvt.mnCursorPos = aEvt.maText.Len(); in ImplHandleIMECompositionInput()
5420 pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&aEvt ); in ImplHandleIMECompositionInput()
5441aEvt.maText = XubString( reinterpret_cast<const xub_Unicode*>(pTextBuf), (xub_StrLen)nTextLen ); in ImplHandleIMECompositionInput()
5454 xub_StrLen nTextLen = aEvt.maText.Len(); in ImplHandleIMECompositionInput()
5464 aEvt.mnCursorFlags |= SAL_EXTTEXTINPUT_CURSOR_INVISIBLE; in ImplHandleIMECompositionInput()
5477 aEvt.mpTextAttr = pSalAttrAry; in ImplHandleIMECompositionInput()
5488 pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&aEvt ); in ImplHandleIMECompositionInput()
5497 aEvt.mnCursorPos = nTextLen; in ImplHandleIMECompositionInput()
5498 if ( aEvt.mnCursorPos && (lParam & CS_NOMOVECARET) ) in ImplHandleIMECompositionInput()
5499 aEvt.mnCursorPos--; in ImplHandleIMECompositionInput()
5502aEvt.mnCursorPos = LOWORD( ImmGetCompositionStringW( hIMC, GCS_CURSORPOS, 0, 0 ) ); in ImplHandleIMECompositionInput()
5505 aEvt.mnCursorFlags |= SAL_EXTTEXTINPUT_CURSOR_INVISIBLE; in ImplHandleIMECompositionInput()
5507 aEvt.mnCursorFlags |= SAL_EXTTEXTINPUT_CURSOR_OVERWRITE; in ImplHandleIMECompositionInput()
5509 pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&aEvt ); in ImplHandleIMECompositionInput()
5542 SalExtTextInputEvent aEvt; in ImplHandleIMEComposition() local
5543 aEvt.mnTime = GetMessageTime(); in ImplHandleIMEComposition()
5544 aEvt.mpTextAttr = NULL; in ImplHandleIMEComposition()
5545 aEvt.mnCursorPos = 0; in ImplHandleIMEComposition()
5546 aEvt.mnDeltaStart = 0; in ImplHandleIMEComposition()
5547 aEvt.mbOnlyCursor = FALSE; in ImplHandleIMEComposition()
5548 aEvt.mnCursorFlags = 0; in ImplHandleIMEComposition()
5549 pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&aEvt ); in ImplHandleIMEComposition()
5699 SalSurroundingTextRequestEvent aEvt; in ImplHandleIMEReconvertString() local
5700 aEvt.maText = UniString(); in ImplHandleIMEReconvertString()
5701 aEvt.mnStart = aEvt.mnEnd = 0; in ImplHandleIMEReconvertString()
5716 pFrame->CallCallback( SALEVENT_SURROUNDINGTEXTREQUEST, (void*)&aEvt ); in ImplHandleIMEReconvertString()
5718 if( aEvt.maText.Len() == 0 ) in ImplHandleIMEReconvertString()
5723 nRet = sizeof(RECONVERTSTRING) + (aEvt.maText.Len() + 1) * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5730 pFrame->CallCallback( SALEVENT_SURROUNDINGTEXTREQUEST, (void*)&aEvt ); in ImplHandleIMEReconvertString()
5731 nRet = sizeof(RECONVERTSTRING) + (aEvt.maText.Len() + 1) * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5734 pReconvertString->dwStrLen = aEvt.maText.Len(); in ImplHandleIMEReconvertString()
5735 pReconvertString->dwCompStrOffset = aEvt.mnStart * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5736 pReconvertString->dwCompStrLen = aEvt.mnEnd - aEvt.mnStart; in ImplHandleIMEReconvertString()
5740 …memcpy( (LPWSTR)(pReconvertString + 1), aEvt.maText.GetBuffer(), (aEvt.maText.Len() + 1) * sizeof(… in ImplHandleIMEReconvertString()
5753 SalSurroundingTextRequestEvent aEvt; in ImplHandleIMEConfirmReconvertString() local
5754 aEvt.maText = UniString(); in ImplHandleIMEConfirmReconvertString()
5755 aEvt.mnStart = aEvt.mnEnd = 0; in ImplHandleIMEConfirmReconvertString()
5757 pFrame->CallCallback( SALEVENT_SURROUNDINGTEXTREQUEST, (void*)&aEvt ); in ImplHandleIMEConfirmReconvertString()
5762 if( nTmpStart != aEvt.mnStart || nTmpEnd != aEvt.mnEnd ) in ImplHandleIMEConfirmReconvertString()