[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: QT Question



it's still display a ????? characters insted of the arabic text.
i changed the application font in main.c to 'Tahoma [Misc]' which supposed to 
have arabic chars.

On Sunday 08 December 2002 12:47, Mohammed Yousif wrote:
> You can also use:
> label->setText(QString::fromUtf8(txt));  if text is a QString
> or
> label->setText(QString::fromUtf8((QString)txt));  if text is not a QString
>
> On Sunday 08 December 2002 09:24, Haydar Net wrote:
> > Salam,
> > try to use:
> >
> > // ISO8859-6 or CP1256 are the Arabic codecs
> > QTextCodec* codec = QTextCodec::codecForName("ISO8859-6");
> > QString UniString =  codec->toUnicode(txt);
> >
> > where txt is the original text and UniString is the new Arabic encoded
> > text then you can do label->setText(UniString);
> >
> > I hope this can help,
> > Haydar
> >
> > Hasanen Naufal wrote:
> > >salam
> > >how can i force qt3 to display an arabic string ( in al QLabel for
> > > example ).
> > >
> > >forgive me for this question but i am new to QT3 & i18n
> > >
> > >thanx.
> > >_______________________________________________
> > >Developer mailing list
> > >Developer at arabeyes dot org
> > >http://arabeyes.org/mailman/listinfo/developer
> >
> > _______________________________________________
> > Developer mailing list
> > Developer at arabeyes dot org
> > http://arabeyes.org/mailman/listinfo/developer