Home | History | Annotate | Download | only in pdfwindow

Lines Matching refs:ptScroll

1552 	CPDF_Point ptScroll = m_pContents->GetScrollPos();

1558 CPDF_Point ptNew = ptScroll;
1572 if (ptNew.y != ptScroll.y)
1623 CPDF_Point ptScroll = m_pContents->GetScrollPos();
1624 CPDF_Point ptOld = ptScroll;
1626 if (ptScroll.y > sInfo.fContentMax)
1627 ptScroll.y = sInfo.fContentMax;
1628 if (ptScroll.y < sInfo.fContentMin + sInfo.fPlateWidth)
1629 ptScroll.y = sInfo.fContentMin + sInfo.fPlateWidth;
1630 if (ptScroll.y < sInfo.fContentMin)
1631 ptScroll.y = sInfo.fContentMin;
1633 if (ptOld.y != ptScroll.y)
1635 m_pContentsBar->OnNotify(this, PNM_SETSCROLLPOS, SBT_VSCROLL, (FX_INTPTR)&ptScroll.y);
1637 m_pContents->OnNotify(this, PNM_SCROLLWINDOW, SBT_VSCROLL, (FX_INTPTR)&ptScroll.y);
1669 CPDF_Point ptScroll = m_pContents->GetScrollPos();
1670 m_pContentsBar->OnNotify(this, PNM_SETSCROLLPOS, SBT_VSCROLL, (FX_INTPTR)&ptScroll.y);
1681 CPDF_Point ptScroll = m_pContents->GetScrollPos();
1682 m_pContentsBar->OnNotify(this, PNM_SETSCROLLPOS, SBT_VSCROLL, (FX_INTPTR)&ptScroll.y);