Let's assume, that the PangoLayout is ellipsised at the end with
PANGO_ELLIPSIZE_END.
Now the text ist too long and pango_layout_is_ellipsized
(m_PangoLayout) actually returns true.
How do I figure out, where the actual ellipse is located, and where my
text in that line ends?
When I iterate through the lines of text and look at a line with
PangoLayoutLine *pangoLayoutLine = pango_layout_get_line_readonly(
m_PangoLayout, line );
and then retrieve
pangoLayoutLine->start and pangoLayoutLine->length,
then I get a longer text, then actually displayed.