Home
last modified time | relevance | path

Searched refs:aWheelEvt (Results 1 – 3 of 3) sorted by relevance

/trunk/main/vcl/win/source/window/
H A Dsalframe.cxx3533 SalWheelMouseEvent aWheelEvt; in ImplHandleWheelMsg() local
3534 aWheelEvt.mnTime = GetMessageTime(); in ImplHandleWheelMsg()
3535 aWheelEvt.mnX = aWinPt.x; in ImplHandleWheelMsg()
3536 aWheelEvt.mnY = aWinPt.y; in ImplHandleWheelMsg()
3537 aWheelEvt.mnCode = 0; in ImplHandleWheelMsg()
3538 aWheelEvt.mnDelta = (short)HIWORD( wParam ); in ImplHandleWheelMsg()
3539 aWheelEvt.mnNotchDelta = aWheelEvt.mnDelta/WHEEL_DELTA; in ImplHandleWheelMsg()
3540 if( aWheelEvt.mnNotchDelta == 0 ) in ImplHandleWheelMsg()
3542 if( aWheelEvt.mnDelta > 0 ) in ImplHandleWheelMsg()
3543 aWheelEvt.mnNotchDelta = 1; in ImplHandleWheelMsg()
[all …]
/trunk/main/vcl/os2/source/window/
H A Dsalframe.cxx2555 SalWheelMouseEvent aWheelEvt; in ImplHandleWheelMsg() local
2556 aWheelEvt.mnTime = WinQueryMsgTime( pFrame->mhAB ); in ImplHandleWheelMsg()
2557 aWheelEvt.mnX = aPt.x; in ImplHandleWheelMsg()
2558 aWheelEvt.mnY = aPt.y; in ImplHandleWheelMsg()
2559 aWheelEvt.mnCode = 0; in ImplHandleWheelMsg()
2561 aWheelEvt.mnDelta = bNeg ? -120 : 120; in ImplHandleWheelMsg()
2562 aWheelEvt.mnNotchDelta = bNeg ? -1 : 1; in ImplHandleWheelMsg()
2564 aWheelEvt.mnScrollLines = SAL_WHEELMOUSE_EVENT_PAGESCROLL; in ImplHandleWheelMsg()
2566 aWheelEvt.mnScrollLines = 1; in ImplHandleWheelMsg()
2569 aWheelEvt.mbHorz = TRUE; in ImplHandleWheelMsg()
[all …]
/trunk/main/vcl/unx/generic/window/
H A Dsalframe.cxx3075 SalWheelMouseEvent aWheelEvt; in HandleMouseEvent() local
3076 aWheelEvt.mnTime = pEvent->xbutton.time; in HandleMouseEvent()
3077 aWheelEvt.mnX = pEvent->xbutton.x; in HandleMouseEvent()
3078 aWheelEvt.mnY = pEvent->xbutton.y; in HandleMouseEvent()
3079 aWheelEvt.mnDelta = bIncrement ? 120 : -120; in HandleMouseEvent()
3080 aWheelEvt.mnNotchDelta = bIncrement ? 1 : -1; in HandleMouseEvent()
3081 aWheelEvt.mnScrollLines = nLines; in HandleMouseEvent()
3082 aWheelEvt.mnCode = sal_GetCode( pEvent->xbutton.state ); in HandleMouseEvent()
3083 aWheelEvt.mbHorz = bHoriz; in HandleMouseEvent()
3089 aWheelEvt.mnX = nWidth_-1-aWheelEvt.mnX; in HandleMouseEvent()
[all …]