Lines Matching refs:ptNew
1556 CPDF_Point ptNew = ptScroll; in OnMouseWheel() local
1559 ptNew.y += 30; in OnMouseWheel()
1561 ptNew.y -= 30; in OnMouseWheel()
1563 if (ptNew.y > rcScroll.top) in OnMouseWheel()
1564 ptNew.y = rcScroll.top; in OnMouseWheel()
1565 if (ptNew.y < rcScroll.bottom + rcContents.Height()) in OnMouseWheel()
1566 ptNew.y = rcScroll.bottom + rcContents.Height(); in OnMouseWheel()
1567 if (ptNew.y < rcScroll.bottom) in OnMouseWheel()
1568 ptNew.y = rcScroll.bottom; in OnMouseWheel()
1570 if (ptNew.y != ptScroll.y) in OnMouseWheel()
1573 m_pContents->OnNotify(this, PNM_SCROLLWINDOW, SBT_VSCROLL, (FX_INTPTR)&ptNew.y); in OnMouseWheel()
1574 m_pContentsBar->OnNotify(this, PNM_SETSCROLLPOS, SBT_VSCROLL, (FX_INTPTR)&ptNew.y); in OnMouseWheel()