[Interest] QtLocation error

2013-03-18 Thread Ramakanthreddy_Kesireddy
Hi, I took the latest QtLocation sources from git and build the QtLocation module on Qt5.0. The Qt location libraries are installed in qtbase/lib. However, when I tried to run example mapviewer application in QtLocation, it gives error module QtLocation is not installed. Please let

Re: [Interest] Qt Publish and Subscribe module on Qt5

2013-03-18 Thread Aaron McCarthy
Hi Don, On Thu, 14 Mar 2013 04:15:18 AM Don Sanders wrote: Is a version of the Qt Publish and Subscribe module that works with Qt 5 available? Publish and subscribe is listed here http://qt-project.org/wiki/Qt-Add-ons-Modules as 'actively maintained in Qt 5 and ... proven to work in the

[Interest] QT Designer and Custom Editor

2013-03-18 Thread Manuele Conti
Hi All, I developed a custom qt designer plugins with a custom property. Now I want to create a custom editor for a QString property. Any idea? Cheers, Manuele ___ Interest mailing list Interest@qt-project.org

[Interest] opengl graphics system status in 4.8.x?

2013-03-18 Thread Simon St James
Hi all, I am currently working on emscripten-qt (http://vps2.etotheipiplusone.com:30176/redmine/projects/emscripten-qt/wiki/Demos/), a project that uses Emscripten (https://github.com/kripken/emscripten/wiki) to compile Qt 4.8.x to Javascript and run in a browser using an HTML5 canvas for

Re: [Interest] opengl graphics system status in 4.8.x?

2013-03-18 Thread Thiago Macieira
On segunda-feira, 18 de março de 2013 20.07.34, Simon St James wrote: Currently, performance is surprisingly good considering we are still using the raster graphics system where everything is plotted pixel by pixel by Qt and then flushed to the canvas after pixel format conversion. However,

[Interest] how to block run function of QRunnable class

2013-03-18 Thread 彭亮
Hi all I don’t know how to block run function several seconds of Qrunnable class. Andybody know? Thanks Ken ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] how to block run function of QRunnable class

2013-03-18 Thread Amogh Kudari
Hi Pengliang, I am not pretty sure but it may be possible as QThreadPoolThread is a friend class of Qrunnable class and QThreadPoolThread is derived from QThread and QThread has the sleep method. Hope this helps. Regards, Amogh. On Tue, Mar 19, 2013 at 8:11 AM, pengliang(彭亮)

[Interest] 答复: how to block run function of QRunnable class

2013-03-18 Thread 彭亮
Hi Thank you. But I check source code of Qt, QthreadPool is derived from Qobject, not Qthread. Thanks Ken 发件人: Amogh Kudari [mailto:amogh.kuda...@gmail.com] 发送时间: 2013年3月19日 11:53 收件人: pengliang(彭亮) 抄送: Interest@qt-project.org 主题: Re:

Re: [Interest] 答复: how to block run function of QRunnable class

2013-03-18 Thread Amogh Kudari
Hi Pengliang, It's *not **QthreadPool* I referred to. Its *QThreadPoolThread *which is derived from QThread. I am referring QT5.0. //QThreadpool.cpp /* QThread wrapper, provides synchronizitaion against a ThreadPool */ class *QThreadPoolThread *: public *QThread* { public:

[Interest] 答复: 答复: how to block run function of QRunnable class

2013-03-18 Thread 彭亮
Hi I am sorry, I use Qt4. So, anybody know? Thanks Ken 发件人: Amogh Kudari [mailto:amogh.kuda...@gmail.com] 发送时间: 2013年3月19日 13:31 收件人: pengliang(彭亮) 抄送: Interest@qt-project.org 主题: Re: 答复: [Interest] how to block run function of QRunnable class

Re: [Interest] ´ð¸´: how to block run function of QRunnable class

2013-03-18 Thread Tony Rietwyk
Hi Ken, In Qt 4, you have to define your own override of QThread and expose the protected static sleep methods. I'm don't know about Qt 5. Tony From: interest-bounces+tony=rightsoft.com...@qt-project.org [mailto:interest-bounces+tony=rightsoft.com...@qt-project.org] On Behalf

Re: [Interest] 答复: 答复: how to block run function of QRunnable class

2013-03-18 Thread Amogh Kudari
Hi, Yes its also present in Qt4. I checked Qt4.8.2 source.(qt4.8.2/src/corelib/concurrent/qthreadpool.cpp). Regards, Amogh. On Tue, Mar 19, 2013 at 11:06 AM, pengliang(彭亮) pengli...@founder.comwrote: Hi I am sorry, I use Qt4. So, anybody know? ** ** Thanks Ken

[Interest] 答复: ´ð¸´: how to block run function of QRunnable class

2013-03-18 Thread 彭亮
Hi I have defined a class derived from Qrunnable and Qthread. Now, i call sleep in run function, it worked perfect. Thanks Ken 发件人: interest-bounces+pengliang=founder@qt-project.org [mailto:interest-bounces+pengliang=founder@qt-project.org]