Re: [Interest] Qt 5.6.0 Offline Installer in "Headless" or "Automated" mode

2016-04-07 Thread Marttila Katja
Hi Mike, You can do it via control scripting. Here you can find information how the script should look like: http://stackoverflow.com/questions/25105269/silent-install-qt-run-installer-on-ubuntu-server --Katja From: Interest [mailto:interest-bounces+katja.marttila=theqtcompany@qt-project.or

[Interest] Qt "Tools" GPLv3 Exception 1 Confusion

2016-04-07 Thread d3fault
I’m confused by the ending of Exception 1 to the GPLv3 for Qt "tools" ( http://code.qt.io/cgit/qt-creator/qt-creator.git/tree/LICENSE.GPL3-EXCEPT?h=4.0 ). The part that reads: “you may create a larger work which contains the output of this application and distribute that work under terms of your c

[Interest] Problem location symbol on android

2016-04-07 Thread Lorne Sturtevant
I have a project that I'm trying to get working on android. I'm using Qt Creator to build and run everything. The program compiles, links and deploys. When it runs, I get the following error: Starting remote process.V/Zygote (20264): Switching descriptor 33 to /dev/null V/Zygote (20264): Switc

Re: [Interest] [Qt3D] Use a QImage as a QTextureImage

2016-04-07 Thread Sean Harmer
Hi Andy, sorry forgot to reply to this. You can use the functor of QTextureImage and either pass your pre-prepared image in a as a member of your custom functor or you can do the actual painting using QPainter in the functors function call operator. We aim to eventually add a convenience class

Re: [Interest] Return value from QProcess

2016-04-07 Thread Thiago Macieira
On quinta-feira, 7 de abril de 2016 15:40:59 PDT Duane wrote: > > In the last two cases, the return value is a "wait status" that > > can > > be examined using the macros described in waitpid(2). (i.e., > > WIFEXITED(), WEXITSTATUS(), and so on). > > Ok thanks.

Re: [Interest] Return value from QProcess

2016-04-07 Thread Duane
On 07/04/2016 12:16 PM, Thiago Macieira wrote: On quinta-feira, 7 de abril de 2016 08:47:05 PDT Duane wrote: /* If WIFEXITED(STATUS), the low-order 8 bits of the status. */ #define __WEXITSTATUS(status) (((status) & 0xff00) >> 8) BTW $ printf %x\\n 4531 11b3 0x11 is 17. So QProcess is cor

Re: [Interest] CLion to replace QtCreator?

2016-04-07 Thread Konstantin Tokarev
07.04.2016, 20:26, "Shantanu Tushar" : > Hi, > > On Tue, Apr 5, 2016 at 7:08 PM, NoMercy wrote: >> I totally disagree with you here, JB products are way faster in code >> completion for instance and WY smarter... > > He was talking about load times and stuff. I've used a couple of JetBrains

Re: [Interest] CLion to replace QtCreator?

2016-04-07 Thread Shantanu Tushar
Hi, On Tue, Apr 5, 2016 at 7:08 PM, NoMercy wrote: > I totally disagree with you here, JB products are way faster in code > completion for instance and WY smarter... > He was talking about load times and stuff. I've used a couple of JetBrains products at work (PyCharm, Rubymine) and they ar

Re: [Interest] QPalette or QLinearGradient does not work on sub widget

2016-04-07 Thread Berkay Elbir
Finally, I solved it. When I use ui->colorBarWidget->setAutoFillBackground(true) , all colours are visible. This is default false. In addition, you are right about size. Thank you very much. > On 06 Apr 2016, at 14:54, Berkay Elbir wrote: > > Hello, > > Thank you for your answer. But I tr

Re: [Interest] Signal Slot Ordering (or Not)

2016-04-07 Thread Thiago Macieira
On quinta-feira, 7 de abril de 2016 15:38:03 PDT Peter M. Groen wrote: > I'm expecting the output would be in ascending order, but every once in > a while, the output is all thrown together. That is quite unexpected, > based on the documentation. > > Is this a bug, or by design? It's a bug in you

Re: [Interest] Return value from QProcess

2016-04-07 Thread Thiago Macieira
On quinta-feira, 7 de abril de 2016 08:47:05 PDT Duane wrote: > >> /* If WIFEXITED(STATUS), the low-order 8 bits of the status. */ > >> #define__WEXITSTATUS(status) (((status) & 0xff00) >> 8) > > > > BTW > > > > $ printf %x\\n 4531 > > 11b3 > > > > 0x11 is 17. So QProcess is correct. > >

Re: [Interest] [Qt3D] Use a QImage as a QTextureImage

2016-04-07 Thread Andy
[bump] Does anyone have any suggestions on how to use an in-memory QImage as a QTextureImage? Or any other way to create a QNormalDiffuseMapAlphaMaterial from an in-memory QImage? I must be missing something obvious. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney

[Interest] Signal Slot Ordering (or Not)

2016-04-07 Thread Peter M. Groen
In a simple setup ( One sender object with a signal, One receiver with a slot, argument is sequence number, both objects running in a single thread ) some unexpected behaviour (at least for me) is noticed. The connect between the mentioned signal / slot is done with Qt::DirectConnection. Accordin

Re: [Interest] Return value from QProcess

2016-04-07 Thread Duane
On 06/04/2016 1:22 PM, Thiago Macieira wrote: On quarta-feira, 6 de abril de 2016 08:47:58 PDT Thiago Macieira wrote: On quarta-feira, 6 de abril de 2016 10:47:39 PDT Duane wrote: This works in the sense that it returns 0 when there's no error but it doesn't seem to return the return value from

Re: [Interest] Return value from QProcess

2016-04-07 Thread Duane
On 06/04/2016 3:00 PM, Jérôme Godbout wrote: You should use a more complete bash command that perform the insert mod, not an actual command but just the raw idea here: if [[ $(lsmod | grep "Profibus") != "ProfileBus" ]]; then insmod Profibus fi Maybe you should check with modprobe to check if t

[Interest] (no subject)

2016-04-07 Thread Jérôme Lanteri
If camera example from QT official example (QtWidget code) is runing but show me a black screen instead fo images from camera (and QML example code works fine, with same material, same computer, works fine). How can i find/resolve this problem ? (i'm searching for a way to debug this) Is there som

Re: [Interest] qtwebview with qtwebchannel

2016-04-07 Thread Sylvain Pointeau
On Thu, Apr 7, 2016 at 11:23 AM, Milian Wolff wrote: > On Thursday, April 7, 2016 9:38:01 AM CEST Sylvain Pointeau wrote: > > Hello, > > > > Do you have any idea how to use WebSocket or WebChannel on iOS? > > Should I conclude that we cannot do hybrid apps with Qt on iOS (works on > > desktop, do

Re: [Interest] qtwebview with qtwebchannel

2016-04-07 Thread Sylvain Pointeau
Hello, Do you have any idea how to use WebSocket or WebChannel on iOS? Should I conclude that we cannot do hybrid apps with Qt on iOS (works on desktop, don't know about Android)? Best regards, Sylvain On Thu, Mar 31, 2016 at 5:43 PM, Sylvain Pointeau < sylvain.point...@gmail.com> wrote: > > I