Re: [Interest] Any possible workaround for QTBUG-40889 ?

2016-06-30 Thread Elvis Stansvik
Den 30 juni 2016 7:00 em skrev "Thiago Macieira" : > > On quinta-feira, 30 de junho de 2016 17:16:54 PDT Elvis Stansvik wrote: > > Would it be possible to install a QAbstractNativeEventFilter and > > somehow "fix-up" the event combination that makes the event > > compression fail? Has anyone else b

Re: [Interest] [BUG] C:\Qt\Docs\Qt-5.6\global

2016-06-30 Thread Konstantin Podsvirov
01.07.2016, 06:15, "Bob Babcock" : > Konstantin Podsvirov wrote in > news:780001467316...@web5o.yandex.ru: > >>  A don't have a folder C:\Qt\Docs\Qt-5.6\global with global qdoc >>  configurations. > > This directory seems to move around with different Qt versions. My install > path is non-standard

Re: [Interest] [BUG] C:\Qt\Docs\Qt-5.6\global

2016-06-30 Thread Bob Babcock
Konstantin Podsvirov wrote in news:780001467316...@web5o.yandex.ru: > A don't have a folder C:\Qt\Docs\Qt-5.6\global with global qdoc > configurations. This directory seems to move around with different Qt versions. My install path is non-standard, but I have the following directories: C:\C

[Interest] font.pixelSize vs height?

2016-06-30 Thread Jason H
I'm trying to use these two interchangeably, but they are not. With Text, there is a fontSizeMode property. I use this in my own Text replacement called styled VFitText: StyledText { // StyledText just sets the font.family and font.weight fontSizeMode: Text.VerticalFit font.pixel

[Interest] [BUG] C:\Qt\Docs\Qt-5.6\global

2016-06-30 Thread Konstantin Podsvirov
Hello all! A don't have a folder C:\Qt\Docs\Qt-5.6\global with global qdoc configurations. This is just me, or anyone else encountered this problem? I use online QtSDK installer for Windows. -- Regards, Konstantin Podsvirov ___ Interest mailing list I

Re: [Interest] Problem with Loader loaded items showing

2016-06-30 Thread Jason H
Thanks.    I resorted to setting the loader to visible: false and then on a UI event setting it to true. It's not ideal in every situation, but it'll work for my immediate need. I'm hoping the user doesn't trigger the UI event before 250ms in to the application as it's still moving.     Sent:

[Interest] DelegateModel example doesn't work with raw JSON items?

2016-06-30 Thread Jason H
I'm following the example at: http://doc.qt.io/qt-5/qtquick-tutorials-dynamicview-dynamicview4-example.html with a few modifications: My data is JSON, I have only one lessThan function. I've been trying to get it to work but in the sorting comparison I was getting: qml: {}, 31 // Object, index q

Re: [Interest] Any possible workaround for QTBUG-40889 ?

2016-06-30 Thread Thiago Macieira
On quinta-feira, 30 de junho de 2016 17:16:54 PDT Elvis Stansvik wrote: > Would it be possible to install a QAbstractNativeEventFilter and > somehow "fix-up" the event combination that makes the event > compression fail? Has anyone else been in the same boat? Yes, in combination with a non-native

[Interest] QML 5.7 QNX, module (or version) is not installed

2016-06-30 Thread Julien Bordes
Hello Everybody, I'm currently working on Qt 5.7 with QtWebKit compiled for QNX arm v7, I tested several QML applications, but I still have some troubles with two modules "QtQuick.VirtualKeyboard" and "QtWebKit" on i.MX6. First I copied the libraries to my i.MX6 target qt5.7 |- lib |- plugin

Re: [Interest] Any possible workaround for QTBUG-40889 ?

2016-06-30 Thread Elvis Stansvik
2016-06-30 16:51 GMT+02:00 Elvis Stansvik : > I'm in the unfortunate situation of having to support Qt 5.5.1, and > I'm hit hard by > > https://bugreports.qt.io/browse/QTBUG-40889 > > which was fixed in 5.6 with > > https://codereview.qt-project.org/#/c/126136/ > > Anyone know if there's an

[Interest] Any possible workaround for QTBUG-40889 ?

2016-06-30 Thread Elvis Stansvik
I'm in the unfortunate situation of having to support Qt 5.5.1, and I'm hit hard by https://bugreports.qt.io/browse/QTBUG-40889 which was fixed in 5.6 with https://codereview.qt-project.org/#/c/126136/ Anyone know if there's any way to work around this bug with Qt 5.5.1? It's so unfort

Re: [Interest] Problem with Loader loaded items showing

2016-06-30 Thread Jérôme Godbout
I think it's related to the value assigned after the Component is created. The behavior kick in before the initial -width is assigned. This is because the width is not computed before teh widget is rendered and width is known. There's a few thing to try: 1- You may try to set Behavior enabled: fa

[Interest] [iOS][Android] No context menu for a read only QML TextArea

2016-06-30 Thread NoRulez
Hello, If I set the read only property on the text area then there doesn't appear s context menu (Select All, Copy). Is this a bug or did I need to set some property? Thanks Regards ___ Interest mailing list Interest@qt-project.org http://lists.qt-pro

Re: [Interest] QtBluetooth: How to retrieve BLE SCAN_RSP packets?

2016-06-30 Thread Alexander Blasche
Hi, >From: Timur Kristóf > > Is there any API in the Qt Bluetooth module which can retrieve the > > data > > in the SCAN_RSP packets? > >> Unfortunately at this stage there is no API for this feature yet. >> It's one of the last missing features. It is tr

Re: [Interest] Slightly OT: On Windows, QFile operations failing due to on-access scanners

2016-06-30 Thread alexander golks
Hi, Am Thu, 30 Jun 2016 09:11:27 +0200 schrieb Rainer Wiesenfarth : > (Qt 5.3.2, VS2010 on Windows) > > Hi all, > > this is off-topic as the problem is not caused by Qt, however, QFile > is involved and might be the one to handle it. In any case, I'd like > to hear if others have a similar prob

Re: [Interest] Row, Column, Repeater, and ListView spacer delegate?

2016-06-30 Thread Mitch Curtis
Nope. The only way to do it is like you've mentioned: import QtQuick 2.7 import QtQuick.Window 2.2 Window { visible: true width: 640 height: 480 ListView { id: listView width: 200 height: 400 clip: true model: 10 delegate: Item {

[Interest] Slightly OT: On Windows, QFile operations failing due to on-access scanners

2016-06-30 Thread Rainer Wiesenfarth
(Qt 5.3.2, VS2010 on Windows) Hi all, this is off-topic as the problem is not caused by Qt, however, QFile is involved and might be the one to handle it. In any case, I'd like to hear if others have a similar problem and how they deal with it: From time to time we get issues from individual cust