make Labels on QLineEdit, with the text split by space or comma.
Unsolved
General and Desktop
-
-
And what's the exact problem? Does QLabel::setText() not work for you?
-
Subclass QLineEdit and implement your own painting when not editing. You should be able to draw labels using QPainter. You'll also need to reimplement mouse release event to handle removing the labels (if you need that functionality).