Lines Matching refs:aEvt

5400     SalExtTextInputEvent    aEvt;  in ImplHandleIMECompositionInput()  local
5401 aEvt.mnTime = GetMessageTime(); in ImplHandleIMECompositionInput()
5402 aEvt.mpTextAttr = NULL; in ImplHandleIMECompositionInput()
5403 aEvt.mnCursorPos = 0; in ImplHandleIMECompositionInput()
5404 aEvt.mnDeltaStart = 0; in ImplHandleIMECompositionInput()
5405 aEvt.mbOnlyCursor = FALSE; in ImplHandleIMECompositionInput()
5406 aEvt.mnCursorFlags = 0; in ImplHandleIMECompositionInput()
5418aEvt.maText = XubString( reinterpret_cast<const xub_Unicode*>(pTextBuf), (xub_StrLen)nTextLen ); in ImplHandleIMECompositionInput()
5422 aEvt.mnCursorPos = aEvt.maText.Len(); in ImplHandleIMECompositionInput()
5423 pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&aEvt ); in ImplHandleIMECompositionInput()
5444aEvt.maText = XubString( reinterpret_cast<const xub_Unicode*>(pTextBuf), (xub_StrLen)nTextLen ); in ImplHandleIMECompositionInput()
5457 xub_StrLen nTextLen = aEvt.maText.Len(); in ImplHandleIMECompositionInput()
5467 aEvt.mnCursorFlags |= SAL_EXTTEXTINPUT_CURSOR_INVISIBLE; in ImplHandleIMECompositionInput()
5480 aEvt.mpTextAttr = pSalAttrAry; in ImplHandleIMECompositionInput()
5491 pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&aEvt ); in ImplHandleIMECompositionInput()
5500 aEvt.mnCursorPos = nTextLen; in ImplHandleIMECompositionInput()
5501 if ( aEvt.mnCursorPos && (lParam & CS_NOMOVECARET) ) in ImplHandleIMECompositionInput()
5502 aEvt.mnCursorPos--; in ImplHandleIMECompositionInput()
5505aEvt.mnCursorPos = LOWORD( ImmGetCompositionStringW( hIMC, GCS_CURSORPOS, 0, 0 ) ); in ImplHandleIMECompositionInput()
5508 aEvt.mnCursorFlags |= SAL_EXTTEXTINPUT_CURSOR_INVISIBLE; in ImplHandleIMECompositionInput()
5510 aEvt.mnCursorFlags |= SAL_EXTTEXTINPUT_CURSOR_OVERWRITE; in ImplHandleIMECompositionInput()
5512 pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&aEvt ); in ImplHandleIMECompositionInput()
5545 SalExtTextInputEvent aEvt; in ImplHandleIMEComposition() local
5546 aEvt.mnTime = GetMessageTime(); in ImplHandleIMEComposition()
5547 aEvt.mpTextAttr = NULL; in ImplHandleIMEComposition()
5548 aEvt.mnCursorPos = 0; in ImplHandleIMEComposition()
5549 aEvt.mnDeltaStart = 0; in ImplHandleIMEComposition()
5550 aEvt.mbOnlyCursor = FALSE; in ImplHandleIMEComposition()
5551 aEvt.mnCursorFlags = 0; in ImplHandleIMEComposition()
5552 pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&aEvt ); in ImplHandleIMEComposition()
5702 SalSurroundingTextRequestEvent aEvt; in ImplHandleIMEReconvertString() local
5703 aEvt.maText = UniString(); in ImplHandleIMEReconvertString()
5704 aEvt.mnStart = aEvt.mnEnd = 0; in ImplHandleIMEReconvertString()
5719 pFrame->CallCallback( SALEVENT_SURROUNDINGTEXTREQUEST, (void*)&aEvt ); in ImplHandleIMEReconvertString()
5721 if( aEvt.maText.Len() == 0 ) in ImplHandleIMEReconvertString()
5726 nRet = sizeof(RECONVERTSTRING) + (aEvt.maText.Len() + 1) * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5733 pFrame->CallCallback( SALEVENT_SURROUNDINGTEXTREQUEST, (void*)&aEvt ); in ImplHandleIMEReconvertString()
5734 nRet = sizeof(RECONVERTSTRING) + (aEvt.maText.Len() + 1) * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5737 pReconvertString->dwStrLen = aEvt.maText.Len(); in ImplHandleIMEReconvertString()
5738 pReconvertString->dwCompStrOffset = aEvt.mnStart * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5739 pReconvertString->dwCompStrLen = aEvt.mnEnd - aEvt.mnStart; in ImplHandleIMEReconvertString()
5743 …memcpy( (LPWSTR)(pReconvertString + 1), aEvt.maText.GetBuffer(), (aEvt.maText.Len() + 1) * sizeof(… in ImplHandleIMEReconvertString()
5756 SalSurroundingTextRequestEvent aEvt; in ImplHandleIMEConfirmReconvertString() local
5757 aEvt.maText = UniString(); in ImplHandleIMEConfirmReconvertString()
5758 aEvt.mnStart = aEvt.mnEnd = 0; in ImplHandleIMEConfirmReconvertString()
5760 pFrame->CallCallback( SALEVENT_SURROUNDINGTEXTREQUEST, (void*)&aEvt ); in ImplHandleIMEConfirmReconvertString()
5765 if( nTmpStart != aEvt.mnStart || nTmpEnd != aEvt.mnEnd ) in ImplHandleIMEConfirmReconvertString()