<br><br><div class="gmail_quote">2008/12/1 Phil Thompson <span dir="ltr">&lt;<a href="mailto:phil@riverbankcomputing.com">phil@riverbankcomputing.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Mon, 1 Dec 2008 11:23:38 +0100, &quot;piotr maliński&quot; &lt;<a href="mailto:riklaunim@gmail.com">riklaunim@gmail.com</a>&gt;<br>
wrote:<br>
<div class="Ih2E3d">&gt; I&#39;m trying to use QScintilla with a file opened with QFile (and not<br>
Python<br>
&gt; functions). With files that contain ascii only characters it works, but<br>
for<br>
&gt; utf-8 files with non-ascii character it doesn&#39;t - the code snippet:<br>
&gt; ############################<br>
&gt; self.ui.editor.setUtf8(True)<br>
&gt; ...<br>
&gt; text =QtCore.QFile(url)<br>
&gt; text.open(QtCore.QIODevice.ReadWrite | QtCore.QIODevice.Text)<br>
<br>
</div>Have you tried it without the Text flag?<br>
<div class="Ih2E3d"></div></blockquote><div><br><br>Removing it doesn&#39;t help<br><br>&nbsp;</div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d"><br>
&gt; txt = QtCore.QString(text.readAll())<br>
&gt; self.ui.editor.setText(txt)<br>
&gt; text.close()<br>
&gt; ############################<br>
&gt;<br>
&gt; If I use:<br>
&gt; self.ui.editor.setText(txt.toUtf8())<br>
&gt; QSci will thow exception (TypeError: argument 1 of<br>
QsciScintilla.setText()<br>
&gt; has an invalid type) as it wants QString and not QByteArray :) Is there a<br>
&gt; file encoding safe way to open a text file and pass it to QScintilla<br>
&gt; widget?<br>
&gt; I was using codecs and normal open with try/except - try another way/<br>
&gt; solution but it was bit uggly, and had problems with some files<br>
encodings.<br>
<br>
</div>You could also try QsciScintilla.read().<br>
<br>
Note, QScintilla has its own mailing list.<br>
<font color="#888888"><br>
Phil<br>
</font></blockquote></div><br>Didn&#39;t seen that one ;) <br><br>I&#39;ll stick to codecs for now. Next will be detecting file encoding and encode the text accordingly so it would display correctly :)<br>