I have a QMessageBox,
MessageBox loadMsgBox;
loadMsgBox.setText("Loading file...");
loadMsgBox.setWindowTitle(" ");
loadMsgBox.
setIconPixmap(QPixmap("./icons/icon_loading.gif"));
loadMsgBox.exec();
MessageBox loadMsgBox;
loadMsgBox.setText("Loading file...");
loadMsgBox.setWindowTitle(" ");
loadMsgBox.setIconPixmap(QPixmap("./icons/icon_loading.gif"));
loadMsgBox.exec();
To copy to clipboard, switch view to plain text mode
I want to set the main icon on the title bar, by default it shows a white rectangle. How do i change that?
Bookmarks