Lines Matching refs:rOut
251 void SdrGluePoint::Draw(OutputDevice& rOut, const SdrObject* pObj) const in Draw() argument
256 bool bMapMerk=rOut.IsMapModeEnabled(); in Draw()
258 aPt=rOut.LogicToPixel(aPt); in Draw()
259 rOut.EnableMapMode(sal_False); in Draw()
262 rOut.SetLineColor( aBackPenColor ); in Draw()
263 rOut.DrawLine(Point(x-2,y-3),Point(x+3,y+2)); in Draw()
264 rOut.DrawLine(Point(x-3,y-2),Point(x+2,y+3)); in Draw()
265 rOut.DrawLine(Point(x-3,y+2),Point(x+2,y-3)); in Draw()
266 rOut.DrawLine(Point(x-2,y+3),Point(x+3,y-2)); in Draw()
272 case SDRHORZALIGN_LEFT : rOut.DrawLine(Point(x-3,y-1),Point(x-3,y+1)); break; in Draw()
273 case SDRHORZALIGN_RIGHT : rOut.DrawLine(Point(x+3,y-1),Point(x+3,y+1)); break; in Draw()
278 case SDRVERTALIGN_TOP : rOut.DrawLine(Point(x-1,y-3),Point(x+1,y-3)); break; in Draw()
279 case SDRVERTALIGN_BOTTOM: rOut.DrawLine(Point(x-1,y+3),Point(x+1,y+3)); break; in Draw()
283 rOut.SetLineColor( aForePenColor ); in Draw()
284 rOut.DrawLine(Point(x-2,y-2),Point(x+2,y+2)); in Draw()
285 rOut.DrawLine(Point(x-2,y+2),Point(x+2,y-2)); in Draw()
286 rOut.EnableMapMode(bMapMerk); in Draw()
304 FASTBOOL SdrGluePoint::IsHit(const Point& rPnt, const OutputDevice& rOut, const SdrObject* pObj) co… in IsHit() argument
307 Size aSiz=rOut.PixelToLogic(Size(3,3)); in IsHit()
389 sal_uInt16 SdrGluePointList::HitTest(const Point& rPnt, const OutputDevice& rOut, const SdrObject* … in HitTest() argument
400 if (pGP->IsHit(rPnt,rOut,pObj)) nRet=nNum; in HitTest()