An "About" message box for a GUI with QT
Posted
by Narek
on Stack Overflow
See other posts from Stack Overflow
or by Narek
Published on 2010-03-17T18:26:45Z
Indexed on
2010/03/17
18:31 UTC
Read the original article
Hit count: 291
QMessageBox::about( this, "About Application",
"<h4>Application is a one-paragraph blurb</h4>\n\n"
"Copyright 1991-2003 Such-and-such. "
"For technical support, call 1234-56789 or see\n"
"<a href=\"http://www.such-and-such.com\">http://www.such-and-such.com</a>" );
This code is creating the About message box which I wanted to have with two excaptions: 1. I would like to change the icon in the message box with an aaa.png file 2. And I would like to have the link clickable. It looks like hyperlink (it is blue and underlined) but mouse click does not work
Any ideas?
© Stack Overflow or respective owner