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

2018-10-30 Thread Nguyen Ngoc Thach Chau
The problem is not about send HTTPS request, It is about Google Play Store rejection. Google Play Store still alert me about OpenSSL library & do not let me upload to play store Refer alert here: https://support.google.com/faqs/answer/6376725 :( I update library and re-upload but still do not succe

Re: [Interest] QLowEnergyController always disconnected after service discovery finished

2018-10-30 Thread nus1998
Hi Jerome, Thanks for your advice, I seperated charateristics reading with service discovery and Error1:"no attribute in ..." is disappeared. However, the QLowEnergyController is still disconnected several seconds after service discovery is finished, still there is error of "Connection timed

Re: [Interest] Qt API annoyances: where to log/discuss?

2018-10-30 Thread Thiago Macieira
On Tuesday, 30 October 2018 08:39:22 PDT Jason H wrote: > I was wondering if there is a place to log annoyances/discuss with the Qt5 > API for fix in Qt6? This list or the development mailing list are fine. > > Two I am thinking of right now is: > - QUrl::port() returns an int, but QTcpServer ac

Re: [Interest] Calling QMainWindow::close() vs. clicking on close button in title bar

2018-10-30 Thread John Weeks
Our application needs to control how windows close pretty carefully- we handle QEvent::close by ignoring it, then doing whatever we feel like we need to do. That is, we take over management of the situation. -John Weeks WaveMetrics, Inc. > On Oct 30, 2018, at 5:53 AM, Andy wrote: > > Turns ou

Re: [Interest] Qt6?

2018-10-30 Thread Alex Blasche
From: Interest on behalf of Andy >Is there any info available about Qt6? >Maybe a timeline, roadmap, or plan somewhere? Check out https://bugreports.qt.io/browse/QTBUG-62425 This is in no way complete but there is still some work and every comment an

Re: [Interest] Qt6?

2018-10-30 Thread Thiago Macieira
On Tuesday, 30 October 2018 08:51:53 PDT Andy wrote: > Following on from Jason's question about the Qt API... > > Is there any info available about Qt6? > > Maybe a timeline, roadmap, or plan somewhere? Nothing too official. Please read the Qt Contributor Summit notes from the past year or two.

[Interest] Qt6?

2018-10-30 Thread Andy
Following on from Jason's question about the Qt API... Is there any info available about Qt6? Maybe a timeline, roadmap, or plan somewhere? --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney ___ Interest ma

Re: [Interest] Qt API annoyances: where to log/discuss?

2018-10-30 Thread Konstantin Shegunov
On Tue, Oct 30, 2018 at 5:39 PM Jason H wrote: > I was wondering if there is a place to log annoyances/discuss with the Qt5 > API for fix in Qt6? > Probably a good idea is to submit a suggestion to the bugtracker as well. Two I am thinking of right now is: > - QUrl::port() returns an int, but Q

[Interest] Qt API annoyances: where to log/discuss?

2018-10-30 Thread Jason H
I was wondering if there is a place to log annoyances/discuss with the Qt5 API for fix in Qt6? Two I am thinking of right now is: - QUrl::port() returns an int, but QTcpServer accepts a quint16, so no matter what I do, unless I add a cast, I get a warning. - Similarly with QImage::pixel there a

Re: [Interest] QLowEnergyController always disconnected after service discovery finished

2018-10-30 Thread Jérôme Godbout
Hi, You should find and resolve the first error, any error could lead to disconnection: qt.bluetooth.bluez: Error1: "no attribute in given range found" last command: 10 handle: 1 m_controller discoveryFinished Also make sure you finish the discovery before you start doing any other services/ch

Re: [Interest] Calling QMainWindow::close() vs. clicking on close button in title bar

2018-10-30 Thread Andy
Turns out that if you have a QMainWindow containing a QWindow (e.g. by using QWidget::createWindowContainer()): - if you call QMainWindow::close(), the QWindow receives QEvent::Hide and does the right thing - if you click the close button in the title bar, the QWindow receives QEvent::Close wh

[Interest] Calling QMainWindow::close() vs. clicking on close button in title bar

2018-10-30 Thread Andy
*Setup:* - two QMainWindows - "main" and "viewer" - "viewer" uses Qt3D via QWidget::createWindowContainer() - shortcut "cmd-w" (Qt::ApplicationShortcut) set up to call close() on "viewer" if it is the activeWindow() - "viewer" does not have WA_DeleteOnClose set, so the window is only hidden *Prob

[Interest] QLowEnergyController always disconnected after service discovery finished

2018-10-30 Thread nus1998
Hi, When I use QLowEnergyController to scan the service, it's always disconnected about 15 seconds after services discovery is finished. the error is not certain, sometimes it's "Connection reset by peer", sometimes it's "Connection timeout". The log is attached, can anyone have a look at it a

Re: [Interest] Detect connected Bluetooth keyboard under Android

2018-10-30 Thread Alex Blasche
As a disclaimer I have not really done any HID work on Android, but based on the Android docs you need to use the BluetoothHidDevice class to interact with such keyboards. BluetoothHidDevice.Callback.onConnectionStateChanged is probably what you need. This Android API is not available via Qt AP