Lines Matching refs:m_pHorzScroll
167 ,m_pHorzScroll( NULL ) in DBG_NAME()
217 ,m_pHorzScroll( NULL ) in OFieldDescControl()
238 m_pHorzScroll = new ScrollBar(this, WB_HSCROLL | WB_REPEAT | WB_DRAG); in Contruct()
240 m_pHorzScroll->SetScrollHdl(LINK(this, OFieldDescControl, OnScroll)); in Contruct()
242 m_pHorzScroll->Show(); in Contruct()
245 m_pHorzScroll->EnableClipSiblings(); in Contruct()
249 m_pHorzScroll->SetLineSize(1); in Contruct()
250 m_pHorzScroll->SetPageSize(1); in Contruct()
265 ::std::auto_ptr<Window> aTemp(m_pHorzScroll); in ~OFieldDescControl()
266 m_pHorzScroll = NULL; in ~OFieldDescControl()
353 long nHScrollHeight = m_pHorzScroll->GetSizePixel().Height(); in CheckScrollBars()
369 if (m_pHorzScroll) in CheckScrollBars()
370 lMaxXPosition += m_pHorzScroll->GetThumbPos() * HSCROLL_STEP; in CheckScrollBars()
422 m_pHorzScroll->Show(); in CheckScrollBars()
423 m_pHorzScroll->SetRangeMax((lMaxXPosition - lMaxXAvailable + HSCROLL_STEP - 1 )/HSCROLL_STEP); in CheckScrollBars()
426 …m_pHorzScroll->SetPosSizePixel( Point(0, nNewVHeight), Size(bNeedVScrollBar ? nNewHWidth : szOvera… in CheckScrollBars()
430 m_pHorzScroll->Hide(); in CheckScrollBars()
431 m_pHorzScroll->SetRangeMax(0); in CheckScrollBars()
432 m_pHorzScroll->SetThumbPos(0); in CheckScrollBars()
458 if (m_nOldHThumb != m_pHorzScroll->GetThumbPos()) in ScrollAllAggregates()
460 nDeltaX = (m_nOldHThumb - m_pHorzScroll->GetThumbPos()) * HSCROLL_STEP; in ScrollAllAggregates()
461 m_nOldHThumb = m_pHorzScroll->GetThumbPos(); in ScrollAllAggregates()
879 m_pHorzScroll->SetZOrder(NULL, WINDOW_ZORDER_FIRST); in ArrangeAggregates()