Re: [Interest] QFile::write(const QByteArray&) does not write, all data?

2018-05-17 Thread alexander golks
Am Thu, 17 May 2018 10:31:55 -0500 schrieb Roland Hughes : > On 05/17/2018 09:11 AM, alexander golks wrote: > >> my code was: > >>qint64 res = f.write(data); > > just for the curious ones: > > > > i have at least compiled 5.6.4 now, but i can not produce the error with my > > qt5core. > > u

[Interest] Displaying Video in Qt3D

2018-05-17 Thread Ben Hoff
I must be off my rocker, but I'd like to display video within Qt3D. I already have the raw pixel data, but I'm not sure how to pass it in. >From my research online, the suggestion is to write the raw data directly to the FrameBuffer Object, but Qt3D doesn't appear to expose this to you. The next c

Re: [Interest] Can't upload app to iOS App Store when building with Qt 5.9.x

2018-05-17 Thread maitai
Hi again Rogério, You made me worried so I just uploaded another one (beta, so not full validation by Apple), Qt 5.9.4, latest of latest xcode (one update was pending). No problem at all so far, beta testers have received the app. Philippe Le 17-05-2018 17:59, maitai a écrit : Hi Rogério,

Re: [Interest] Can't upload app to iOS App Store when building with Qt 5.9.x

2018-05-17 Thread maitai
Hi Rogério, FYI last time I uploaded my ios app (qt 5.9.4) to itunes was about a month ago and I didn't have any problems (using latest xcode). Regards, Philippe Le 17-05-2018 17:49, Rogerio Nicolau a écrit : Thanks Nuno I get that, but I still think that Apple has changed something in the

Re: [Interest] Can't upload app to iOS App Store when building with Qt 5.9.x

2018-05-17 Thread Nuno Santos
Which SDK are you using on Apple side? To deploy apps with Qt 5.9 I’m using iOS SDK 10 instead of 11, on a older Mac. > On 17 May 2018, at 16:49, Rogerio Nicolau > wrote: > > Thanks Nuno > > I get that, but I still think that Apple has changed something in the store > verification process th

Re: [Interest] Can't upload app to iOS App Store when building with Qt 5.9.x

2018-05-17 Thread Rogerio Nicolau
Thanks Nuno I get that, but I still think that Apple has changed something in the store verification process that makes builds with Qt 5.9 not compatible. So you can't create an ipa for the store, just for adhoc development. Could be a bug in xcode, I'm on v9.3, so pretty much the latest, but

Re: [Interest] QFile::write(const QByteArray&) does not write, all data?

2018-05-17 Thread Roland Hughes
On 05/17/2018 09:11 AM, alexander golks wrote: my code was: qint64 res = f.write(data); just for the curious ones: i have at least compiled 5.6.4 now, but i can not produce the error with my qt5core. using 5.6.3 from qt, error exists. using mine, does not exist... getting the error code

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-17 Thread Thiago Macieira
On Thursday, 17 May 2018 05:01:18 PDT Jean-Michaël Celerier wrote: > Is there a reason why calling qRegisterStreamOperators() would't > work ? Because the vector containng the list of function pointers doesn't exist for metatypes < QMetaType::User. You can't modify the built-in types. Deriving f

Re: [Interest] QFile::write(const QByteArray&) does not write all data?

2018-05-17 Thread Thiago Macieira
On Thursday, 17 May 2018 07:02:17 PDT alexander golks wrote: > i have at least compiled 5.6.4 now, but i can not produce the error with my > qt5core. using 5.6.3 from qt, error exists. using mine, does not exist... > > getting the error code directly after the f.write(data) gives me error code > 1

Re: [Interest] QFile::write(const QByteArray&) does not write all data?

2018-05-17 Thread alexander golks
Am Thu, 17 May 2018 16:02:17 +0200 schrieb alexander golks : > Am Fri, 11 May 2018 08:11:04 +0200 > schrieb alexander golks : > > > my code was: > > qint64 res = f.write(data); > > just for the curious ones: > > i have at least compiled 5.6.4 now, but i can not produce the error with my >

Re: [Interest] Can't upload app to iOS App Store when building with Qt 5.9.x

2018-05-17 Thread Nuno Santos
Rogerio, The upload to the store is a complete aside process. It is completely independent from Qt itself. If you can build your app, test it and archive it, then the problem is other. Try to updated your Xcode to the latest version or use the Application Loader. Regards, Nuno > On 17 May 20

[Interest] Can't upload app to iOS App Store when building with Qt 5.9.x

2018-05-17 Thread Rogerio Nicolau
Hi I am trying to release a new version of my app to the iOS app store. I'm using Qt 5.9.x and it builds fine and can be sideloaded but it causes xcode to freeze when trying to validate or export to the app store. I don't have this problem with Qt 5.10 but this does not support iOS 9 which I

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-17 Thread Jason H
Nevermind me. That's not true either.   I don't know what I changed, but it just started working this morning.   Sent: Thursday, May 17, 2018 at 10:11 AM From: "Jason H" To: "Jason H" Cc: "Jean-Michaël Celerier" , "Thiago Macieira" , interest Subject: Re: [Interest] QDatastream, QMap, QImag

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-17 Thread Jason H
So it looks like it actually works! I was mistaken.   My mistake was in that thinking I can just change QVariantMaps down the tree. When I modify a Map in a Map, it looks like it detaches, and I have to back-patch  to the root map.    Given: map1["a"]=map2; map2["b"]=map3;   map3["image"]=

Re: [Interest] QFile::write(const QByteArray&) does not write all data?

2018-05-17 Thread alexander golks
Am Fri, 11 May 2018 08:11:04 +0200 schrieb alexander golks : > my code was: > qint64 res = f.write(data); just for the curious ones: i have at least compiled 5.6.4 now, but i can not produce the error with my qt5core. using 5.6.3 from qt, error exists. using mine, does not exist... getting

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-17 Thread Jason H
I'm not familar with that function,  but I would guess because it's a QVariant holding a QImage? There already are those stream operators, and I think they are already registered.   I'm not understanding why QVariatn doesn't know how/why to call it? I'd figure that QVariant would write the typ

Re: [Interest] Building QtWebEngine with Visual 2017

2018-05-17 Thread Jérôme Laheurte
> Le 17 mai 2018 à 14:26, Kai Koehne a écrit : > > > >> -Original Message- >> From: Interest [mailto:interest-bounces+kai.koehne=qt...@qt-project.org] On >> Behalf Of Jérôme Laheurte >> Sent: Thursday, May 17, 2018 2:12 PM >> To: Qt Project >> Subject: [Interest] Building QtWebEngine

Re: [Interest] Building QtWebEngine with Visual 2017

2018-05-17 Thread Kai Koehne
> -Original Message- > From: Interest [mailto:interest-bounces+kai.koehne=qt...@qt-project.org] On > Behalf Of Jérôme Laheurte > Sent: Thursday, May 17, 2018 2:12 PM > To: Qt Project > Subject: [Interest] Building QtWebEngine with Visual 2017 > [...] > Needs VS 2015 Update 3 with Cumulat

[Interest] Building QtWebEngine with Visual 2017

2018-05-17 Thread Jérôme Laheurte
Hello. I’m trying to build QtWebEngine with h264 support on Windows. I installed Qt 5.10.1 (msvc2017_64) and the source. Running qmake gives: > qmake Running configuration tests... Done running configuration tests. Configure summary: Qt WebEngine: Embedded build . no

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-17 Thread Jean-Michaël Celerier
Sorry, I meant qRegisterMetaTypeStreamOperators() --- Jean-Michaël Celerier http://www.jcelerier.name On Thu, May 17, 2018 at 2:01 PM, Jean-Michaël Celerier < jeanmichael.celer...@gmail.com> wrote: > > The problem is that QVariant doesn't know how to call it. > > Is there a reason why call

Re: [Interest] QDatastream, QMap, QImage serialization

2018-05-17 Thread Jean-Michaël Celerier
> The problem is that QVariant doesn't know how to call it. Is there a reason why calling qRegisterStreamOperators() would't work ? --- Jean-Michaël Celerier http://www.jcelerier.name On Wed, May 16, 2018 at 11:52 PM, Thiago Macieira wrote: > On Wednesday, 16 May 2018 14:38:08 PDT Jérôm

[Interest] Qt 5.9.5 internal compiler error with msvc 2017 (15.7.1)

2018-05-17 Thread Christian Ehrlicher
Hi,   it tried to build Qt 5.9.5 with msvc 2017 15.7.1 on 32 bit an hit this internal compiler error:   ninja -t msvc -e environment.x86 -- "E:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.14.26428\bin\HostX64\x86/cl.exe" /nologo /FC @obj/third_party/webrtc/ca

[Interest] suggest Qml strong type detection control requirement properties

2018-05-17 Thread Minzhang He
such as qml control 2 ComboBox,if it no width property or otherwise by such as anchors.fill: parent,QT Creator designer cash,and no valid error warning.art designer may be no better develop. If qml control requirment properties is strong type detection.QML development becomes faster and more effic