Lines Matching refs:rR
74 FASTBOOL SdrTextObj::AdjustTextFrameWidthAndHeight(Rectangle& rR, FASTBOOL bHgt, FASTBOOL bWdt) con… in AdjustTextFrameWidthAndHeight() argument
76 if (bTextFrame && pModel!=NULL && !rR.IsEmpty()) in AdjustTextFrameWidthAndHeight()
89 Rectangle aR0(rR); in AdjustTextFrameWidthAndHeight()
92 Size aSiz(rR.GetSize()); aSiz.Width()--; aSiz.Height()--; in AdjustTextFrameWidthAndHeight()
169 long nWdtGrow=nWdt-(rR.Right()-rR.Left()); in AdjustTextFrameWidthAndHeight()
170 long nHgtGrow=nHgt-(rR.Bottom()-rR.Top()); in AdjustTextFrameWidthAndHeight()
176 if (eHAdj==SDRTEXTHORZADJUST_LEFT) rR.Right()+=nWdtGrow; in AdjustTextFrameWidthAndHeight()
177 else if (eHAdj==SDRTEXTHORZADJUST_RIGHT) rR.Left()-=nWdtGrow; in AdjustTextFrameWidthAndHeight()
180 rR.Left()-=nWdtGrow2; in AdjustTextFrameWidthAndHeight()
181 rR.Right()=rR.Left()+nWdt; in AdjustTextFrameWidthAndHeight()
186 if (eVAdj==SDRTEXTVERTADJUST_TOP) rR.Bottom()+=nHgtGrow; in AdjustTextFrameWidthAndHeight()
187 else if (eVAdj==SDRTEXTVERTADJUST_BOTTOM) rR.Top()-=nHgtGrow; in AdjustTextFrameWidthAndHeight()
190 rR.Top()-=nHgtGrow2; in AdjustTextFrameWidthAndHeight()
191 rR.Bottom()=rR.Top()+nHgt; in AdjustTextFrameWidthAndHeight()
195 Point aD1(rR.TopLeft()); in AdjustTextFrameWidthAndHeight()
200 rR.Move(aD2.X(),aD2.Y()); in AdjustTextFrameWidthAndHeight()