How to show a tool tip when a QLabel is clicked or pressed?
Unsolved
General and Desktop
-
I want to show the tool tip for a QLabel , but i want to make the QLabel as hyperlink and when the link is pressed i want to pop the tool tip , Is there a way we can do this ?
-
@ManiRon
subclass QLabel, hijack the MousePressEvent and inside it call the static QToolTip::showText function -
-
-