Lines Matching refs:rDev
1052 virtual void Paint(const Point& rPos, SvLBox& rDev, sal_uInt16 nFlags, SvLBoxEntry* pEntry);
1058 void FmFilterItemsString::Paint(const Point& rPos, SvLBox& rDev, sal_uInt16 /*nFlags*/, SvLBoxEntry… in Paint() argument
1067 rDev.Push( PUSH_LINECOLOR ); in Paint()
1069 rDev.SetLineColor( rDev.GetTextColor() ); in Paint()
1071 Rectangle aRect( rPos, GetSize( &rDev, pEntry ) ); in Paint()
1075 rDev.DrawLine( aFirst, aSecond ); in Paint()
1082 rDev.DrawLine( aFirst, aSecond ); in Paint()
1084 rDev.Pop(); in Paint()
1087 rDev.DrawText( Point(rPos.X() + nxDBmp, rPos.Y()), GetText() ); in Paint()
1116 virtual void Paint(const Point& rPos, SvLBox& rDev, sal_uInt16 nFlags, SvLBoxEntry* pEntry);
1140 void FmFilterString::Paint(const Point& rPos, SvLBox& rDev, sal_uInt16 /*nFlags*/, SvLBoxEntry* /*p… in Paint() argument
1142 Font aOldFont( rDev.GetFont()); in Paint()
1145 rDev.SetFont( aFont ); in Paint()
1148 rDev.DrawText( aPos, m_aName ); in Paint()
1151 aPos.X() += rDev.GetTextWidth(m_aName) + nxD; in Paint()
1152 rDev.SetFont( aOldFont ); in Paint()
1153 rDev.DrawText( aPos, GetText() ); in Paint()