Re: [Interest] Custom Quick view to visualize a List-model of points on a map

2013-09-28 Thread Дмитрий Козлов
27.09.2013 17:22, Ola Røer Thorsen пишет: Hi, I have a c++ list model that inherits QAbstractListModel. It contains a list of waypoints that amongst other things have x,y screen coordinates. Points are added, removed and values are changed runtime. I want to visualize these in Quick2 on top

Re: [Interest] QThread, correct exit.

2013-09-28 Thread Дмитрий Козлов
28.09.2013 13:57, Alexander Syvak пишет: Each thread emits blocking queued singnals to the main thread where button stop executes the code in the previous mail. 2013/9/28 Mandeep Sandhu > On Sat, Sep 28, 2013 at 3:14 PM, Alexander Syvak mailto:ale

Re: [Interest] Semi-OT: Was Nokia net good or bad for Qt?

2013-09-28 Thread Uwe Rathmann
On Fri, 27 Sep 2013 11:20:24 -0700, Thiago Macieira wrote: > The Qt development team grew > considerably during the Nokia time (which is a good thing of that time > too), faster than the commercial business. The insane growth of the Qt development happened before - in the TrollTech days. From th

Re: [Interest] QThread, correct exit.

2013-09-28 Thread Alexander Syvak
Each thread emits blocking queued singnals to the main thread where button stop executes the code in the previous mail. 2013/9/28 Mandeep Sandhu > > On Sat, Sep 28, 2013 at 3:14 PM, Alexander Syvak > wrote: > >> Hello, >> >> how to correctly stop a QThread execution? >> >> I am using >> thread

Re: [Interest] QThread, correct exit.

2013-09-28 Thread Mandeep Sandhu
On Sat, Sep 28, 2013 at 3:14 PM, Alexander Syvak wrote: > Hello, > > how to correctly stop a QThread execution? > > I am using > thread.quit(); > > thread.terminate(); > > Don't terminate. Quitting and waiting should be sufficient. > thread.wait(500); > > Without terminate() thread wait forever.

[Interest] QThread, correct exit.

2013-09-28 Thread Alexander Syvak
Hello, how to correctly stop a QThread execution? I am using thread.quit(); thread.terminate(); thread.wait(500); Without terminate() thread wait forever. Each thread is executing an event loop only (object is moved into thread). ___ Interest mailing