Lines Matching refs:aTotalOutputSize
174 Size aTotalOutputSize = GetOutputSizePixel(); in Resize() local
179 Point( 0, aTotalOutputSize.Height()-nHScrollHeight ), in Resize()
180 Size( aTotalOutputSize.Width()-nVScrollWidth, nHScrollHeight ) in Resize()
184 Point( aTotalOutputSize.Width()-nVScrollWidth, 0 ), in Resize()
185 Size( nVScrollWidth, aTotalOutputSize.Height()-nHScrollHeight ) in Resize()
189 Point( aTotalOutputSize.Width() - nVScrollWidth, aTotalOutputSize.Height() - nHScrollHeight), in Resize()
193 GetHScrollBar()->SetPageSize( aTotalOutputSize.Width() ); in Resize()
194 GetHScrollBar()->SetVisibleSize( aTotalOutputSize.Width() ); in Resize()
196 GetVScrollBar()->SetPageSize( aTotalOutputSize.Height() ); in Resize()
197 GetVScrollBar()->SetVisibleSize( aTotalOutputSize.Height() ); in Resize()
201 if (m_pTableView->GetScrollOffset().X() + aTotalOutputSize.Width() > lRange) in Resize()
202 …GetHScrollBar()->SetRangeMax(m_pTableView->GetScrollOffset().X() + aTotalOutputSize.Width() + GetH… in Resize()
205 if (m_pTableView->GetScrollOffset().Y() + aTotalOutputSize.Height() > lRange) in Resize()
206 …GetVScrollBar()->SetRangeMax(m_pTableView->GetScrollOffset().Y() + aTotalOutputSize.Height() + Get… in Resize()
208 …pTableView->SetPosSizePixel(Point( 0, 0 ),Size( aTotalOutputSize.Width()-nVScrollWidth, aTotalOutp… in Resize()