Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_IconList.cpp244 CPDF_Point ptScroll = GetScrollPos(); in ScrollToItem() local
247 ptScroll.y = rcOrigin.top; in ScrollToItem()
249 ptScroll.y = rcOrigin.bottom + rcClient.Height(); in ScrollToItem()
252 SetScrollPos(ptScroll); in ScrollToItem()
257 (intptr_t)&ptScroll.y); in ScrollToItem()
467 CPDF_Point ptScroll = m_pListContent->GetScrollPos(); in OnMouseWheel() local
472 CPDF_Point ptNew = ptScroll; in OnMouseWheel()
486 if (ptNew.y != ptScroll.y) { in OnMouseWheel()
DPWL_Note.cpp1302 CPDF_Point ptScroll = m_pContents->GetScrollPos(); in OnMouseWheel() local
1307 CPDF_Point ptNew = ptScroll; in OnMouseWheel()
1321 if (ptNew.y != ptScroll.y) { in OnMouseWheel()
1369 CPDF_Point ptScroll = m_pContents->GetScrollPos(); in OnNotify() local
1370 CPDF_Point ptOld = ptScroll; in OnNotify()
1372 if (ptScroll.y > sInfo.fContentMax) in OnNotify()
1373 ptScroll.y = sInfo.fContentMax; in OnNotify()
1374 if (ptScroll.y < sInfo.fContentMin + sInfo.fPlateWidth) in OnNotify()
1375 ptScroll.y = sInfo.fContentMin + sInfo.fPlateWidth; in OnNotify()
1376 if (ptScroll.y < sInfo.fContentMin) in OnNotify()
[all …]
DPWL_Edit.cpp984 CPDF_Point ptScroll = GetScrollPos(); in OnMouseWheel() local
987 ptScroll.y += GetFontSize(); in OnMouseWheel()
989 ptScroll.y -= GetFontSize(); in OnMouseWheel()
991 SetScrollPos(ptScroll); in OnMouseWheel()