Lines Matching refs:aDesktop
2098 Rectangle aDesktop = pWin->GetDesktopRectPixel(); in GetChartDialogPos() local
2107 if ( aDesktop.Bottom() - aObjAbs.Bottom() >= rDialogSize.Height() + aSpace.Height() ) in GetChartDialogPos()
2114 else if ( aObjAbs.Top() - aDesktop.Top() >= rDialogSize.Height() + aSpace.Height() ) in GetChartDialogPos()
2123 … bool bFitLeft = ( aObjAbs.Left() - aDesktop.Left() >= rDialogSize.Width() + aSpace.Width() ); in GetChartDialogPos()
2124 … bool bFitRight = ( aDesktop.Right() - aObjAbs.Right() >= rDialogSize.Width() + aSpace.Width() ); in GetChartDialogPos()
2141 aRet.Y() = aDesktop.Bottom() - rDialogSize.Height(); in GetChartDialogPos()
2149 if ( aRet.X() + rDialogSize.Width() - 1 > aDesktop.Right() ) in GetChartDialogPos()
2150 aRet.X() = aDesktop.Right() - rDialogSize.Width() + 1; in GetChartDialogPos()
2151 if ( aRet.X() < aDesktop.Left() ) in GetChartDialogPos()
2152 aRet.X() = aDesktop.Left(); in GetChartDialogPos()
2153 if ( aRet.Y() + rDialogSize.Height() - 1 > aDesktop.Bottom() ) in GetChartDialogPos()
2154 aRet.Y() = aDesktop.Bottom() - rDialogSize.Height() + 1; in GetChartDialogPos()
2155 if ( aRet.Y() < aDesktop.Top() ) in GetChartDialogPos()
2156 aRet.Y() = aDesktop.Top(); in GetChartDialogPos()