Lines Matching refs:aTotalSize
875 geometry::RealSize2D aTotalSize (0,0); in Layout() local
897 aTotalSize.Width += aSize.Width; in Layout()
899 aTotalSize.Height = ::std::max(aTotalSize.Height, aSize.Height); in Layout()
910 maMinimalSize = aTotalSize; in Layout()
917 if (aTotalSize.Width + nTotalHorizontalGap > aWindowBox.Width) in Layout()
918 nTotalHorizontalGap = aWindowBox.Width - aTotalSize.Width; in Layout()
927 case Center: nX = (aWindowBox.Width - aTotalSize.Width - nTotalHorizontalGap) / 2; break; in Layout()
928 case Right: nX = aWindowBox.Width - aTotalSize.Width - nTotalHorizontalGap; break; in Layout()
932 double nY ((aWindowBox.Height - aTotalSize.Height) / 2); in Layout()
937 maBoundingBox.X2 = nX + aTotalSize.Width + nTotalHorizontalGap; in Layout()
938 maBoundingBox.Y2 = nY + aTotalSize.Height; in Layout()
944 nX+aPartSizes[nIndex].Width, nY+aTotalSize.Height); in Layout()
968 geometry::RealSize2D aTotalSize (0,0); in CalculatePartSize() local
984 aTotalSize.Width += aBSize.Width; in CalculatePartSize()
985 if (aBSize.Height > aTotalSize.Height) in CalculatePartSize()
986 aTotalSize.Height = aBSize.Height; in CalculatePartSize()
990 aTotalSize.Height += aBSize.Height; in CalculatePartSize()
991 if (aBSize.Width > aTotalSize.Width) in CalculatePartSize()
992 aTotalSize.Width = aBSize.Width; in CalculatePartSize()
996 return aTotalSize; in CalculatePartSize()