Lines Matching refs:pOut

288 SdrPaintView::SdrPaintView(SdrModel* pModel1, OutputDevice* pOut)  in SdrPaintView()  argument
304 if(pOut) in SdrPaintView()
306 AddWindowToPaintView(pOut); in SdrPaintView()
486 sal_uInt16 SdrPaintView::ImpGetMinMovLogic(short nMinMov, const OutputDevice* pOut) const in ImpGetMinMovLogic()
489 if (pOut==NULL) in ImpGetMinMovLogic()
491 pOut = GetFirstOutputDevice(); in ImpGetMinMovLogic()
493 if (pOut!=NULL) { in ImpGetMinMovLogic()
494 return short(-pOut->PixelToLogic(Size(nMinMov,0)).Width()); in ImpGetMinMovLogic()
500 sal_uInt16 SdrPaintView::ImpGetHitTolLogic(short nHitTol, const OutputDevice* pOut) const in ImpGetHitTolLogic()
503 if (pOut==NULL) in ImpGetHitTolLogic()
505 pOut = GetFirstOutputDevice(); in ImpGetHitTolLogic()
507 if (pOut!=NULL) { in ImpGetHitTolLogic()
508 return short(-pOut->PixelToLogic(Size(nHitTol,0)).Width()); in ImpGetHitTolLogic()
769 void SdrPaintView::CompleteRedraw(OutputDevice* pOut, const Region& rReg, sdr::contact::ViewObjectC… in CompleteRedraw() argument
796 if(pOut && OUTDEV_WINDOW == pOut->GetOutDevType()) in CompleteRedraw()
798 Window* pWindow = (Window*)pOut; in CompleteRedraw()
840 SdrPaintWindow* pPaintWindow = BeginCompleteRedraw(pOut); in CompleteRedraw()
902 SdrPaintWindow* SdrPaintView::BeginCompleteRedraw(OutputDevice* pOut) in BeginCompleteRedraw() argument
904 OSL_ENSURE(pOut, "SdrPaintView::BeginCompleteRedraw: No OutDev (!)"); in BeginCompleteRedraw()
905 SdrPaintWindow* pPaintWindow = FindPaintWindow(*pOut); in BeginCompleteRedraw()
917 pPaintWindow = new SdrPaintWindow(*this, *pOut); in BeginCompleteRedraw()
968 SdrPaintWindow* SdrPaintView::BeginDrawLayers(OutputDevice* pOut, const Region& rReg, bool bDisable… in BeginDrawLayers() argument
971 SdrPaintWindow* pPaintWindow = BeginCompleteRedraw(pOut); in BeginDrawLayers()
990 if(pOut && OUTDEV_WINDOW == pOut->GetOutDevType() && !bDisableIntersect) in BeginDrawLayers()
992 Window* pWindow = (Window*)pOut; in BeginDrawLayers()
1433 void SdrPaintView::VisAreaChanged(const OutputDevice* pOut) in VisAreaChanged() argument
1437 if (pOut) in VisAreaChanged()
1439 SdrPageWindow* pWindow = mpPageView->FindPageWindow(*((OutputDevice*)pOut)); in VisAreaChanged()