Lines Matching refs:pDev
163 void TabPage::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong ) in Draw() argument
165 Point aPos = pDev->LogicToPixel( rPos ); in Draw()
166 Size aSize = pDev->LogicToPixel( rSize ); in Draw()
172 pDev->Push(); in Draw()
173 pDev->SetMapMode(); in Draw()
174 pDev->SetLineColor(); in Draw()
177 pDev->DrawBitmapEx( aPos, aSize, aWallpaper.GetBitmap() ); in Draw()
181 pDev->SetFillColor( GetSettings().GetStyleSettings().GetDialogColor() ); in Draw()
183 pDev->SetFillColor( aWallpaper.GetColor() ); in Draw()
184 pDev->DrawRect( Rectangle( aPos, aSize ) ); in Draw()
187 pDev->Pop(); in Draw()