Lines Matching refs:mpVerticalScrollBar
68 mpVerticalScrollBar(new ScrollBar(this)) in Deck()
79 mpVerticalScrollBar->SetScrollHdl(LINK(this, Deck, HandleVerticalScrollBarChange)); in Deck()
85 mpVerticalScrollBar->SetText(A2S("VerticalScrollBar")); in Deck()
125 mpVerticalScrollBar.reset(); in Dispose()
252 if ( ! mpVerticalScrollBar) in ProcessWheelEvent()
254 if ( ! mpVerticalScrollBar->IsVisible()) in ProcessWheelEvent()
260 if (rEvent.GetWindow() != mpVerticalScrollBar.get()) in ProcessWheelEvent()
274 mpVerticalScrollBar->DoScroll( in ProcessWheelEvent()
275 mpVerticalScrollBar->GetThumbPos() - nDelta); in ProcessWheelEvent()
309 *mpVerticalScrollBar); in RequestLayout()
325 if (mpVerticalScrollBar && mpVerticalScrollBar->IsVisible()) in ShowPanel()
337 sal_Int32 nNewThumbPos (mpVerticalScrollBar->GetThumbPos()); in ShowPanel()
338 if (nPanelBottom >= nNewThumbPos+mpVerticalScrollBar->GetVisibleSize()) in ShowPanel()
339 nNewThumbPos = nPanelBottom - mpVerticalScrollBar->GetVisibleSize(); in ShowPanel()
343 mpVerticalScrollBar->SetThumbPos(nNewThumbPos); in ShowPanel()
413 const sal_Int32 nYOffset (-mpVerticalScrollBar->GetThumbPos()); in IMPL_LINK()