Lines Matching refs:rect
65 CRect rect; in SetScrollPos() local
66 GetClientRectSB(m_attachWnd, rect); in SetScrollPos()
67 CSize windowSize(rect.Width(), rect.Height()); in SetScrollPos()
393 CRect rect; in UpdateScrollInfo() local
394 GetClientRectSB(m_attachWnd, rect); in UpdateScrollInfo()
395 CSize windowSize(rect.Width(), rect.Height()); in UpdateScrollInfo()
456 void CScrollHelper::GetClientRectSB(CWnd* pWnd, CRect& rect) in GetClientRectSB() argument
464 pWnd->GetClientRect(&rect); in GetClientRectSB()
472 rect.bottom += cySB; in GetClientRectSB()
477 rect.right += cxSB; in GetClientRectSB()
480 if (rect.Width() < m_displaySize.cx) in GetClientRectSB()
482 rect.bottom -= cySB; in GetClientRectSB()
485 if (rect.Height() < m_displaySize.cy) in GetClientRectSB()
487 rect.right -= cxSB; in GetClientRectSB()
489 if (rect.Width() < m_displaySize.cx) in GetClientRectSB()
491 rect.bottom -= cySB; in GetClientRectSB()