Lines Matching refs:aTmpRect
93 Rectangle aTmpRect(aRect); in ImpDragCalcRect() local
101 if (aGeo.nDrehWink!=0) RotatePoint(aPos,aTmpRect.TopLeft(),-aGeo.nSin,aGeo.nCos); in ImpDragCalcRect()
103 if (aGeo.nShearWink!=0) ShearPoint(aPos,aTmpRect.TopLeft(),-aGeo.nTan); in ImpDragCalcRect()
109 if (bLft) aTmpRect.Left() =aPos.X(); in ImpDragCalcRect()
110 if (bRgt) aTmpRect.Right() =aPos.X(); in ImpDragCalcRect()
111 if (bTop) aTmpRect.Top() =aPos.Y(); in ImpDragCalcRect()
112 if (bBtm) aTmpRect.Bottom()=aPos.Y(); in ImpDragCalcRect()
116 long nXMul=aTmpRect.Right() -aTmpRect.Left(); in ImpDragCalcRect()
117 long nYMul=aTmpRect.Bottom()-aTmpRect.Top(); in ImpDragCalcRect()
137 if (bTop) aTmpRect.Top()=aTmpRect.Bottom()-nNeed; in ImpDragCalcRect()
138 if (bBtm) aTmpRect.Bottom()=aTmpRect.Top()+nNeed; in ImpDragCalcRect()
142 if (bLft) aTmpRect.Left()=aTmpRect.Right()-nNeed; in ImpDragCalcRect()
143 if (bRgt) aTmpRect.Right()=aTmpRect.Left()+nNeed; in ImpDragCalcRect()
149 aTmpRect.Top()-=(nNeed-nHgt0b)/2; in ImpDragCalcRect()
150 aTmpRect.Bottom()=aTmpRect.Top()+nNeed; in ImpDragCalcRect()
155 aTmpRect.Left()-=(nNeed-nWdt0b)/2; in ImpDragCalcRect()
156 aTmpRect.Right()=aTmpRect.Left()+nNeed; in ImpDragCalcRect()
161 ImpJustifyRect(aTmpRect); in ImpDragCalcRect()
162 return aTmpRect; in ImpDragCalcRect()