[Interest] Detect connected Bluetooth keyboard under Android

2018-10-29 Thread Roman Wüger
Hi @all, i played with the QBluetoothLocalDevice and QBluetoothDiscoveryAgent to detected if a Bluetooth keyboard is connected to an android tablet. However, I can’t find out the correct way. I tried to read the majordeviceclass and minordeviceclass but it doesn‘t work, I only get 31,0 but the

Re: [Interest] Qt Android with OpenSSL problems "OpenSSL vulnerabilities in your apps"

2018-10-29 Thread René Hansen
Nguyen, I've just updated from 1.0.2n in my own app to 1.0.2p, using my own homegrown build system for OpenSSL. It seems to work and I can complete https request just fine. This is what I get in the app when I query the version: main.cpp:117 (int main(int, char**)): sslLibraryVersionString() "Ope

Re: [Interest] Qt Android with OpenSSL problems "OpenSSL vulnerabilities in your apps"

2018-10-29 Thread Thiago Macieira
On Monday, 29 October 2018 00:58:20 PDT Nguyen Ngoc Thach Chau wrote: > I checked APK, it is return openSSL 1.0.2k but it is confusing then I want 1.0.2k is not up-to-date. Upgrade to 1.0.2p. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology

Re: [Interest] Native windows with QtCore backend

2018-10-29 Thread Thiago Macieira
On Monday, 29 October 2018 07:24:25 PDT Jeffrey Brendecke wrote: > It looks like it means that as long as I run QCoreApplication::exec() on its > own thread, that I can do all the Qt event handling/signal slot connections > I want on that thread and not worry about what's going on on the main > thr

Re: [Interest] Qt Android with OpenSSL problems "OpenSSL vulnerabilities in your apps"

2018-10-29 Thread Nguyen Ngoc Thach Chau
Yes. I did it but Play Store keep alert again :( I also build new OpenSSL 1.0.2p About using command "sslLibraryVersionString ()", I still get openSSL 1.0.1e I check build folder, new library (1.0.2p) are there. Any hints :( ? On Mon,

Re: [Interest] Native windows with QtCore backend

2018-10-29 Thread Jeffrey Brendecke
> > On Sunday, 28 October 2018 08:58:57 PDT Jeffrey Brendecke wrote: >> Is it possible to have a 100% native UI (Cocoa or UIKit) with backend QtCore >> components (nonGUI) on a functioning event loop for signals and slots on >> macOS and iOS? > > Sure. But you need to integrate the event loops,

Re: [Interest] Native windows with QtCore backend

2018-10-29 Thread 黄其泽
The signal/slot mechanism does not always requires Qt eventloop. So, you can use QtCore directly without any other works. But QtNetwork requires eventloop to dispatch network IO events. You'd better use other network toolkit then. In fact, the signal/slot connection with Qt::QueuedConnection type

Re: [Interest] Main window content cropped by window frame on 4K Dell laptops? Anyone seen this?

2018-10-29 Thread Elvis Stansvik
You sir are my hero. Elvis Den mån 29 okt. 2018 kl 11:00 skrev Alvin Wong : > > Hi Elvis, > > It sounds like this Intel graphics driver bug: > https://communities.intel.com/thread/116003 > > Best Regards, > Alvin > >> -- Forwarded message -- >> From: Elvis Stansvik >> To: "interes

Re: [Interest] Widget to device pixel alignment under fractional DPI scaling

2018-10-29 Thread Alvin Wong
Hi Dmitry, If this is the case, shouldn't it be better to change the behaviour of Krita to match that of Qt, i.e. use qFloor for the conversion instead of qCeil? The code in Qt would have been doing it this way for quite a while, and asking Qt to change this behaviour could possibly break other ex

Re: [Interest] Main window content cropped by window frame on 4K Dell laptops? Anyone seen this?

2018-10-29 Thread Alvin Wong
Hi Elvis, It sounds like this Intel graphics driver bug: https://communities.intel.com/thread/116003 Best Regards, Alvin -- Forwarded message -- > From: Elvis Stansvik > To: "interest@qt-project.org Interest" > Cc: > Bcc: > Date: Fri, 26 Oct 2018 15:05:44 +0200 > Subject: Re: [

Re: [Interest] Qt Android with OpenSSL problems "OpenSSL vulnerabilities in your apps"

2018-10-29 Thread René Hansen
It looks like you're bundling the stale version of OpenSSL. Try deleting your *build-* folder to get a fresh one and maybe set *ANDROID_EXTRA_LIBS *to point directly to the libs outside of your project folder. /René On Mon, 29 Oct 2018 at 10:38 Nguyen Ngoc Thach Chau wrote: > Thank you Rene > >

Re: [Interest] Qt Android with OpenSSL problems "OpenSSL vulnerabilities in your apps"

2018-10-29 Thread Nguyen Ngoc Thach Chau
Thank you Rene I check by source code functions below: long sslLibraryVersionNumber () QString sslLibraryVersionString () long sslLibraryBuildVersionNumber

Re: [Interest] Qt Android with OpenSSL problems "OpenSSL vulnerabilities in your apps"

2018-10-29 Thread René Hansen
Try to make sure you're actually on the right version, from inside the app. Ie, what does *OpenSSL_version(OPENSSL_VERSION)* return? Your setting of *ANDROID_EXTRA_LIBS* looks correct enough. /René On Mon, 29 Oct 2018 at 08:59 Nguyen Ngoc Thach Chau wrote: > Dear supporters > > I'm using Qt A

[Interest] Qt Android with OpenSSL problems "OpenSSL vulnerabilities in your apps"

2018-10-29 Thread Nguyen Ngoc Thach Chau
Dear supporters I'm using Qt Android for mobile project. When I upload APK file to Google Play Store, they always send me an alert as below = https://support.google.com/faqs/answer/6376725 = I checked APK, it is return openSSL 1.0.2k but it is confusing then I want to ask t