About window
-
If you are referring to the "Help Menu -> About" window, "this":http://qt-project.org/doc/qt-4.8/qmessagebox.html#about might be helpful
-
You can create the custom about box as follows:
@
QMessageBox::about(<parent-widget>,<window-title>,<window-text>)
@<parent-widget> is typically the main window of the app
<window-title> is the title shown on the title bar. Ex. - @tr("About MyApp")@
<window-text> is the content of the window. Ex. - @tr("Here is some info on MyApp")@<window-text> also supports HTML formatting tags to display Rich-Text. Ex. - @tr("<h1><b><i><u>Info on MyApp</u></i></b></h1><br />This is some info")@
-
[quote author="raaghuu" date="1341998381"]You can create the custom about box as follows:
@
QMessageBox::about(<parent-widget>,<window-title>,<window-text>)
@
[/quote]
Doh! I completely missed that one... So yes, there is a default standard about box provided by Qt.