<div class="gmail_quote">On Wed, Jan 18, 2012 at 4:40 PM, Mark <span dir="ltr"><<a href="mailto:markg85@gmail.com">markg85@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="gmail_quote"><div class="im">On Wed, Jan 18, 2012 at 11:06 AM, Alin M Elena <span dir="ltr"><<a href="mailto:alinm.elena@gmail.com" target="_blank">alinm.elena@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


Hi Mark,<br>
<br>
I was reading about your autocompleter.<br>
I have few questions... is it able to use a kde spelling dictionary for it?<br>
I ask that because would be interesting to have it in ktp-text-ui component of<br>
kde-telepathy...<br>
<br>
<br>
regards,<br>
Alin<br><br></blockquote></div><div>Hi Alin,</div><div><br></div><div>At this moment it doesn't have that and i wasn't planning on implementing it. You are however free to patch it with spelling support. As long as it's optional.</div>


<div>I will send the current C++ code that i have for the autocompleter to this thread somewhere tonight.</div><div><br></div><div>Regards,</div><span class="HOEnZb"><font color="#888888"><div>Mark</div></font></span></div>


</blockquote></div><br><div>Better late then never, right ;)</div><div><br></div><div>Here is the code for the string completion part.</div><div>The class is extremely simple. All you need to do is call setData which accepts a stringlist. Then call search("needle") and it will emit every result it finds.</div>

<div>The way i used this is by making a second class that (in my case) does the file system listDir function, makes a list and sends it to the stringcompleter and i let that run in a seperate thread:</div><div><br></div>

<div>StringCompleter completer();</div>QThread myThread();<div>completer.moveToThread(&myThread);</div><div><br></div><div>... connect the signals to corresponding functions:</div>    QObject::connect(&completer, SIGNAL(searchCompleted(QStringList,QString)), this, SLOT( ... ));<br>

QObject::connect(&completer, SIGNAL(searchHit(QString)), this, SLOT( ... ));<div><br></div><div>That way searching won't block anything :)</div><div><br></div><div>Up until now i was just experimenting with this and used the StringCompleter along with QDir directly.. Next up: more serious experimentation, but with KIO! Fingers crossed.</div>