Lines Matching refs:mxSlides
73 Reference<container::XIndexAccess> mxSlides; member in sd::presenter::PresenterPreviewCache::PresenterCacheContext
288 : mxSlides(), in PresenterCacheContext()
310 mxSlides = rxSlides; in SetDocumentSlides()
333 if (mxSlides.is() && mnLastVisibleSlideIndex >= mxSlides->getCount()) in SetVisibleSlideRange()
334 mnLastVisibleSlideIndex = mxSlides->getCount() - 1; in SetVisibleSlideRange()
372 if ( ! mxSlides.is()) in NotifyPreviewCreation()
374 const sal_Int32 nCount(mxSlides->getCount()); in NotifyPreviewCreation()
427 if ( ! mxSlides.is()) in GetEntryList()
431 const sal_Int32 nLastIndex (bVisible ? mnLastVisibleSlideIndex : mxSlides->getCount()-1); in GetEntryList()
449 if ( ! mxSlides.is()) in GetPriority()
452 const sal_Int32 nCount (mxSlides->getCount()); in GetPriority()
481 if ( ! mxSlides.is()) in GetPage()
483 if (nSlideIndex < 0 || nSlideIndex >= mxSlides->getCount()) in GetPage()
486 Reference<drawing::XDrawPage> xSlide (mxSlides->getByIndex(nSlideIndex), UNO_QUERY); in GetPage()