[Interest] Build for Android with Qt 5.4 on Windows

2015-01-23 Thread Igor Mironchik
Hi. I'm building a project on Windows for Android with Qt 5.4. Compilation is successful. But next build step fails with next error: "c:/Program Files (x86)/Git/bin/sh.exe": line 1: C:ThirdpartyAndroidNDK/toolchains/arm-linux-androideabi-4.9/prebuilt/windows-x86_64/bin/arm-linux-androideabi-r

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Scott Aron Bloom
Understood, which is why I want to build them myself ;) -Original Message- From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of Thiago Macieira Sent: Friday, January 23, 2015 11:12 AM To: interest@

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Thiago Macieira
On Friday 23 January 2015 18:49:12 Scott Aron Bloom wrote: > Even on 32 bit VS 2013, my applications that I build against the Qt I > download wont run. Which in my past experience has been tied to libraries > built against different compilers. It might still be, if you don't have the exact same v

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Scott Aron Bloom
> We built Qt 5.3.2 with OpenSSL 1.0.1i and ICU 53.1, using both Visual Studio > 2010 and 2013. Other build tools were Perl 5.16.2 (later should work also), > Python 2.7.3 (version 3.x.y not tested) and Ruby 1.9.3p448 (versions 2.0.x > and 2.1.x not tested). > > Our configure call is: > > conf

Re: [Interest] Order of events on shutdown...

2015-01-23 Thread Thiago Macieira
On Friday 23 January 2015 17:37:57 Bo Thorsen wrote: > Den 23-01-2015 kl. 17:15 skrev Igor Mironchik: > > Hi. > > > > Does somebody know what is the order of events on shutdown of application? > > > > Say, if I click close button on window - close event occurs... What next? > > What signals will

Re: [Interest] QSharedPointer and qRegisterMetaType

2015-01-23 Thread Igor Mironchik
On Fri, 23 Jan 2015 20:25:03 +0300, Carsten Schneemann wrote: > Hi Igor, > > if you're using the code quoted in your message then you have simply > registered your pointer class with the wrong type name. If you use > qRegisterMetaType("SharedInt"); > then things should work. Ah, great thanks

[Interest] How to use charts in designer?

2015-01-23 Thread Jason H
I've got a commercial license, and I want to layout a chart in Designer. When I try to promote it from QWidget to designer, then run it I get an error. In the .h generated for the form by Designer: #ifndef UI_FORM_H #define UI_FORM_H #include #include #include #include #include #include #

Re: [Interest] QSharedPointer and qRegisterMetaType

2015-01-23 Thread Carsten Schneemann
Hi Igor, if you're using the code quoted in your message then you have simply registered your pointer class with the wrong type name. If you use qRegisterMetaType("SharedInt"); then things should work. You should also be careful with typedefs like "SharedInt" for your pointer class. Qt's meta t

Re: [Interest] Order of events on shutdown...

2015-01-23 Thread Bo Thorsen
Den 23-01-2015 kl. 17:15 skrev Igor Mironchik: > Hi. > > Does somebody know what is the order of events on shutdown of application? > > Say, if I click close button on window - close event occurs... What next? > What signals will be emitted from QApplication? What events? > > And the same question

[Interest] Order of events on shutdown...

2015-01-23 Thread Igor Mironchik
Hi. Does somebody know what is the order of events on shutdown of application? Say, if I click close button on window - close event occurs... What next? What signals will be emitted from QApplication? What events? And the same question for mobile platforms? If I press "Home" button what will

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Michael Jackson
On Jan 23, 2015, at 1:38 AM, Rainer Wiesenfarth wrote: > Am 23.01.2015 um 05:15 schrieb Scott Aron Bloom: >> What version of OpenSSL does Qt build against on windows? > > Hi Scott (and others that might be interested), > > here is how we built Qt 5.3.2 on Windows. Might include nonsense, but

Re: [Interest] Building Qt5 with Intel C++ under Windows

2015-01-23 Thread Carsten Schneemann
Hi Jan-Arve, thanks a lot for your suggestions. I agree that simply using MSVC to build just iAccessible2 should do the job, but I would keep that as a last resort solution (i.e. if it ever turns out to be more than a missing header or so) since it's... ugly, as you said. As far as I can see a

Re: [Interest] Building Qt5 with Intel C++ under Windows

2015-01-23 Thread Saether Jan-Arve
Sorry for top posting. I only have OWA access here... Yeah, likely a missing include, which root cause can be that icc is not fully MSVC compliant. Since the files are generated by MIDL tool it seems to assume that a compiler from the same toolchain willl be used to compile the generated files,

[Interest] Unmatched platform conditions when using device specs

2015-01-23 Thread Fatih Aşıcı
Hi, I am trying to package qtwebengine for buildroot. We are using a custom device spec for buildroot: linux-buildroot-g++. qtwebengine cannot be built because of the following lines in qtwebengine/tools/qmake/mkspecs/features/functions.prf: linux-g++*:!isGCCVersionSupported():return(false)

[Interest] QSharedPointer and qRegisterMetaType

2015-01-23 Thread Igor Mironchik
Hi. How can I register, for example, QSharedPointer< int > in meta type system. I'm trying to do the following: typedef QSharedPointer< int > SharedInt; qRegisterMetaType< SharedInt > ( "Tick" ); but when I'm trying to connect to such signal as Qt::QueuedConnection type I receive message: QO

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Koehne Kai
> -Original Message- > From: Scott Aron Bloom [mailto:scott.bl...@onshorecs.com] > Sent: Friday, January 23, 2015 9:26 AM > To: Scott Aron Bloom; Koehne Kai; Thiago Macieira; interest@qt-project.org > Subject: RE: [Interest] Building the latest Qt 5.X > > My concern with OpenSSL, in the

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Scott Aron Bloom
My concern with OpenSSL, in the past, there have been binary incompatibility issues (on windows in particular, since I have to ship the openssl dlls) from what Qt expects and a particular version. Meaning, when I stick with the OpenSSL that was built with Qt when it was made, yes, its security

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Thiago Macieira
On Friday 23 January 2015 04:15:29 Scott Aron Bloom wrote: > Thanks, what version of GCC do you recommend? The latest released (right now, 4.9.2)/ > What version of OpenSSL does Qt build against on windows? Again, the latest. No point in starting a project with anything short of the latest. And

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Scott Aron Bloom
After speaking withsome offline, it looks like Ill be able to use webengine without much difficulty.. so Ill try that instead -Original Message- From: Koehne Kai [mailto:kai.koe...@theqtcompany.com] Sent: Friday, January 23, 2015 0:02 AM To: Scott Aron Bloom; Thiago Macieira; interest@qt

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Koehne Kai
> -Original Message- > From: interest-bounces+kai.koehne=theqtcompany@qt-project.org > [...] > Fortgot to ask.. > > What version of OpenSSL does Qt build against on windows? Anything newer than 1.0.0 IIRC. The official binaries are right now built with 1.0.1 series. Regards Kai W

Re: [Interest] Building the latest Qt 5.X

2015-01-23 Thread Koehne Kai
> -Original Message- > From: interest-bounces+kai.koehne=theqtcompany@qt-project.org > [...] > This is how: > > > I have always built on linux, by simply running configure, then make, > > then make install. > > Any problems with this? > > Yea, it doesn't include the nec