Lines Matching refs:Point

219 sal_uInt16 HeaderBar::ImplHitTest( const Point& rPos,  in ImplHitTest()
288 Point aStartPos = aRect1.Center(); in ImplInvertDrag()
289 Point aEndPos = aStartPos; in ImplInvertDrag()
309 DrawLine( Point( aEndPos.X()+1, aEndPos.Y()-3 ), in ImplInvertDrag()
310 Point( aEndPos.X()+1, aEndPos.Y()+3 ) ); in ImplInvertDrag()
311 DrawLine( Point( aEndPos.X()+2, aEndPos.Y()-2 ), in ImplInvertDrag()
312 Point( aEndPos.X()+2, aEndPos.Y()+2 ) ); in ImplInvertDrag()
313 DrawLine( Point( aEndPos.X()+3, aEndPos.Y()-1 ), in ImplInvertDrag()
314 Point( aEndPos.X()+3, aEndPos.Y()+1 ) ); in ImplInvertDrag()
315 DrawPixel( Point( aEndPos.X()+4, aEndPos.Y() ) ); in ImplInvertDrag()
319 DrawLine( Point( aEndPos.X()-1, aEndPos.Y()-3 ), in ImplInvertDrag()
320 Point( aEndPos.X()-1, aEndPos.Y()+3 ) ); in ImplInvertDrag()
321 DrawLine( Point( aEndPos.X()-2, aEndPos.Y()-2 ), in ImplInvertDrag()
322 Point( aEndPos.X()-2, aEndPos.Y()+2 ) ); in ImplInvertDrag()
323 DrawLine( Point( aEndPos.X()-3, aEndPos.Y()-1 ), in ImplInvertDrag()
324 Point( aEndPos.X()-3, aEndPos.Y()+1 ) ); in ImplInvertDrag()
325 DrawPixel( Point( aEndPos.X()-4, aEndPos.Y() ) ); in ImplInvertDrag()
383 pDev->DrawLine( Point( aRect.Right(), aRect.Top() ), in ImplDrawItem()
384 Point( aRect.Right(), aRect.Bottom() ) ); in ImplDrawItem()
509 pDev->DrawText( Point( nTxtPos, nTxtPosY ), pItem->maOutText ); in ImplDrawItem()
511 …pDev->DrawCtrlText( Point( nTxtPos, nTxtPosY ), pItem->maOutText, 0, STRING_LEN, TEXT_DRAW_DISABLE… in ImplDrawItem()
563 pDev->DrawImage( Point( nImagePos, nImagePosY ), pItem->maImage, nStyle ); in ImplDrawItem()
609 pDev->DrawLine( Point( nArrowX, nArrowY ), in ImplDrawItem()
610 Point( nArrowX+HEAD_ARROWSIZE2, nArrowY ) ); in ImplDrawItem()
611 pDev->DrawLine( Point( nArrowX, nArrowY ), in ImplDrawItem()
612 Point( nArrowX+HEAD_ARROWSIZE1, nArrowY+HEAD_ARROWSIZE2 ) ); in ImplDrawItem()
614 pDev->DrawLine( Point( nArrowX+HEAD_ARROWSIZE1, nArrowY+HEAD_ARROWSIZE2 ), in ImplDrawItem()
615 Point( nArrowX+HEAD_ARROWSIZE2, nArrowY ) ); in ImplDrawItem()
620 pDev->DrawLine( Point( nArrowX, nArrowY+HEAD_ARROWSIZE2 ), in ImplDrawItem()
621 Point( nArrowX+HEAD_ARROWSIZE1, nArrowY ) ); in ImplDrawItem()
623 pDev->DrawLine( Point( nArrowX, nArrowY+HEAD_ARROWSIZE2 ), in ImplDrawItem()
624 Point( nArrowX+HEAD_ARROWSIZE2, nArrowY+HEAD_ARROWSIZE2 ) ); in ImplDrawItem()
625 pDev->DrawLine( Point( nArrowX+HEAD_ARROWSIZE2, nArrowY+HEAD_ARROWSIZE2 ), in ImplDrawItem()
626 Point( nArrowX+HEAD_ARROWSIZE1, nArrowY ) ); in ImplDrawItem()
699 void HeaderBar::ImplStartDrag( const Point& rMousePos, sal_Bool bCommand ) in ImplStartDrag()
762 void HeaderBar::ImplDrag( const Point& rMousePos ) in ImplDrag()
799 sal_uInt16 nTempId = GetItemId( Point( rMousePos.X(), 2 ) ); in ImplDrag()
976 Point aMousePos = rTEvt.GetMouseEvent().GetPosPixel(); in Tracking()
992 DrawLine( Point( 0, 0 ), Point( mnDX-1, 0 ) ); in Paint()
994 DrawLine( Point( 0, mnDY-1 ), Point( mnDX-1, mnDY-1 ) ); in Paint()
998 DrawLine( Point( 0, 0 ), Point( 0, mnDY-1 ) ); in Paint()
999 DrawLine( Point( mnDX-1, 0 ), Point( mnDX-1, mnDY-1 ) ); in Paint()
1015 void HeaderBar::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, in Draw()
1018 Point aPos = pDev->LogicToPixel( rPos ); in Draw()
1039 pDev->DrawLine( aRect.TopLeft(), Point( aRect.Right(), aRect.Top() ) ); in Draw()
1041 pDev->DrawLine( Point( aRect.Left(), aRect.Bottom() ), Point( aRect.Right(), aRect.Bottom() ) ); in Draw()
1045 pDev->DrawLine( aRect.TopLeft(), Point( aRect.Left(), aRect.Bottom() ) ); in Draw()
1046 …pDev->DrawLine( Point( aRect.Right(), aRect.Top() ), Point( aRect.Right(), aRect.Bottom() ) ); … in Draw()
1104 Point aPt = OutputToScreenPixel( aItemRect.TopLeft() ); in RequestHelp()
1399 sal_uInt16 HeaderBar::GetItemId( const Point& rPos ) const in GetItemId()