/**
Replaces parts of the @a label string with ellipsis, if needed, so
- that it doesn't exceed @a maxWidth.
-
- Note that this functions is guaranteed to always returns a string
- whose rendering on the given DC takes less than @a maxWidth pixels
- in horizontal.
+ that it fits into @a maxWidth pixels if possible.
+
+ Note that this function does @em not guarantee that the returned string
+ will always be shorter than @a maxWidth; if @a maxWidth is extremely
+ small, ellipsized text may be larger.
@param label
The string to ellipsize
wxString ret(curLine);
ret.erase(initialCharToRemove, nCharsToRemove);
- int removedPx;
- if (initialCharToRemove >= 1)
- removedPx = charOffsetsPx[initialCharToRemove+nCharsToRemove-1] - charOffsetsPx[initialCharToRemove-1];
- else
- removedPx = charOffsetsPx[initialCharToRemove+nCharsToRemove-1];
- wxASSERT(removedPx >= excessPx);
-
- // if there is space for the replacement dots, add them
- if ((int)totalWidthPx-removedPx+replacementWidthPx <= maxFinalWidthPx)
- ret.insert(initialCharToRemove, wxELLIPSE_REPLACEMENT);
-
- // if everything was ok, we should have shortened this line
- // enough to make it fit in maxFinalWidthPx:
- wxASSERT(dc.GetTextExtent(ret).GetWidth() <= maxFinalWidthPx);
+ ret.insert(initialCharToRemove, wxELLIPSE_REPLACEMENT);
return ret;
}