Lines Matching refs:aInsertPos
1921 Point aInsertPos; in GetChartInsertPos() local
1982 aInsertPos.X() = aSelection.Left() - nNeededWidth; in GetChartInsertPos()
1984 aInsertPos.X() = aSelection.Right() + 1; in GetChartInsertPos()
1987 aInsertPos.Y() = std::max( aSelection.Top(), aVisible.Top() ); in GetChartInsertPos()
1994 aInsertPos.Y() = aSelection.Bottom() + 1; in GetChartInsertPos()
1996 aInsertPos.Y() = aSelection.Top() - nNeededHeight; in GetChartInsertPos()
2000 … aInsertPos.X() = std::min( aSelection.Right(), aVisible.Right() ) - nNeededWidth + 1; in GetChartInsertPos()
2002 aInsertPos.X() = std::max( aSelection.Left(), aVisible.Left() ); in GetChartInsertPos()
2009 aInsertPos.X() = aSelection.Left() - nNeededWidth; in GetChartInsertPos()
2011 aInsertPos.X() = aSelection.Right() + 1; in GetChartInsertPos()
2012 aInsertPos.Y() = std::max( aSelection.Top(), aVisible.Top() ); in GetChartInsertPos()
2017 Rectangle aCompareRect( aInsertPos, Size( nNeededWidth, nNeededHeight ) ); in GetChartInsertPos()
2019 aInsertPos.X() -= aCompareRect.Right() - aVisible.Right(); in GetChartInsertPos()
2021 aInsertPos.Y() -= aCompareRect.Bottom() - aVisible.Bottom(); in GetChartInsertPos()
2023 if ( aInsertPos.X() < aVisible.Left() ) in GetChartInsertPos()
2024 aInsertPos.X() = aVisible.Left(); in GetChartInsertPos()
2025 if ( aInsertPos.Y() < aVisible.Top() ) in GetChartInsertPos()
2026 aInsertPos.Y() = aVisible.Top(); in GetChartInsertPos()
2031 aInsertPos.X() += nBorder; in GetChartInsertPos()
2032 aInsertPos.Y() += nBorder; in GetChartInsertPos()
2034 return aInsertPos; in GetChartInsertPos()