I have a QGraphicsItem
that has text on it. I want this text to be editable, so that if the user double-clicks it, it will enter an edit mode. It seems like the easiest way to do this would be to change the text into a QLineEdit
and let the user click away the focus or press enter when they're done.
How can I add a QLineEdit
to a QGraphicsItem
? I have subclassed the QGraphicsItem
so I have access to its internals.