Re: [Interest] Qt-5.11.0 - QtWebEngine Compilation Broken for Windows 32-bit Builds

2018-07-05 Thread coroberti .
On Thu, Jul 5, 2018 at 12:01 PM, Alexandru Croitor wrote: >> On 4. Jul 2018, at 18:59, coroberti . wrote: >> 1. Using the cross compiler and running in MSVC prompt: >> >> "C:\Program Files (x86)\Microsoft Visual >> Studio\2017\Community\VC\Auxiliary\Build\vcvarsamd64_x86.bat" >> >> 2. Configuring

Re: [Interest] Qt and CloudKit/iCloud Drive

2018-07-05 Thread Boris Ralchenko
You’ll have to use native Apple APIs. I don’t think there are any tricks - but I just looked at Apple documentation, have not done it actually. Regards, Boris Ralchenko. > On Jul 5, 2018, at 12:24 PM, Israel Brewster wrote: > > I have a Qt based application that currently stores its d

Re: [Interest] QVector registered meta type in Qt 5.0

2018-07-05 Thread Luca Beldi
Thanks Thiago, I'm using QAbstractItemModel subclasses so I guess it gets registered by a model to allow using the 3rd argument of the QAbstractItemModel::dataChanged signal in non-direct calls. A quick search for the place where it's actually registered bore no fruits but I now am at ease. Tha

[Interest] Qt and CloudKit/iCloud Drive

2018-07-05 Thread Israel Brewster
I have a Qt based application that currently stores its data in a SQLite database using the QSql interfaces (QSqlQuery, QSqlTableModel, etc). I would like to add iCloud syncing to this app, but my searching so far hasn't turned up any Qt interfaces for CloudKit or iCloudDrive that I can find. Do

Re: [Interest] QVector registered meta type in Qt 5.0

2018-07-05 Thread Thiago Macieira
On Thursday, 5 July 2018 00:46:54 PDT Luca Beldi wrote: > Hi Everyone! > I'm testing a program linking against Qt 5.0 and it looks like QVector > is not a registered metatype in this version. I guess this is the reason > why tst_QIdentityProxyModel::initTestCase actually calls > qRegisterMetaType >

Re: [Interest] Android: Better way of asserting permanent permission refusal

2018-07-05 Thread René Hansen
It didn't initially occur to me to look up the Android docs, but I think I've understood how it's meant to be used now. (With the help of this SO thread ) The case I'm inte

Re: [Interest] iOS: HowTo get Photos from assets-library sorted by lastModified ?

2018-07-05 Thread ekke
finally got it working https://forum.qt.io/post/467589 now I'm getting Images or Videos from iOS assets-library sorted by modificationDate :) ... and my GridView to do multi-select of files works great ekke ___ Interest mailing list Interest@qt-project

Re: [Interest] Qt on macOS 10.14 Mojave

2018-07-05 Thread Alexandru Croitor
Hi, Yesterday / today I figured the issue out. I'm writing a long explanation in a bug report, and will push a commit shortly. > On 5. Jul 2018, at 13:41, Morten Sørvig wrote: > > Hi, > > This is something we can look at after the summer break. Could you create > a bug report in the mean ti

Re: [Interest] Qt on macOS 10.14 Mojave

2018-07-05 Thread Morten Sørvig
Hi, This is something we can look at after the summer break. Could you create a bug report in the mean time with the relevant details? Morten > On 4 Jul 2018, at 16:31, Alexandru Croitor wrote: > > The team working on Qt For Python has already encountered an issue with CA > layer backed view

Re: [Interest] Qt-5.11.0 - QtWebEngine Compilation Broken for Windows 32-bit Builds

2018-07-05 Thread Alexandru Croitor
I believe that building webengine without opengl has regressed a few times, so it's plausible that it could happen. > On 4. Jul 2018, at 18:59, coroberti . wrote: > > Hi, > > I was trying to follow the recommendations of Kai by: > > > 1. Using the cross compiler and running in MSVC prompt: >

[Interest] QVector registered meta type in Qt 5.0

2018-07-05 Thread Luca Beldi
Hi Everyone! I'm testing a program linking against Qt 5.0 and it looks like QVector is not a registered metatype in this version. I guess this is the reason why tst_QIdentityProxyModel::initTestCase actually calls qRegisterMetaType >(). That's not an issue but I would like to know what was the fi