Lines Matching refs:m_attachWnd

15     m_attachWnd   = NULL;  in CScrollHelper()
28 m_attachWnd = pWnd; in AttachWnd()
33 m_attachWnd = NULL; in DetachWnd()
40 if ( m_attachWnd != NULL && ::IsWindow(m_attachWnd->m_hWnd) ) in SetDisplaySize()
62 if (m_attachWnd == NULL) in SetScrollPos()
66 GetClientRectSB(m_attachWnd, rect); in SetScrollPos()
73 m_attachWnd->SetScrollPos(SB_HORZ, m_scrollPos.cx, redraw); in SetScrollPos()
76 m_attachWnd->ScrollWindow(0, -deltaPos); in SetScrollPos()
84 m_attachWnd->SetScrollPos(SB_VERT, m_scrollPos.cy, redraw); in SetScrollPos()
88 m_attachWnd->ScrollWindow(0, -deltaPos); in SetScrollPos()
95 if ( m_attachWnd == NULL ) in ScrollToOrigin()
104 m_attachWnd->SetScrollPos(SB_HORZ, m_scrollPos.cx, TRUE); in ScrollToOrigin()
105 m_attachWnd->ScrollWindow(-deltaPos, 0); in ScrollToOrigin()
115 m_attachWnd->SetScrollPos(SB_VERT, m_scrollPos.cy, TRUE); in ScrollToOrigin()
116 m_attachWnd->ScrollWindow(0, -deltaPos); in ScrollToOrigin()
123 if ( m_attachWnd == NULL ) in OnHScroll()
186 m_attachWnd->SetScrollPos(SB_HORZ, m_scrollPos.cx, TRUE); in OnHScroll()
187 m_attachWnd->ScrollWindow(-deltaPos, 0); in OnHScroll()
193 if ( m_attachWnd == NULL ) in OnVScroll()
256 m_attachWnd->SetScrollPos(SB_VERT, m_scrollPos.cy, TRUE); in OnVScroll()
257 m_attachWnd->ScrollWindow(0, -deltaPos); in OnVScroll()
263 if ( m_attachWnd == NULL ) in OnMouseWheel()
268 m_attachWnd->GetScrollRange(SB_VERT, &scrollMin, &scrollMax); in OnMouseWheel()
365 ASSERT( m_attachWnd != NULL ); in Get32BitScrollPos()
368 hWndScroll = m_attachWnd->m_hWnd; in Get32BitScrollPos()
384 if ( m_attachWnd == NULL ) in UpdateScrollInfo()
394 GetClientRectSB(m_attachWnd, rect); in UpdateScrollInfo()
414 m_attachWnd->ScrollWindow(deltaPos.cx, deltaPos.cy); in UpdateScrollInfo()
433 deltaPos = m_attachWnd->GetScrollPos(bar) - scrollPos; in UpdateScrollBar()
440 deltaPos = m_attachWnd->GetScrollPos(bar); in UpdateScrollBar()
451 m_attachWnd->SetScrollInfo(bar, &si, TRUE); in UpdateScrollBar()