Lines Matching refs:mnMinZoom
51 sal_uInt16 mnMinZoom; member
64 mnMinZoom( 0 ), in SvxZoomSliderControl_Impl()
98 return mpImpl->mnMinZoom;; in Offset2Zoom()
125 const long nFirstHalfRange = mpImpl->mnSliderCenter - mpImpl->mnMinZoom; in Offset2Zoom()
129 … nRet = mpImpl->mnMinZoom + sal_uInt16( nOffsetToSliderLeft * nZoomPerSliderPixel / 1000 ); in Offset2Zoom()
142 if ( nRet < mpImpl->mnMinZoom ) in Offset2Zoom()
143 nRet = mpImpl->mnMinZoom; in Offset2Zoom()
160 nCurrentZoom = nCurrentZoom - mpImpl->mnMinZoom; in Zoom2Offset()
161 const long nFirstHalfRange = mpImpl->mnSliderCenter - mpImpl->mnMinZoom; in Zoom2Offset()
210 mpImpl->mnMinZoom = static_cast<const SvxZoomSliderItem*>( pState )->GetMinZoom(); in StateChanged()
216 …mpImpl->mnSliderCenter = mpImpl->mnMinZoom + (sal_uInt16)((mpImpl->mnMaxZoom - mpImpl->mnMinZoom) … in StateChanged()
219 DBG_ASSERT( mpImpl->mnMinZoom <= mpImpl->mnCurrentZoom && in StateChanged()
220 mpImpl->mnMinZoom < mpImpl->mnSliderCenter && in StateChanged()
371 if ( mpImpl->mnCurrentZoom < mpImpl->mnMinZoom ) in MouseButtonDown()
372 mpImpl->mnCurrentZoom = mpImpl->mnMinZoom; in MouseButtonDown()