Re: [Interest] Drag and drop Event with QAxWidget issue

2017-06-30 Thread Christoph Keller
You seem to have forgotten calling setAcceptDrops(true) in the constructor. See http://doc.qt.io/qt-5/dnd.html#dropping On 29.06.17 12:36, neel patel wrote: Hi, I have subclass QAxWidget and re-implemented drag/drop Events as below but wherever we drag some widget to this area then no

Re: [Interest] Qt3D and QtMultimedia.Camera not working together on Android

2017-04-27 Thread Christoph Keller
I tested a little bit more and created a bug report for this: https://bugreports.qt.io/browse/QTBUG-60452 Cheers, Christoph On 25/04/17 14:56, Christoph Keller wrote: Hi, I'm using Qt3D in a mobile project for Android and iOS, but unfortunately the QtMultimedia Camera Item stops working

Re: [Interest] Generating Xcode project file for clang_64

2017-05-08 Thread Christoph Keller
You have to add "-spec macx-xcode" to your qmake arguments, otherwise it will use "macx-clang" and just generate a Makefile. Cheers, Christoph On 08.05.17 18:42, Nuno Santos wrote: Hi, I’m very used to generate the xcode project for Qt iOS projects. Today I was trying to generate the Xcode

Re: [Interest] Deploying the output of a static lib

2018-05-23 Thread Christoph Keller
king the static lib without problems, at least for iOS. Regards, Nuno On 23 May 2018, at 11:07, Christoph Keller <theoriginal...@gmail.com <mailto:theoriginal...@gmail.com>> wrote: Hi, you can also use the DESTDIR property instead of copying. Also don't forget "CON

Re: [Interest] Deploying the output of a static lib

2018-05-23 Thread Christoph Keller
Hi, you can also use the DESTDIR property instead of copying. Also don't forget "CONFIG += create_prl" which makes linking (using CONFIG += link_prl) far more easy. Regards, Christoph PS: Sorry for the direct reply in the first place instead of the list On 22.05.18 12:29, Nuno Santos

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-28 Thread Christoph Keller
You are correct, in my opinion the price for Qt is way too high if you only need the mobile platforms. That's the reason we're thinking about phasing out Qt in the next project. You'll likely reach the $100k revenue with a 2-man project soon. Don't forget there's also Google's Flutter in the

Re: [Interest] QML vs Electron

2018-08-07 Thread Christoph Keller
Well in 2015 there was the Independent Dev License for $25/month which disappeared and was replaced with the $350/month one and last year they changed prices over night to $460/month (all prices seen from a mobile-only dev perspective). That's about $2000 more per year for a single developer!

Re: [Interest] WebVuew::runJavaScript problems

2018-08-25 Thread Christoph Keller
You can also see the small number of available types here: https://code.woboq.org/qt5/qtwebview/src/plugins/darwin/qdarwinwebview.mm.html#453 Regards, Christoph On 24.08.18 01:41, Tony Rietwyk wrote: Hi Jason, When are you calling runJavaScript?  How are you loading the page?  How do you

Re: [Interest] all caps font on android 8

2018-04-14 Thread Christoph Keller
Hi Philippe, I received the same bug report from a user. Have you found a solution/cause? I haven't found anything by googling around, just your mailing list entry. Just for the statistics: QtQuickControls 2 application with Qt 5.10.1; User has a OnePlus 3 running Android 8.0.0. Other 8.x

Re: [Interest] Unable to run QtQuick TestCase from qrc resources

2018-04-25 Thread Christoph Keller
Quick Test at all? Seems that no... On 25.04.2018 13:53, Christoph Keller wrote: Hello, is there a way to run the QtQuick TestCases from qrc resources? Running them from the file system works as as expected but setting the source path to ":/" leads to the TestCase being loaded but i

Re: [Interest] Unable to run QtQuick TestCase from qrc resources

2018-04-25 Thread Christoph Keller
line you found needs to be applied in TestCaseCollector, too. Christoph On 25.04.18 16:08, Igor Mironchik wrote: Hi, if (path.startsWith(QLatin1String(":/")))     view.setSource(QUrl(QLatin1String("qrc:") + path.midRef(2))); Bug is here... path.midRef(1) should

Re: [Interest] Unable to run QtQuick TestCase from qrc resources

2018-04-25 Thread Christoph Keller
tring("qrc:") + path.midRef(2))); Bug is here... path.midRef(1) should be or QLatin1String("qrc:/") Do you want to provide a fix? :) André On 25.04.2018 16:16, Christoph Keller wrote: They should, at least the source of the framework sets the path to ":/&

Re: [Interest] Qml Canvas is too slow

2019-11-04 Thread Christoph Keller
If this is just about drawing squares, you can also use a *GridView* or *Repeater* and repeat a delegate of *Rectangle*s. If that's not fast enough, Jérôme Godbout approach also sounds good. Alternatively, you should prefer *QtQuick.Shapes* to *Canvas*: