Making QLabel behave like a hyperlink

How can I make a QLabel to behave like a link?

What I mean is that I’d like to be able to click on it and then this would invoke some command on it.

Hello @micae114 ,

Thank you for posting on our forums!
Can we have more information on your request please?
Can we know what are you trying to achieve?

KRegards,


I got the review :

QLabel does this already.

Sample code:

myLabel->setText("<a href=\"http://example.com/\">Click Here!</a>"); 
 myLabel->setTextFormat(Qt::RichText); myLabel->setTextInteractionFlags(Qt::TextBrowserInteraction); myLabel->setOpenExternalLinks(true);