QT mengubah judul jendela

//If you are using QtDesigner, on the property tab, there is an editable
//property called windowTitle which can be found under the QWidget section.
//The property tab can usually be found on the lower right part of
//the designer window.


//or you can use this member function of QWidget
void QWidget::setWindowTitle ( const QString & );
Sorann