In Qt 4.5 the methods you are searching for are called
QApplication::setWindowIcon(const QIcon &)
or
QWidget::setWindowIcon(const QIcon &).
You can use every image format for icons that Qt supports (e.g. BMP, GIF, JPG, PNG, TIFF, XPM, ...).
Maybe you want to have a look at Qt's documentation at http://doc.qtsoftware.com/4.5/index.html or use the Qt Assistant.
Hope that helps you.
