Lines Matching refs:rDev

796 void lclSetColorToOutDev( OutputDevice& rDev, const Style& rStyle, const Color* pForceColor )  in lclSetColorToOutDev()  argument
798 rDev.Push( PUSH_LINECOLOR | PUSH_FILLCOLOR ); in lclSetColorToOutDev()
799 rDev.SetLineColor( pForceColor ? *pForceColor : rStyle.GetColor() ); in lclSetColorToOutDev()
800 rDev.SetFillColor( pForceColor ? *pForceColor : rStyle.GetColor() ); in lclSetColorToOutDev()
807 void lclDrawThinLine( OutputDevice& rDev, const Point& rBeg, const Point& rEnd, bool bDotted ) in lclDrawThinLine() argument
817 rDev.DrawLine( rBeg, rEnd, aLineInfo ); in lclDrawThinLine()
820 Point aBeg( rDev.LogicToPixel( rBeg ) ); in lclDrawThinLine()
821 Point aEnd( rDev.LogicToPixel( rEnd ) ); in lclDrawThinLine()
843 rDev.Push( PUSH_MAPMODE ); in lclDrawThinLine()
844 rDev.SetMapMode( MAP_PIXEL ); in lclDrawThinLine()
845 rDev.DrawPixel( lclCreatePolygon( aPoints ) ); in lclDrawThinLine()
846 rDev.Pop(); // map mode in lclDrawThinLine()
850 rDev.DrawLine( rBeg, rEnd ); in lclDrawThinLine()
854 inline void lclDrawThinLine( OutputDevice& rDev, const LinePoints& rPoints, bool bDotted ) in lclDrawThinLine() argument
856 lclDrawThinLine( rDev, rPoints.maBeg, rPoints.maEnd, bDotted ); in lclDrawThinLine()
860 inline void lclDrawPolygon( OutputDevice& rDev, const Point& rP1, const Point& rP2, const Point& rP… in lclDrawPolygon() argument
862 rDev.DrawPolygon( lclCreatePolygon( rP1, rP2, rP3, rP4 ) ); in lclDrawPolygon()
866 inline void lclDrawPolygon( OutputDevice& rDev, const LinePoints& rPoints1, const LinePoints& rPoin… in lclDrawPolygon() argument
868 rDev.DrawPolygon( lclCreatePolygon( rPoints1, rPoints2 ) ); in lclDrawPolygon()
880 OutputDevice& rDev, in lclDrawHorLine() argument
887 lclDrawThinLine( rDev, aTPoints, bDotted ); in lclDrawHorLine()
891 lclDrawPolygon( rDev, aTPoints, aBPoints ); in lclDrawHorLine()
908 OutputDevice& rDev, const Point& rLPos, const Point& rRPos, in lclDrawHorFrameBorder() argument
916 lclSetColorToOutDev( rDev, rBorder, pForceColor ); in lclDrawHorFrameBorder()
917 lclDrawHorLine( rDev, rLPos, rResult.maBeg.maPrim, rRPos, rResult.maEnd.maPrim, in lclDrawHorFrameBorder()
920 lclDrawHorLine( rDev, rLPos, rResult.maBeg.maSecn, rRPos, rResult.maEnd.maSecn, in lclDrawHorFrameBorder()
922 rDev.Pop(); // colors in lclDrawHorFrameBorder()
935 OutputDevice& rDev, in lclDrawVerLine() argument
942 lclDrawThinLine( rDev, aLPoints, bDotted ); in lclDrawVerLine()
946 lclDrawPolygon( rDev, aLPoints, aRPoints ); in lclDrawVerLine()
963 OutputDevice& rDev, const Point& rTPos, const Point& rBPos, in lclDrawVerFrameBorder() argument
971 lclSetColorToOutDev( rDev, rBorder, pForceColor ); in lclDrawVerFrameBorder()
972 lclDrawVerLine( rDev, rTPos, rResult.maBeg.maPrim, rBPos, rResult.maEnd.maPrim, in lclDrawVerFrameBorder()
975 lclDrawVerLine( rDev, rTPos, rResult.maBeg.maSecn, rBPos, rResult.maEnd.maSecn, in lclDrawVerFrameBorder()
977 rDev.Pop(); // colors in lclDrawVerFrameBorder()
1036 void lclPushDiagClipRect( OutputDevice& rDev, const Rectangle& rRect, const DiagLineResult& rResult… in lclPushDiagClipRect() argument
1048 rDev.Push( PUSH_CLIPREGION ); in lclPushDiagClipRect()
1049 rDev.IntersectClipRegion( aClipRect ); in lclPushDiagClipRect()
1073 void lclPushCrossingClipRegion( OutputDevice& rDev, const Rectangle& rRect, bool bTLBR, const Style… in lclPushCrossingClipRegion() argument
1095 rDev.Push( PUSH_CLIPREGION ); in lclPushCrossingClipRegion()
1096 rDev.IntersectClipRegion( aClipReg ); in lclPushCrossingClipRegion()
1108 OutputDevice& rDev, const Rectangle& rRect, bool bTLBR, in lclDrawDiagLine() argument
1111 lclPushDiagClipRect( rDev, rRect, rResult ); in lclDrawDiagLine()
1114 lclDrawThinLine( rDev, aLPoints, bDotted ); in lclDrawDiagLine()
1116 lclDrawPolygon( rDev, aLPoints, lclGetDiagLineEnds( rRect, bTLBR, nDiagOffs2 ) ); in lclDrawDiagLine()
1117 rDev.Pop(); // clipping region in lclDrawDiagLine()
1137 OutputDevice& rDev, const Rectangle& rRect, bool bTLBR, in lclDrawDiagFrameBorder() argument
1145 lclPushCrossingClipRegion( rDev, rRect, bTLBR, rCrossStyle ); in lclDrawDiagFrameBorder()
1147 lclSetColorToOutDev( rDev, rBorder, pForceColor ); in lclDrawDiagFrameBorder()
1148 …lclDrawDiagLine( rDev, rRect, bTLBR, rResult.maPrim, lclGetBeg( rBorder ), lclGetPrimEnd( rBorder … in lclDrawDiagFrameBorder()
1150 …lclDrawDiagLine( rDev, rRect, bTLBR, rResult.maSecn, lclGetSecnBeg( rBorder ), lclGetEnd( rBorder … in lclDrawDiagFrameBorder()
1151 rDev.Pop(); // colors in lclDrawDiagFrameBorder()
1154 rDev.Pop(); // clipping region in lclDrawDiagFrameBorder()
1172 OutputDevice& rDev, const Rectangle& rRect, in lclDrawDiagFrameBorders() argument
1184 …lclDrawDiagFrameBorder( rDev, rRect, false, rBLTR, rResult.maBLTR, rTLBR, pForceColor, bDiagDblCli… in lclDrawDiagFrameBorders()
1186 …lclDrawDiagFrameBorder( rDev, rRect, true, rTLBR, rResult.maTLBR, rBLTR, pForceColor, bDiagDblClip… in lclDrawDiagFrameBorders()
1188 …lclDrawDiagFrameBorder( rDev, rRect, false, rBLTR, rResult.maBLTR, rTLBR, pForceColor, bDiagDblCli… in lclDrawDiagFrameBorders()
1400 void DrawHorFrameBorder( OutputDevice& rDev, in DrawHorFrameBorder() argument
1412 lclDrawHorFrameBorder( rDev, rLPos, rRPos, rBorder, aResult, pForceColor ); in DrawHorFrameBorder()
1416 void DrawHorFrameBorder( OutputDevice& rDev, in DrawHorFrameBorder() argument
1425 rDev, rLPos, rRPos, rBorder, in DrawHorFrameBorder()
1431 void DrawHorFrameBorder( OutputDevice& rDev, in DrawHorFrameBorder() argument
1435 lclDrawHorFrameBorder( rDev, rLPos, rRPos, rBorder, BorderResult(), pForceColor ); in DrawHorFrameBorder()
1440 void DrawVerFrameBorder( OutputDevice& rDev, in DrawVerFrameBorder() argument
1452 lclDrawVerFrameBorder( rDev, rTPos, rBPos, rBorder, aResult, pForceColor ); in DrawVerFrameBorder()
1456 void DrawVerFrameBorder( OutputDevice& rDev, in DrawVerFrameBorder() argument
1465 rDev, rTPos, rBPos, rBorder, in DrawVerFrameBorder()
1471 void DrawVerFrameBorder( OutputDevice& rDev, in DrawVerFrameBorder() argument
1475 lclDrawVerFrameBorder( rDev, rTPos, rBPos, rBorder, BorderResult(), pForceColor ); in DrawVerFrameBorder()
1480 void DrawVerFrameBorderSlanted( OutputDevice& rDev, in DrawVerFrameBorderSlanted() argument
1488 DrawVerFrameBorder( rDev, rTPos, rBPos, rBorder, pForceColor ); in DrawVerFrameBorderSlanted()
1497 lclSetColorToOutDev( rDev, aScaled, pForceColor ); in DrawVerFrameBorderSlanted()
1498 lclDrawVerLine( rDev, rTPos, aRes, rBPos, aRes, in DrawVerFrameBorderSlanted()
1501 lclDrawVerLine( rDev, rTPos, aRes, rBPos, aRes, in DrawVerFrameBorderSlanted()
1503 rDev.Pop(); // colors in DrawVerFrameBorderSlanted()
1511 OutputDevice& rDev, const Rectangle& rRect, const Style& rTLBR, const Style& rBLTR, in DrawDiagFrameBorders() argument
1521 lclDrawDiagFrameBorders( rDev, rRect, rTLBR, rBLTR, aResult, pForceColor, bDiagDblClip ); in DrawDiagFrameBorders()