Lines Matching refs:nSlideIndex

114         const sal_Int32 nSlideIndex,
117 css::awt::Rectangle GetBoundingBox (const sal_Int32 nSlideIndex) const;
148 sal_Int32 GetRow (const sal_Int32 nSlideIndex) const;
149 sal_Int32 GetColumn (const sal_Int32 nSlideIndex) const;
169 const sal_Int32 nSlideIndex,
174 const sal_Int32 nSlideIndex,
604 const sal_Int32 nSlideIndex (mpLayout->GetSlideIndexForPosition(aPosition)); in mouseReleased() local
606 if (nSlideIndex == mnSlideIndexMousePressed && mnSlideIndexMousePressed >= 0) in mouseReleased()
612 GotoSlide(nSlideIndex); in mouseReleased()
619 GotoSlide(nSlideIndex); in mouseReleased()
657 sal_Int32 nSlideIndex (mpLayout->GetSlideIndexForPosition(aPosition)); in mouseMoved() local
659 if (nSlideIndex < 0) in mouseMoved()
662 if (nSlideIndex < 0) in mouseMoved()
664 mpMouseOverManager->SetSlide(nSlideIndex, awt::Rectangle(0,0,0,0)); in mouseMoved()
669 nSlideIndex, in mouseMoved()
670 mpLayout->GetBoundingBox(nSlideIndex)); in mouseMoved()
723 sal_Int32 nSlideIndex) in notifyPreviewCreation() argument
728 awt::Rectangle aBBox (mpLayout->GetBoundingBox(nSlideIndex)); in notifyPreviewCreation()
999 Reference<rendering::XBitmap> PresenterSlideSorter::GetPreview (const sal_Int32 nSlideIndex) in GetPreview() argument
1001 if (nSlideIndex < 0 || nSlideIndex>=mpLayout->mnSlideCount) in GetPreview()
1004 return mxPreviewCache->getSlidePreview(nSlideIndex, mxPane->getCanvas()); in GetPreview()
1015 const sal_Int32 nSlideIndex) in PaintPreview() argument
1023 mpLayout->GetBoundingBox(nSlideIndex))) in PaintPreview()
1028 Reference<rendering::XBitmap> xPreview (GetPreview(nSlideIndex)); in PaintPreview()
1032 mpLayout->GetPoint(nSlideIndex, -1, -1))); in PaintPreview()
1058 if (nSlideIndex == mnCurrentSlideIndex) in PaintPreview()
1103 mpMouseOverManager->Paint(nSlideIndex, mxCanvas, xClip); in PaintPreview()
1197 void PresenterSlideSorter::GotoSlide (const sal_Int32 nSlideIndex) in GotoSlide() argument
1199 mxSlideShowController->gotoSlideIndex(nSlideIndex); in GotoSlide()
1518 const sal_Int32 nSlideIndex, in GetPoint() argument
1522 sal_Int32 nColumn (GetColumn(nSlideIndex)); in GetPoint()
1523 sal_Int32 nRow (GetRow(nSlideIndex)); in GetPoint()
1550 awt::Rectangle PresenterSlideSorter::Layout::GetBoundingBox (const sal_Int32 nSlideIndex) const in GetBoundingBox()
1552 const geometry::RealPoint2D aWindowPosition(GetWindowPosition(GetPoint(nSlideIndex, -1, -1))); in GetBoundingBox()
1570 const sal_Int32 nSlideIndex (GetIndex(nRow, nColumn)); in ForAllVisibleSlides() local
1571 if (nSlideIndex >= mnSlideCount) in ForAllVisibleSlides()
1573 rAction(nSlideIndex); in ForAllVisibleSlides()
1697 sal_Int32 PresenterSlideSorter::Layout::GetRow (const sal_Int32 nSlideIndex) const in GetRow()
1700 return nSlideIndex % mnRowCount; in GetRow()
1702 return nSlideIndex / mnColumnCount; in GetRow()
1708 sal_Int32 PresenterSlideSorter::Layout::GetColumn (const sal_Int32 nSlideIndex) const in GetColumn()
1711 return nSlideIndex / mnRowCount; in GetColumn()
1713 return nSlideIndex % mnColumnCount; in GetColumn()
1762 const sal_Int32 nSlideIndex, in Paint() argument
1766 if (nSlideIndex != mnSlideIndex) in Paint()
1811 const sal_Int32 nSlideIndex, in SetSlide() argument
1814 if (mnSlideIndex == nSlideIndex) in SetSlide()
1821 mnSlideIndex = nSlideIndex; in SetSlide()
1823 if (nSlideIndex >= 0) in SetSlide()
1829 … Reference<beans::XPropertySet> xSlideProperties(mxSlides->getByIndex(nSlideIndex), UNO_QUERY); in SetSlide()
1834 msText = A2S("Slide ") + OUString::valueOf(nSlideIndex + 1); in SetSlide()