Re: [PyQt] QString, QTextEdit and Encoding problem

2011-06-28 Thread Andreas Pakulat
On 28.06.11 08:37:06, Yaşar Arabacı wrote: Thanks for the info. Do you know any decent example, tutorial, documents etc. about qt network stack? There should be examples coming with PyQt, including a small chat-app. In addition look at http://doc.qt.nokia.com/4.7/qtnetwork.html and the check

Re: [PyQt] QString, QTextEdit and Encoding problem

2011-06-28 Thread Yaşar Arabacı
Thanks. Appereantly package for my distro didn't include them so I downloaded original source files. 2011/6/28 Andreas Pakulat ap...@gmx.de On 28.06.11 08:37:06, Yaşar Arabacı wrote: Thanks for the info. Do you know any decent example, tutorial, documents etc. about qt network stack?

[PyQt] QString, QTextEdit and Encoding problem

2011-06-27 Thread Yaşar Arabacı
Hi, I am havin an encoding problem. If you have read my earlier post, I was doing a simple chat application. Here is how it goes. === Client Class === def on_lineEdit_returnPressed(self): text= self.ui.lineEdit.text() self.ui.lineEdit.selectAll()

Re: [PyQt] QString, QTextEdit and Encoding problem

2011-06-27 Thread Andreas Pakulat
On 28.06.11 06:26:24, Yaşar Arabacı wrote: Hi, I am havin an encoding problem. If you have read my earlier post, I was doing a simple chat application. Here is how it goes. You're not converting your data correctly. On the sending side you do it properly, decoding to utf-8 and then sending

Re: [PyQt] QString, QTextEdit and Encoding problem

2011-06-27 Thread Yaşar Arabacı
Thanks for the info. Do you know any decent example, tutorial, documents etc. about qt network stack? 2011/6/28 Andreas Pakulat ap...@gmx.de On 28.06.11 06:26:24, Yaşar Arabacı wrote: Hi, I am havin an encoding problem. If you have read my earlier post, I was doing a simple chat