Lines Matching refs:pDev

224 void FixedText::ImplDraw( OutputDevice* pDev, sal_uLong nDrawFlags,  in ImplDraw()  argument
264 DrawControlText( *pDev, aRect, aText, nTextStyle, in ImplDraw()
279 void FixedText::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, in Draw() argument
284 Point aPos = pDev->LogicToPixel( rPos ); in Draw()
285 Size aSize = pDev->LogicToPixel( rSize ); in Draw()
286 Font aFont = GetDrawPixelFont( pDev ); in Draw()
288 pDev->Push(); in Draw()
289 pDev->SetMapMode(); in Draw()
290 pDev->SetFont( aFont ); in Draw()
292 pDev->SetTextColor( Color( COL_BLACK ) ); in Draw()
294 pDev->SetTextColor( GetTextColor() ); in Draw()
295 pDev->SetTextFillColor(); in Draw()
304 ImplDrawFrame( pDev, aRect ); in Draw()
308 pDev->SetFillColor( GetControlBackground() ); in Draw()
309 pDev->DrawRect( aRect ); in Draw()
313 ImplDraw( pDev, nFlags, aPos, aSize ); in Draw()
314 pDev->Pop(); in Draw()
777 void FixedBitmap::ImplDraw( OutputDevice* pDev, sal_uLong /* nDrawFlags */, in ImplDraw() argument
796 pDev->DrawImage( rPos, rSize, aImage, nStyle ); in ImplDraw()
800 pDev->DrawImage( aPos, aImage, nStyle ); in ImplDraw()
810 pDev->DrawBitmap( rPos, rSize, *pBitmap ); in ImplDraw()
814 pDev->DrawBitmap( aPos, *pBitmap ); in ImplDraw()
829 void FixedBitmap::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, in Draw() argument
832 Point aPos = pDev->LogicToPixel( rPos ); in Draw()
833 Size aSize = pDev->LogicToPixel( rSize ); in Draw()
836 pDev->Push(); in Draw()
837 pDev->SetMapMode(); in Draw()
842 DecorationView aDecoView( pDev ); in Draw()
845 pDev->IntersectClipRegion( aRect ); in Draw()
846 ImplDraw( pDev, nFlags, aRect.TopLeft(), aRect.GetSize() ); in Draw()
848 pDev->Pop(); in Draw()
1022 void FixedImage::ImplDraw( OutputDevice* pDev, sal_uLong nDrawFlags, in ImplDraw() argument
1044 pDev->DrawImage( rPos, rSize, *pImage, nStyle ); in ImplDraw()
1048 pDev->DrawImage( aPos, *pImage, nStyle ); in ImplDraw()
1053 UserDrawEvent aUDEvt( pDev, Rectangle( rPos, rSize ), 0, nStyle ); in ImplDraw()
1081 void FixedImage::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, in Draw() argument
1084 Point aPos = pDev->LogicToPixel( rPos ); in Draw()
1085 Size aSize = pDev->LogicToPixel( rSize ); in Draw()
1088 pDev->Push(); in Draw()
1089 pDev->SetMapMode(); in Draw()
1094 ImplDrawFrame( pDev, aRect ); in Draw()
1096 pDev->IntersectClipRegion( aRect ); in Draw()
1097 ImplDraw( pDev, nFlags, aRect.TopLeft(), aRect.GetSize() ); in Draw()
1099 pDev->Pop(); in Draw()