Lines Matching refs:rDev

458 void DbGridColumn::Paint(OutputDevice& rDev,  in Paint()  argument
463 bool bEnabled = ( rDev.GetOutDevType() != OUTDEV_WINDOW ) in Paint()
464 || ( static_cast< Window& >( rDev ).IsEnabled() ); in Paint()
475 rDev.DrawText(rRect, INVALIDTEXT, nStyle); in Paint()
496 rDev.DrawText(rRect, aAutoText , nStyle); in Paint()
500 … pDataCell->PaintFieldToCell(rDev, rRect, pRow->GetField( m_nFieldPos ).getColumn(), xFormatter); in Paint()
511 rDev.DrawText(rRect, INVALIDTEXT, nStyle); in Paint()
518 rDev.DrawText(rRect, OBJECTTEXT, nStyle); in Paint()
522 static_cast< FmXFilterCell* >( m_pCell )->PaintCell( rDev, rRect ); in Paint()
1734 void DbCheckBox::PaintFieldToCell(OutputDevice& rDev, const Rectangle& rRect, in PaintFieldToCell() argument
1739 DbCellControl::PaintFieldToCell( rDev, rRect, _rxField, xFormatter ); in PaintFieldToCell()
2771 void DbFilterField::PaintCell(OutputDevice& rDev, const Rectangle& rRect) in PaintCell() argument
2777 DbCellControl::PaintCell( rDev, rRect ); in PaintCell()
2780 rDev.DrawText(rRect, static_cast<ListBox*>(m_pWindow)->GetSelectEntry(), nStyle); in PaintCell()
2783 rDev.DrawText(rRect, m_aText, nStyle); in PaintCell()
3588 void FmXDataCell::PaintFieldToCell(OutputDevice& rDev, const Rectangle& rRect, in PaintFieldToCell() argument
3592 m_pCellControl->PaintFieldToCell( rDev, rRect, _rxField, xFormatter ); in PaintFieldToCell()
3613 void FmXTextCell::PaintFieldToCell(OutputDevice& rDev, in PaintFieldToCell() argument
3620 FmXDataCell::PaintFieldToCell( rDev, rRect, _rxField, xFormatter ); in PaintFieldToCell()
3625 if ( ( rDev.GetOutDevType() == OUTDEV_WINDOW ) && !static_cast< Window& >( rDev ).IsEnabled() ) in PaintFieldToCell()
3644 Color aOldTextColor( rDev.GetTextColor() ); in PaintFieldToCell()
3645 rDev.SetTextColor( *pColor ); in PaintFieldToCell()
3646 rDev.DrawText(rRect, aText, nStyle); in PaintFieldToCell()
3647 rDev.SetTextColor( aOldTextColor ); in PaintFieldToCell()
3650 rDev.DrawText(rRect, aText, nStyle); in PaintFieldToCell()
4718 void FmXFilterCell::PaintCell( OutputDevice& rDev, const Rectangle& rRect ) in PaintCell() argument
4720 static_cast< DbFilterField* >( m_pCellControl )->PaintCell( rDev, rRect ); in PaintCell()