Lines Matching refs:aTopLeft

970 				Point aTopLeft = bNegativePage ? aObjRect.TopRight() : aObjRect.TopLeft();	// logical left  in MoveAreaTwips()  local
973 if (rArea.IsInside(aTopLeft)) in MoveAreaTwips()
978 else if (bShrink && aNew.IsInside(aTopLeft)) in MoveAreaTwips()
981 if ( rMove.X() && aTopLeft.X() >= rArea.Left() + rMove.X() ) in MoveAreaTwips()
983 aMoveSize.Width() = rArea.Left() + rMove.X() - SHRINK_DIST - aTopLeft.X(); in MoveAreaTwips()
986 if ( rMove.Y() && aTopLeft.Y() >= rArea.Top() + rMove.Y() ) in MoveAreaTwips()
988 aMoveSize.Height() = rArea.Top() + rMove.Y() - SHRINK_DIST - aTopLeft.Y(); in MoveAreaTwips()
996 if ( aTopLeft.X() + aMoveSize.Width() > 0 ) in MoveAreaTwips()
997 aMoveSize.Width() = -aTopLeft.X(); in MoveAreaTwips()
1001 if ( aTopLeft.X() + aMoveSize.Width() < 0 ) in MoveAreaTwips()
1002 aMoveSize.Width() = -aTopLeft.X(); in MoveAreaTwips()
1004 if ( aTopLeft.Y() + aMoveSize.Height() < 0 ) in MoveAreaTwips()
1005 aMoveSize.Height() = -aTopLeft.Y(); in MoveAreaTwips()
1008 Point aNewPos( aTopLeft.X() + aMoveSize.Width(), aTopLeft.Y() + aMoveSize.Height() ); in MoveAreaTwips()
1065 Point aTopLeft = aRect.TopLeft(); // Anfang beim Verkleinern in MoveArea() local
1069 aTopLeft.X() += aMove.X(); in MoveArea()
1071 aTopLeft.Y() += aMove.Y(); in MoveArea()
1077 MoveAreaTwips( nTab, aRect, aMove, aTopLeft ); in MoveArea()
1096 Point aTopLeft; in WidthChanged() local
1100 aTopLeft.X() = aRect.Left(); in WidthChanged()
1113 aTopLeft.X() = -aTopLeft.X(); in WidthChanged()
1117 MoveAreaTwips( nTab, aRect, Point( nDifTwips,0 ), aTopLeft ); in WidthChanged()
1139 Point aTopLeft; in HeightChanged() local
1142 aTopLeft.Y() = aRect.Top(); in HeightChanged()
1155 aTopLeft.X() = -aTopLeft.X(); in HeightChanged()
1158 MoveAreaTwips( nTab, aRect, Point( 0,nDifTwips ), aTopLeft ); in HeightChanged()
1734 Point aTopLeft; in GetCellRect() local
1736 aTopLeft.X() += rDoc.GetColWidth( nCol, rPos.Tab() ); in GetCellRect()
1738 aTopLeft.Y() += rDoc.GetRowHeight( 0, rPos.Row() - 1, rPos.Tab() ); in GetCellRect()
1750 Point aBotRight = aTopLeft; in GetCellRect()
1756 aTopLeft.X() = static_cast< long >( aTopLeft.X() * HMM_PER_TWIPS ); in GetCellRect()
1757 aTopLeft.Y() = static_cast< long >( aTopLeft.Y() * HMM_PER_TWIPS ); in GetCellRect()
1761 aCellRect = Rectangle( aTopLeft, aBotRight ); in GetCellRect()