Lines Matching refs:pDev

130 void GroupBox::ImplDraw( OutputDevice* pDev, sal_uLong nDrawFlags,  in ImplDraw()  argument
171 aRect = pDev->GetTextRect( aRect, aText, nTextStyle ); in ImplDraw()
180 pDev->SetLineColor( Color( COL_BLACK ) ); in ImplDraw()
182 pDev->SetLineColor( rStyleSettings.GetShadowColor() ); in ImplDraw()
185 pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) ); in ImplDraw()
188 pDev->DrawLine( Point( rPos.X(), nTop ), Point( aRect.Left()-nTextOff, nTop ) ); in ImplDraw()
189pDev->DrawLine( Point( aRect.Right()+nTextOff, nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) ); in ImplDraw()
191 pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X(), rPos.Y()+rSize.Height()-2 ) ); in ImplDraw()
192pDev->DrawLine( Point( rPos.X(), rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSize.Width()-2, rPo… in ImplDraw()
193pDev->DrawLine( Point( rPos.X()+rSize.Width()-2, rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSiz… in ImplDraw()
195 bool bIsPrinter = OUTDEV_PRINTER == pDev->GetOutDevType(); in ImplDraw()
201 pDev->SetLineColor( rStyleSettings.GetLightColor() ); in ImplDraw()
203pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( rPos.X()+rSize.Width()-3, nTop+1 ) ); in ImplDraw()
206pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( aRect.Left()-nTextOff, nTop+1 ) ); in ImplDraw()
207pDev->DrawLine( Point( aRect.Right()+nTextOff, nTop+1 ), Point( rPos.X()+rSize.Width()-3, nTop+1 )… in ImplDraw()
209pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( rPos.X()+1, rPos.Y()+rSize.Height()-3 ) ); in ImplDraw()
210pDev->DrawLine( Point( rPos.X(), rPos.Y()+rSize.Height()-1 ), Point( rPos.X()+rSize.Width()-1, rPo… in ImplDraw()
211pDev->DrawLine( Point( rPos.X()+rSize.Width()-1, rPos.Y()+rSize.Height()-1 ), Point( rPos.X()+rSiz… in ImplDraw()
217 DrawControlText( *pDev, aRect, aText, nTextStyle, pVector, pDisplayText ); in ImplDraw()
237 void GroupBox::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, in Draw() argument
240 Point aPos = pDev->LogicToPixel( rPos ); in Draw()
241 Size aSize = pDev->LogicToPixel( rSize ); in Draw()
242 Font aFont = GetDrawPixelFont( pDev ); in Draw()
244 pDev->Push(); in Draw()
245 pDev->SetMapMode(); in Draw()
246 pDev->SetFont( aFont ); in Draw()
248 pDev->SetTextColor( Color( COL_BLACK ) ); in Draw()
250 pDev->SetTextColor( GetTextColor() ); in Draw()
251 pDev->SetTextFillColor(); in Draw()
253 ImplDraw( pDev, nFlags, aPos, aSize ); in Draw()
254 pDev->Pop(); in Draw()