Lines Matching refs:aWheelEvt
2559 SalWheelMouseEvent aWheelEvt; in ImplHandleWheelMsg() local
2560 aWheelEvt.mnTime = WinQueryMsgTime( pFrame->mhAB ); in ImplHandleWheelMsg()
2561 aWheelEvt.mnX = aPt.x; in ImplHandleWheelMsg()
2562 aWheelEvt.mnY = aPt.y; in ImplHandleWheelMsg()
2563 aWheelEvt.mnCode = 0; in ImplHandleWheelMsg()
2565 aWheelEvt.mnDelta = bNeg ? -120 : 120; in ImplHandleWheelMsg()
2566 aWheelEvt.mnNotchDelta = bNeg ? -1 : 1; in ImplHandleWheelMsg()
2568 aWheelEvt.mnScrollLines = SAL_WHEELMOUSE_EVENT_PAGESCROLL; in ImplHandleWheelMsg()
2570 aWheelEvt.mnScrollLines = 1; in ImplHandleWheelMsg()
2573 aWheelEvt.mbHorz = TRUE; in ImplHandleWheelMsg()
2577 aWheelEvt.mnCode |= KEY_SHIFT; in ImplHandleWheelMsg()
2579 aWheelEvt.mnCode |= KEY_MOD1; in ImplHandleWheelMsg()
2581 aWheelEvt.mnCode |= KEY_MOD2; in ImplHandleWheelMsg()
2583 nRet = pFrame->CallCallback( SALEVENT_WHEELMOUSE, &aWheelEvt ); in ImplHandleWheelMsg()