Salut
Je dois écrire une application Qt en utilisant l'alphabet n'ko (http://en.wikipedia.org/wiki/N%27ko). Qt supporte l'alphabet selon la doc.
J'ai écrit donc un simple button sous Ubuntu, et tout fonctionne :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
#include <QtGui>
 
int main(int argv, char **args)
{
    QApplication app(argv, args);
    QPushButton button(QObject::trUtf8("\u07d2\u07de\u07cf"));
 
    QObject::connect(&button, SIGNAL(clicked()), qApp, SLOT(quit()));
    button.show();
 
    return app.exec();
}
Malheureusement, quand je porte l'application sous Windows Xp, j'obtiens des carrés.
Quelqu'un a-t-il une idée ???