Lines Matching refs:pDev

332 void HeaderBar::ImplDrawItem( OutputDevice* pDev,  in ImplDrawItem()  argument
373 pDev->SetLineColor(); in ImplDrawItem()
374 pDev->SetFillColor( rStyleSettings.GetCheckedColor() ); in ImplDrawItem()
375 pDev->DrawRect( aRect ); in ImplDrawItem()
378 pDev->DrawWallpaper( aRect, GetBackground() ); in ImplDrawItem()
382 pDev->SetLineColor( rStyleSettings.GetDarkShadowColor() ); in ImplDrawItem()
383 pDev->DrawLine( Point( aRect.Right(), aRect.Top() ), in ImplDrawItem()
401 Size aTxtSize( pDev->GetTextWidth( pItem->maOutText ), 0 ); in ImplDrawItem()
403 aTxtSize.Height() = pDev->GetTextHeight(); in ImplDrawItem()
432 nTxtWidth = pDev->GetTextWidth( pItem->maOutText ); in ImplDrawItem()
505 pDev->Push( PUSH_TEXTCOLOR ); in ImplDrawItem()
506 pDev->SetTextColor( aSelectionTextColor ); in ImplDrawItem()
509 pDev->DrawText( Point( nTxtPos, nTxtPosY ), pItem->maOutText ); in ImplDrawItem()
511pDev->DrawCtrlText( Point( nTxtPos, nTxtPosY ), pItem->maOutText, 0, STRING_LEN, TEXT_DRAW_DISABLE… in ImplDrawItem()
513 pDev->Pop(); in ImplDrawItem()
563 pDev->DrawImage( Point( nImagePos, nImagePosY ), pItem->maImage, nStyle ); in ImplDrawItem()
608 pDev->SetLineColor( rStyleSettings.GetLightColor() ); in ImplDrawItem()
609 pDev->DrawLine( Point( nArrowX, nArrowY ), in ImplDrawItem()
611 pDev->DrawLine( Point( nArrowX, nArrowY ), in ImplDrawItem()
613 pDev->SetLineColor( rStyleSettings.GetShadowColor() ); in ImplDrawItem()
614 pDev->DrawLine( Point( nArrowX+HEAD_ARROWSIZE1, nArrowY+HEAD_ARROWSIZE2 ), in ImplDrawItem()
619 pDev->SetLineColor( rStyleSettings.GetLightColor() ); in ImplDrawItem()
620 pDev->DrawLine( Point( nArrowX, nArrowY+HEAD_ARROWSIZE2 ), in ImplDrawItem()
622 pDev->SetLineColor( rStyleSettings.GetShadowColor() ); in ImplDrawItem()
623 pDev->DrawLine( Point( nArrowX, nArrowY+HEAD_ARROWSIZE2 ), in ImplDrawItem()
625 pDev->DrawLine( Point( nArrowX+HEAD_ARROWSIZE2, nArrowY+HEAD_ARROWSIZE2 ), in ImplDrawItem()
637 pDev->SetClipRegion( aRegion ); in ImplDrawItem()
638 UserDrawEvent aODEvt( pDev, aRect, pItem->mnId ); in ImplDrawItem()
640 pDev->SetClipRegion(); in ImplDrawItem()
1015 void HeaderBar::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, in Draw() argument
1018 Point aPos = pDev->LogicToPixel( rPos ); in Draw()
1019 Size aSize = pDev->LogicToPixel( rSize ); in Draw()
1021 Font aFont = GetDrawPixelFont( pDev ); in Draw()
1023 pDev->Push(); in Draw()
1024 pDev->SetMapMode(); in Draw()
1025 pDev->SetFont( aFont ); in Draw()
1027 pDev->SetTextColor( Color( COL_BLACK ) ); in Draw()
1029 pDev->SetTextColor( GetTextColor() ); in Draw()
1030 pDev->SetTextFillColor(); in Draw()
1034 pDev->DrawWallpaper( aRect, GetBackground() ); in Draw()
1037 pDev->SetLineColor( GetSettings().GetStyleSettings().GetDarkShadowColor() ); 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()
1046pDev->DrawLine( Point( aRect.Right(), aRect.Top() ), Point( aRect.Right(), aRect.Bottom() ) ); … in Draw()
1062 pDev->SetClipRegion( aRegion ); in Draw()
1063 ImplDrawItem( pDev, i, sal_False, sal_False, aItemRect, &aRect, nFlags ); in Draw()
1064 pDev->SetClipRegion(); in Draw()
1067 pDev->Pop(); in Draw()