I want to put a qmessagebox that contains greek characters...
Something like this:
msgBox.setWindowTitle("Wallpaper Changer | Βγάλε Webcam-Εικόνα");
msgBox.setText("<b>Αυτή η λειτουÏγία θα είναι διαθÎ*σιμη στην<br>επόμενη Î*κδοση...</b>");
msgBox.
setIconPixmap(QIcon(":/icons/Pictures/Webcam.png").
pixmap(QSize(128,
128)));
msgBox.
setWindowIcon(QIcon(":/icons/Pictures/Webcam.png"));
msgBox.exec();
QMessageBox msgBox;
msgBox.setWindowTitle("Wallpaper Changer | Βγάλε Webcam-Εικόνα");
msgBox.setText("<b>Αυτή η λειτουÏγία θα είναι διαθÎ*σιμη στην<br>επόμενη Î*κδοση...</b>");
msgBox.setIconPixmap(QIcon(":/icons/Pictures/Webcam.png").pixmap(QSize(128,128)));
msgBox.setWindowIcon(QIcon(":/icons/Pictures/Webcam.png"));
msgBox.exec();
To copy to clipboard, switch view to plain text mode
But I get Chinese/strange symbols and not the greek ones I expected. How can this solved ?
Bookmarks