Lines Matching refs:aCurPos
933 Point aCurPos, aPrevPos; in DoScroll() local
942 aCurPos.X() = pHorScroll->GetThumbPos(); in DoScroll()
943 aCurPos.Y() = pVerScroll->GetThumbPos(); in DoScroll()
944 aPrevPos = aCurPos; in DoScroll()
964 aCurPos.Y() -= nVLine; in DoScroll()
987 aCurPos.Y() += nVLine; in DoScroll()
990 aCurPos.X() -= nHLine; in DoScroll()
993 aCurPos.X() += nHLine; in DoScroll()
1005 aCurPos.Y() = nVRange; in DoScroll()
1009 aCurPos.Y() -= nVPage; in DoScroll()
1028 aCurPos.Y() = 0; in DoScroll()
1032 aCurPos.Y() += nVPage; in DoScroll()
1048 aCurPos.Y() = 0; in DoScroll()
1049 aCurPos.X() = 0; in DoScroll()
1068 aCurPos.Y() = nVRange; in DoScroll()
1069 aCurPos.X() = nHRange; in DoScroll()
1076 if( aCurPos.Y() > (nVRange-nVPage) ) in DoScroll()
1077 aCurPos.Y() = (nVRange-nVPage); in DoScroll()
1078 if( aCurPos.Y() < 0 ) in DoScroll()
1079 aCurPos.Y() = 0; in DoScroll()
1080 if( aCurPos.X() > (nHRange-nHPage) ) in DoScroll()
1081 aCurPos.X() = (nHRange-nHPage); in DoScroll()
1082 if( aCurPos.X() < 0 ) in DoScroll()
1083 aCurPos.X() = 0; in DoScroll()
1087 if( aCurPos.Y() != aPrevPos.Y() ) in DoScroll()
1089 pVerScroll->SetThumbPos( aCurPos.Y() ); in DoScroll()
1090 pPreview->SetYOffset( aCurPos.Y() ); in DoScroll()
1094 if( aCurPos.X() != aPrevPos.X() ) in DoScroll()
1096 pHorScroll->SetThumbPos( aCurPos.X() ); in DoScroll()
1097 pPreview->SetXOffset( aCurPos.X() ); in DoScroll()