Re: [Interest] Custom QQuickItem and Geometry Batching

2014-10-08 Thread Gunnar Sletta
On 07 Oct 2014, at 15:37, Andreas Schuller andreas.schul...@student.tugraz.at wrote: On 10/07/2014 12:46 PM, Gunnar Sletta wrote: [...] Is it possible to utilize the z-coordinate of the vertices for this purpose (within a QuickItem)? Or is there a better solution? You have two options.

[Interest] Setup in Open Suse

2014-10-08 Thread safouane chabchoub
Hello every body, I'am OpenSuse user, is there any way to setup the QT-Project? The file donwloaded is a .run file which is not supported by OpenSuse Best Regards, Safouane CHABCHOUB ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Setup in Open Suse

2014-10-08 Thread Frédéric Martinsons
Maybe I'll say something silly but isn't a chmod +x your_file.run ./your_file.run do the job ? At least this is what I do on my Ubuntu. Le 8 oct. 2014 10:10, safouane chabchoub chabchoub.safou...@gmail.com a écrit : Hello every body, I'am OpenSuse user, is there any way to setup the

Re: [Interest] Setup in Open Suse

2014-10-08 Thread Frédéric Martinsons
In a shell of course! Le 8 oct. 2014 10:25, Frédéric Martinsons frederic.martins...@sigfox.com a écrit : Maybe I'll say something silly but isn't a chmod +x your_file.run ./your_file.run do the job ? At least this is what I do on my Ubuntu. Le 8 oct. 2014 10:10, safouane chabchoub

[Interest] Threading Question

2014-10-08 Thread Jason Kretzer
I am a bit confused on threading. Lets say I have Thread A — which is where the program is started — has main(), etc. Inside of main() I instantiate a class called BackgroundClass and I move it to another thread (Thread B). BackgroundClass::init(); QThread *thread = new

Re: [Interest] Threading Question

2014-10-08 Thread Jason Kretzer
Addendum at the bottom… On Oct 8, 2014, at 11:42 PM, Jason Kretzer ja...@gocodigo.com wrote: I am a bit confused on threading. Lets say I have Thread A — which is where the program is started — has main(), etc. Inside of main() I instantiate a class called BackgroundClass and I move it

Re: [Interest] Threading Question

2014-10-08 Thread Constantin Makshin
Two suggestions: 1) add qDebug-s around the emit someSignal(); line to see whether it returns or not, hanging somewhere in validateResult(); 2) try to explicitly specify the Qt::QueuedConnection type for the someSignal() connection — if it helps, then the [most likely] cause is Qt choosing wrong

Re: [Interest] Threading Question

2014-10-08 Thread Tony Rietwyk
Hi Jason, Are you calling QApplication.exec in your main thread? In not, I don't think the slots there will be activated. Regards, Tony -Original Message- From: interest-bounces+tony=rightsoft.com...@qt-project.org [mailto:interest-bounces+tony=rightsoft.com...@qt-project.org]