Re: [Interest] Screenshot QML Applications

2019-12-11 Thread Martin Leutelt
Hi, I guess what you're looking for is  https://doc.qt.io/qt-5/qml-qtquick-item.html#grabToImage-method. Calling this on an appropriate Item in your QML object hierarchy should do the job. Best regards, Martin From: Matt Wright To: "interest@qt-project.org" Sent: 12/12/2019

Re: [Interest] QtSerialBus on Android

2019-12-11 Thread André Hartmann
Hi Christian, QtSerialBus had a QtSerialPort dependency up to 5.12, which was removed in 5.13. So you can use QtSerialBus under Android now, at least the Modbus/TCP part. Modbus RTU is not available due to missing serial port, and from the CAN bus side you will most likely only be able to

[Interest] Screenshot QML Applications

2019-12-11 Thread Matt Wright
Hi, I'm running a QML app on an embedded Linux device running Debian. I have seen some hits online about how to screenshot a Widgets app, but nothing obvious on how to do the same with a QML app. My goal here is to have a key combination so that we can easily take a screenshot and store the

[Interest] QtSerialBus on Android

2019-12-11 Thread Christian Gagneraud
Hi there, Any reason why QtSerialBus is not available on Android? I'm using Qt-5.12 on armv7. We have our custom N2K stack that just works on Android (using socketcan). But i'm working on a project where i would prefer to use QSerialBus for all the low level stuff. I haven't try to build it

[Interest] When is parent not the parent?

2019-12-11 Thread Jason H
A simple Screen item derived from Item whose visible is false: Screen { id: proxScreen property int distanceEvents: 0 property string lastValue: "Far" ProximitySensor { id: proximity active:parent.visible } } When I change