Lines Matching refs:nLineWidth
247 long nLineWidth; // Aktuelle Zeilenlaenge in GetTextLines() local
271 nLineWidth = pDev->GetTextWidth( rStr, nStartPos, nLen ); in GetTextLines()
275 ((nLineWidth >= nWidth) && (nStyle & TEXT_DRAW_WORDBREAK)) ) in GetTextLines()
279 if ( (nLineWidth >= nWidth) && (nStyle & TEXT_DRAW_WORDBREAK) ) in GetTextLines()
281 nLineWidth = nLastLineWidth; in GetTextLines()
311 if ( nLineWidth > nMaxLineWidth ) in GetTextLines()
312 nMaxLineWidth = nLineWidth; in GetTextLines()
315 rLineInfo.AddLine( new TextLineInfo( nLineWidth, nPos, nLen ) ); in GetTextLines()
321 nLineWidth = pDev->GetTextWidth( rStr, nStartPos, nLastLineLen ); in GetTextLines()
322 if ( nLineWidth > nWidth ) in GetTextLines()
327 if ( nLineWidth > nMaxLineWidth ) in GetTextLines()
328 nMaxLineWidth = nLineWidth; in GetTextLines()
340 nLineWidth = pDev->GetTextWidth( rStr, nStartPos, nLen ); in GetTextLines()
341 rLineInfo.AddLine( new TextLineInfo( nLineWidth, nStartPos, nLen ) ); in GetTextLines()
344 nLineWidth = pDev->GetTextWidth( rStr, nStartPos, nLastLineLen ); in GetTextLines()
346 while ( nLineWidth > nWidth ); in GetTextLines()
348 nLastLineWidth = nLineWidth; in GetTextLines()
360 nLastLineWidth = nLineWidth; in GetTextLines()