Lines Matching refs:aOutPixSz
123 Size aOutPixSz = GetOutputSizePixel(); in ResizeScrollBars() local
124 if ( aOutPixSz.Width() == 0 || aOutPixSz.Height() == 0 ) in ResizeScrollBars()
125 return aOutPixSz; in ResizeScrollBars()
127 aOutPixSz.Height() -= m_aReportWindow.getRulerHeight(); in ResizeScrollBars()
138 if ( aOutPixSz.Width() < m_aTotalPixelSize.Width() && !bHVisible ) in ResizeScrollBars()
141 aOutPixSz.Height() -= nScrSize; in ResizeScrollBars()
146 if ( aOutPixSz.Height() < m_aTotalPixelSize.Height() && !bVVisible ) in ResizeScrollBars()
149 aOutPixSz.Width() -= nScrSize; in ResizeScrollBars()
156 aOutPixSz.Height() += m_aReportWindow.getRulerHeight(); in ResizeScrollBars()
165 …m_aCornerWin.SetPosSizePixel(Point(aOutPixSz.Width(), aOutPixSz.Height()), Size(nScrSize, nScrSize… in ResizeScrollBars()
175 const sal_Int32 nNewWidth = aOutPixSz.Width() - aOffset.X() - (long)aStartWidth; in ResizeScrollBars()
176 …lcl_setScrollBar(nNewWidth,Point( (long)aStartWidth + aOffset.X(), aOutPixSz.Height() ),Size( nNew… in ResizeScrollBars()
179 const sal_Int32 nNewHeight = aOutPixSz.Height() - m_aReportWindow.getRulerHeight(); in ResizeScrollBars()
180 …lcl_setScrollBar(nNewHeight,Point( aOutPixSz.Width(), m_aReportWindow.getRulerHeight() ),Size( nSc… in ResizeScrollBars()
183 return aOutPixSz; in ResizeScrollBars()