Lines Matching refs:rDev

766 void ScPivotFieldWindow::DrawBackground( OutputDevice& rDev )  in DrawBackground()  argument
768 Size aDevSize = rDev.GetOutputSizePixel(); in DrawBackground()
773 rDev.SetLineColor(); in DrawBackground()
774 rDev.SetFillColor( rStyleSett.GetFaceColor() ); in DrawBackground()
775 rDev.DrawRect( Rectangle( Point( 0, 0 ), aDevSize ) ); in DrawBackground()
779 rDev.SetLineColor( rStyleSett.GetWindowTextColor() ); in DrawBackground()
780 rDev.SetFillColor( rStyleSett.GetWindowColor() ); in DrawBackground()
781 rDev.DrawRect( Rectangle( Point( 0, 0 ), aDevSize ) ); in DrawBackground()
786 rDev.SetTextColor( rStyleSett.GetWindowTextColor() ); in DrawBackground()
788 long nY = (aDevSize.Height() - nTokenCnt * rDev.GetTextHeight()) / 2; in DrawBackground()
792 Point aLinePos( (aDevSize.Width() - rDev.GetCtrlTextWidth( aLine )) / 2, nY ); in DrawBackground()
793 rDev.DrawCtrlText( aLinePos, aLine ); in DrawBackground()
794 nY += rDev.GetTextHeight(); in DrawBackground()
799 void ScPivotFieldWindow::DrawField( OutputDevice& rDev, size_t nFieldIndex ) in DrawField() argument
806 DecorationView aDecoView( &rDev ); in DrawField()
812 long nLabelWidth = rDev.GetTextWidth( rFullText ); in DrawField()
822 nLabelWidth = rDev.GetTextWidth( aClippedText ); in DrawField()
830 …e.Width() - nLabelWidth) / 2, ::std::max< long >( (maFieldSize.Height() - rDev.GetTextHeight()) / … in DrawField()
831 rDev.SetTextColor( GetSettings().GetStyleSettings().GetButtonTextColor() ); in DrawField()
832 rDev.DrawText( aFieldPos + aLabelOffset, aClippedText ); in DrawField()
836 void ScPivotFieldWindow::DrawInsertionCursor( OutputDevice& rDev ) in DrawInsertionCursor() argument
842 rDev.SetLineColor( aTextColor ); in DrawInsertionCursor()
843 rDev.SetFillColor( aTextColor ); in DrawInsertionCursor()
855 rDev.DrawRect( Rectangle( aMainLinePos, aMainLineSize ) ); in DrawInsertionCursor()
860 rDev.DrawRect( Rectangle( aSubLinePos, aSubLineSize ) ); in DrawInsertionCursor()
863 rDev.DrawRect( Rectangle( aSubLinePos, aSubLineSize ) ); in DrawInsertionCursor()