Lines Matching refs:aWheelEvt

3539         SalWheelMouseEvent aWheelEvt;  in ImplHandleWheelMsg()  local
3540 aWheelEvt.mnTime = GetMessageTime(); in ImplHandleWheelMsg()
3541 aWheelEvt.mnX = aWinPt.x; in ImplHandleWheelMsg()
3542 aWheelEvt.mnY = aWinPt.y; in ImplHandleWheelMsg()
3543 aWheelEvt.mnCode = 0; in ImplHandleWheelMsg()
3544 aWheelEvt.mnDelta = (short)HIWORD( wParam ); in ImplHandleWheelMsg()
3545 aWheelEvt.mnNotchDelta = aWheelEvt.mnDelta/WHEEL_DELTA; in ImplHandleWheelMsg()
3546 if( aWheelEvt.mnNotchDelta == 0 ) in ImplHandleWheelMsg()
3548 if( aWheelEvt.mnDelta > 0 ) in ImplHandleWheelMsg()
3549 aWheelEvt.mnNotchDelta = 1; in ImplHandleWheelMsg()
3550 else if( aWheelEvt.mnDelta < 0 ) in ImplHandleWheelMsg()
3551 aWheelEvt.mnNotchDelta = -1; in ImplHandleWheelMsg()
3557 aWheelEvt.mnScrollLines = SAL_WHEELMOUSE_EVENT_PAGESCROLL; in ImplHandleWheelMsg()
3559 aWheelEvt.mnScrollLines = aSalShlData.mnWheelScrollLines; in ImplHandleWheelMsg()
3560 aWheelEvt.mbHorz = FALSE; in ImplHandleWheelMsg()
3564 aWheelEvt.mnScrollLines = aSalShlData.mnWheelScrollChars; in ImplHandleWheelMsg()
3565 aWheelEvt.mbHorz = TRUE; in ImplHandleWheelMsg()
3567 aWheelEvt.mnDelta *= -1; in ImplHandleWheelMsg()
3568 aWheelEvt.mnNotchDelta *= -1; in ImplHandleWheelMsg()
3572 aWheelEvt.mnCode |= KEY_SHIFT; in ImplHandleWheelMsg()
3574 aWheelEvt.mnCode |= KEY_MOD1; in ImplHandleWheelMsg()
3576 aWheelEvt.mnCode |= KEY_MOD2; in ImplHandleWheelMsg()
3580 aWheelEvt.mnX = pFrame->maGeometry.nWidth-1-aWheelEvt.mnX; in ImplHandleWheelMsg()
3582 nRet = pFrame->CallCallback( SALEVENT_WHEELMOUSE, &aWheelEvt ); in ImplHandleWheelMsg()