Lines Matching refs:_rDevice

238 …   OutputDevice& _rDevice, const Rectangle& _rArea, bool _bIsColHeaderArea, bool _bIsRowHeaderArea,  in PaintHeaderArea()  argument
244 _rDevice.Push( PUSH_FILLCOLOR | PUSH_LINECOLOR ); in PaintHeaderArea()
247 _rDevice.SetFillColor( background ); in PaintHeaderArea()
249 _rDevice.SetLineColor(); in PaintHeaderArea()
250 _rDevice.DrawRect( _rArea ); in PaintHeaderArea()
255 _rDevice.SetLineColor( lineColor ); in PaintHeaderArea()
256 _rDevice.DrawLine( _rArea.BottomLeft(), _rArea.BottomRight() ); in PaintHeaderArea()
257 _rDevice.DrawLine( _rArea.BottomRight(), _rArea.TopRight() ); in PaintHeaderArea()
259 _rDevice.Pop(); in PaintHeaderArea()
266 OutputDevice& _rDevice, const Rectangle& _rArea, const StyleSettings& _rStyle ) in PaintColumnHeader() argument
268 _rDevice.Push( PUSH_LINECOLOR); in PaintColumnHeader()
277 _rDevice.SetTextColor( textColor ); in PaintColumnHeader()
283 _rDevice.DrawText( aTextRect, sHeaderText, nDrawTextFlags ); in PaintColumnHeader()
287 _rDevice.SetLineColor( lineColor ); in PaintColumnHeader()
288 _rDevice.DrawLine( _rArea.BottomRight(), _rArea.TopRight()); in PaintColumnHeader()
289 _rDevice.DrawLine( _rArea.BottomLeft(), _rArea.BottomRight() ); in PaintColumnHeader()
299 …BitmapEx const aIndicatorBitmap = m_pImpl->aSortIndicator.getBitmapFor( _rDevice, nHeaderHeight, _… in PaintColumnHeader()
308 _rDevice.DrawBitmapEx( in PaintColumnHeader()
316 _rDevice.DrawBitmapEx( in PaintColumnHeader()
323 _rDevice.Pop(); in PaintColumnHeader()
334 OutputDevice& _rDevice, const Rectangle& _rRowArea, const StyleSettings& _rStyle ) in PrepareRow() argument
339 _rDevice.Push( PUSH_FILLCOLOR | PUSH_LINECOLOR); in PrepareRow()
392 _rDevice.SetLineColor(); in PrepareRow()
393 _rDevice.SetFillColor( backgroundColor ); in PrepareRow()
394 _rDevice.DrawRect( _rRowArea ); in PrepareRow()
396 _rDevice.Pop(); in PrepareRow()
400 …:PaintRowHeader( bool i_hasControlFocus, bool _bSelected, OutputDevice& _rDevice, const Rectangle&… in PaintRowHeader() argument
403 _rDevice.Push( PUSH_LINECOLOR | PUSH_TEXTCOLOR ); in PaintRowHeader()
407 _rDevice.SetLineColor( lineColor ); in PaintRowHeader()
408 _rDevice.DrawLine( _rArea.BottomLeft(), _rArea.BottomRight() ); in PaintRowHeader()
415 _rDevice.SetTextColor( textColor ); in PaintRowHeader()
422 _rDevice.DrawText( aTextRect, rowTitle, nDrawTextFlags ); in PaintRowHeader()
427 _rDevice.Pop(); in PaintRowHeader()
454 OutputDevice& _rDevice, const Rectangle& _rArea, const StyleSettings& _rStyle ) in PaintCell() argument
456 _rDevice.Push( PUSH_LINECOLOR | PUSH_FILLCOLOR ); in PaintCell()
459 …CellRenderContext const aRenderContext( _rDevice, aContentArea, _rStyle, i_column, _bSelected, i_h… in PaintCell()
475 _rDevice.SetLineColor( lineColor ); in PaintCell()
476 _rDevice.DrawLine( _rArea.BottomLeft(), _rArea.BottomRight() ); in PaintCell()
477 _rDevice.DrawLine( _rArea.BottomRight(), _rArea.TopRight() ); in PaintCell()
480 _rDevice.Pop(); in PaintCell()