app = QApplication( sys.argv )
box = QMessageBox()
# Window Title
box.setWindowTitle( "Hello World." )
# Icon: Information, Warning, Question, Critical
box.setIcon( QMessageBox.Information )
# Short version of the information
box.setText( "Hello World!" )
# Inform...