Lines Matching refs:nCalcLines

759 Size ToolBox::ImplCalcSize( const ToolBox* pThis, sal_uInt16 nCalcLines, sal_uInt16 nCalcMode )  in ImplCalcSize()  argument
815 aSize = ImplCalcFloatSize( ((ToolBox*)pThis), nCalcLines ); in ImplCalcSize()
822 aSize.Height() = nCalcLines * pThis->mnWinHeight; in ImplCalcSize()
824 aSize.Height() = nCalcLines * pThis->mnMaxItemHeight; in ImplCalcSize()
827 aSize.Height() += (nCalcLines-1)*TB_LINESPACING; in ImplCalcSize()
842 aSize.Width() = nCalcLines * pThis->mnMaxItemWidth; in ImplCalcSize()
845 aSize.Width() += (nCalcLines-1)*TB_LINESPACING; in ImplCalcSize()
916 sal_uInt16 nCalcLines; in ImplCalcFloatSizes() local
920 nCalcLines = pThis->ImplCalcBreaks( nCalcSize, &nMaxLineWidth, sal_True ); in ImplCalcFloatSizes()
923 pThis->mpFloatSizeAry->mpSize = new ImplToolSize[nCalcLines]; in ImplCalcFloatSizes()
924 pThis->mpFloatSizeAry->mnLength = nCalcLines; in ImplCalcFloatSizes()
926 memset( pThis->mpFloatSizeAry->mpSize, 0, sizeof( ImplToolSize )*nCalcLines ); in ImplCalcFloatSizes()
928 nTempLines = nLines = nCalcLines; in ImplCalcFloatSizes()
5341 sal_uInt16 nCalcLines; in Resizing() local
5353 nCalcLines = ImplCalcLines( this, rSize.Height() ); in Resizing()
5354 if ( nCalcLines < 1 ) in Resizing()
5355 nCalcLines = 1; in Resizing()
5356 rSize = ImplCalcFloatSize( this, nCalcLines ); in Resizing()
5360 nCalcLines = 1; in Resizing()
5361 nTemp = nCalcLines; in Resizing()
5364 (nCalcLines <= mpFloatSizeAry->mpSize[0].mnLines) ) in Resizing()
5366 nCalcLines++; in Resizing()
5367 nTemp = nCalcLines; in Resizing()
5378 Size ToolBox::CalcWindowSizePixel( sal_uInt16 nCalcLines ) const in CalcWindowSizePixel()
5380 return ImplCalcSize( this, nCalcLines ); in CalcWindowSizePixel()
5383 Size ToolBox::CalcWindowSizePixel( sal_uInt16 nCalcLines, WindowAlign eAlign ) const in CalcWindowSizePixel() argument
5385 return ImplCalcSize( this, nCalcLines, in CalcWindowSizePixel()
5433 Size ToolBox::CalcFloatingWindowSizePixel( sal_uInt16 nCalcLines ) const in CalcFloatingWindowSizePixel()
5443 Size aSize = ImplCalcFloatSize( (ToolBox*) this, nCalcLines ); in CalcFloatingWindowSizePixel()