Lines Matching refs:rDev

216 	void			Paint( const Point&, SvLBox& rDev, sal_uInt16 nFlags,SvLBoxEntry* );
257 void CustomAnimationListEntryItem::Paint( const Point& rPos, SvLBox& rDev, sal_uInt16, SvLBoxEntry*… in Paint() argument
269 rDev.DrawImage( aPos, mpParent->getImage( IMG_CUSTOMANIMATION_ON_CLICK, bHighContrast ) ); in Paint()
273 rDev.DrawImage( aPos, mpParent->getImage( IMG_CUSTOMANIMATION_AFTER_PREVIOUS, bHighContrast ) ); in Paint()
303 rDev.DrawImage( aImagePos, rImage ); in Paint()
307 aPos.Y() += ( aSize.Height() - rDev.GetTextHeight()) >> 1; in Paint()
309rDev.DrawText( aPos, rDev.GetEllipsisString( maDescription, rDev.GetOutputSizePixel().Width() - aP… in Paint()
368 void Paint( const Point&, SvLBox& rDev, sal_uInt16 nFlags,SvLBoxEntry* );
418 void CustomAnimationTriggerEntryItem::Paint( const Point& rPos, SvLBox& rDev, sal_uInt16, SvLBoxEnt… in Paint() argument
420 …Size aSize( rDev.GetOutputSizePixel().Width(), static_cast< SvTreeListBox* >(&rDev)->GetEntryHeigh… in Paint()
427 Color aColor (rDev.GetSettings().GetStyleSettings().GetDialogColor()); in Paint()
429 rDev.Push(); in Paint()
430 rDev.SetFillColor (aColor); in Paint()
431 rDev.SetLineColor (); in Paint()
432 rDev.DrawRect(aOutRect); in Paint()
435 rDev.SetLineColor( rDev.GetSettings().GetStyleSettings().GetWindowColor()); in Paint()
436 rDev.DrawPixel( aOutRect.TopLeft()); in Paint()
437 rDev.DrawPixel( Point(aOutRect.Right(), aOutRect.Top())); in Paint()
438 rDev.DrawPixel( Point(aOutRect.Left(), aOutRect.Bottom())); in Paint()
439 rDev.DrawPixel( Point(aOutRect.Right(), aOutRect.Bottom())); in Paint()
443 int nVertBorder = (( aSize.Height() - rDev.GetTextHeight()) >> 1); in Paint()
444 int nHorzBorder = rDev.LogicToPixel( Size( 3, 3 ), MAP_APPFONT ).Width(); in Paint()
451 rDev.DrawText (aOutRect, rDev.GetEllipsisString( maDescription, aOutRect.GetWidth() ) ); in Paint()
452 rDev.Pop(); in Paint()