Lines Matching refs:mpOutDev

572 	const StyleSettings&	rStyleSettings	= mpOutDev->GetSettings().GetStyleSettings();  in DrawSymbol()
573 Rectangle aRect = mpOutDev->LogicToPixel( rRect ); in DrawSymbol()
574 Color aOldLineColor = mpOutDev->GetLineColor(); in DrawSymbol()
575 Color aOldFillColor = mpOutDev->GetFillColor(); in DrawSymbol()
576 sal_Bool bOldMapMode = mpOutDev->IsMapModeEnabled(); in DrawSymbol()
577 mpOutDev->SetLineColor(); in DrawSymbol()
578 mpOutDev->SetFillColor( rColor ); in DrawSymbol()
579 mpOutDev->EnableMapMode( sal_False ); in DrawSymbol()
582 (mpOutDev->GetOutDevType() == OUTDEV_PRINTER) ) in DrawSymbol()
588 mpOutDev->SetFillColor( Color( COL_GRAY ) ); in DrawSymbol()
590 mpOutDev->SetFillColor( Color( COL_BLACK ) ); in DrawSymbol()
597 mpOutDev->SetFillColor( rStyleSettings.GetLightColor() ); in DrawSymbol()
600 ImplDrawSymbol( mpOutDev, aTempRect, eType ); in DrawSymbol()
601 mpOutDev->SetFillColor( rStyleSettings.GetShadowColor() ); in DrawSymbol()
604 mpOutDev->SetFillColor( rColor ); in DrawSymbol()
607 ImplDrawSymbol( mpOutDev, aRect, eType ); in DrawSymbol()
609 mpOutDev->SetLineColor( aOldLineColor ); in DrawSymbol()
610 mpOutDev->SetFillColor( aOldFillColor ); in DrawSymbol()
611 mpOutDev->EnableMapMode( bOldMapMode ); in DrawSymbol()
620 Rectangle aRect = mpOutDev->LogicToPixel( rRect ); in DrawFrame()
621 Color aOldLineColor = mpOutDev->GetLineColor(); in DrawFrame()
622 Color aOldFillColor = mpOutDev->GetFillColor(); in DrawFrame()
623 sal_Bool bOldMapMode = mpOutDev->IsMapModeEnabled(); in DrawFrame()
624 mpOutDev->EnableMapMode( sal_False ); in DrawFrame()
625 mpOutDev->SetLineColor(); in DrawFrame()
626 mpOutDev->ImplDraw2ColorFrame( aRect, rLeftTopColor, rRightBottomColor ); in DrawFrame()
627 mpOutDev->SetLineColor( aOldLineColor ); in DrawFrame()
628 mpOutDev->SetFillColor( aOldFillColor ); in DrawFrame()
629 mpOutDev->EnableMapMode( bOldMapMode ); in DrawFrame()
637 const StyleSettings& rStyleSettings = mpOutDev->GetSettings().GetStyleSettings(); in DrawHighlightFrame()
642 (mpOutDev->GetOutDevType() == OUTDEV_PRINTER) ) in DrawHighlightFrame()
649 Wallpaper aBackground = mpOutDev->GetBackground(); in DrawHighlightFrame()
969 sal_Bool bOldMap = mpOutDev->IsMapModeEnabled(); in DrawFrame()
972 aRect = mpOutDev->LogicToPixel( aRect ); in DrawFrame()
973 mpOutDev->EnableMapMode( sal_False ); in DrawFrame()
979 ImplDrawFrame( mpOutDev, aRect, mpOutDev->GetSettings().GetStyleSettings(), nStyle ); in DrawFrame()
982 Color maOldLineColor = mpOutDev->GetLineColor(); in DrawFrame()
983 Color maOldFillColor = mpOutDev->GetFillColor(); in DrawFrame()
984 ImplDrawFrame( mpOutDev, aRect, mpOutDev->GetSettings().GetStyleSettings(), nStyle ); in DrawFrame()
985 mpOutDev->SetLineColor( maOldLineColor ); in DrawFrame()
986 mpOutDev->SetFillColor( maOldFillColor ); in DrawFrame()
992 mpOutDev->EnableMapMode( bOldMap ); in DrawFrame()
993 aRect = mpOutDev->PixelToLogic( aRect ); in DrawFrame()
1218 sal_Bool bOldMap = mpOutDev->IsMapModeEnabled(); in DrawButton()
1221 aRect = mpOutDev->LogicToPixel( aRect ); in DrawButton()
1222 mpOutDev->EnableMapMode( sal_False ); in DrawButton()
1227 const StyleSettings& rStyleSettings = mpOutDev->GetSettings().GetStyleSettings(); in DrawButton()
1233 ImplDrawButton( mpOutDev, aRect, rStyleSettings, nStyle ); in DrawButton()
1236 Color maOldLineColor = mpOutDev->GetLineColor(); in DrawButton()
1237 Color maOldFillColor = mpOutDev->GetFillColor(); in DrawButton()
1238 ImplDrawButton( mpOutDev, aRect, rStyleSettings, nStyle ); in DrawButton()
1239 mpOutDev->SetLineColor( maOldLineColor ); in DrawButton()
1240 mpOutDev->SetFillColor( maOldFillColor ); in DrawButton()
1246 mpOutDev->EnableMapMode( bOldMap ); in DrawButton()
1247 aRect = mpOutDev->PixelToLogic( aRect ); in DrawButton()
1258 const StyleSettings& rStyleSettings = mpOutDev->GetSettings().GetStyleSettings(); in DrawSeparator()
1260 mpOutDev->Push( PUSH_LINECOLOR ); in DrawSeparator()
1262 mpOutDev->SetLineColor( Color( COL_BLACK ) ); in DrawSeparator()
1264 mpOutDev->SetLineColor( rStyleSettings.GetShadowColor() ); in DrawSeparator()
1266 mpOutDev->DrawLine( aStart, aStop ); in DrawSeparator()
1269 mpOutDev->SetLineColor( rStyleSettings.GetLightColor() ); in DrawSeparator()
1280 mpOutDev->DrawLine( aStart, aStop ); in DrawSeparator()
1282 mpOutDev->Pop(); in DrawSeparator()