[Interest] Partial message support in QWebSocket?

2017-07-14 Thread Emre Besirik
Hi all, I was wondering if QWebSocket does support partial messages and if there is anything special to do to enable etc? (Qt is on Client side, talks with java wss server) thanks Regards. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Library shrinks during the Android build process

2017-07-14 Thread Jean-Michaël Celerier
It's certainly calling strip on your binary (to remove unneeded symbols). --- Jean-Michaël Celerier http://www.jcelerier.name On Fri, Jul 14, 2017 at 4:37 PM, Eric Braley wrote: > Basically, I'm compiling a library to use in an Android app. When I'm >

[Interest] Library shrinks during the Android build process

2017-07-14 Thread Eric Braley
Basically, I'm compiling a library to use in an Android app. When I'm including the .so file in an app via ANDROID_EXTRA_LIBS everything works fine. However, I have a requirement outside of my control to checksum the library within the app when it starts. This should be easy because I compile

[Interest] Custom style for QCheckBox in QComboBox

2017-07-14 Thread Carel Combrink
Hi, How does one customize the style of the QCheckBox inside a QComboBox? In our application we have a specific style (QSS File) for a QCheckBox, for example the indicator is a custom image, the font is changed and the colors are specified. But this styling does not apply to the QCheckBox that

Re: [Interest] Updating NumberAnimation from/to at runtime

2017-07-14 Thread Jérôme Godbout
so probably doing like Mark point out *alwaysRunToEnd: false* onToChanged: restart() seem to work but very slowly, wonder if there's something better to be done here, much more like a state animation. [image: bodycad] Jerome Godbout Software Developer 2035 rue du

Re: [Interest] Updating NumberAnimation from/to at runtime

2017-07-14 Thread Mark Tucker
From my experience, once started, you cannot dynamically change the parameters (such as from, to, duration) of an animation in such a way, without restarting the animation. Doing so simply has no effect on the already running animation. In other words, the values are taken as an assignment at

Re: [Interest] Updating NumberAnimation from/to at runtime

2017-07-14 Thread Kristoffersen, Even (NO14)
You can try to force binding with Qt.binding(). -Even From: Interest [mailto:interest-bounces+even.kristoffersen=honeywell@qt-project.org] On Behalf Of Shantanu Tushar Sent: 14. juli 2017 11:27 To: interest@qt-project.org Subject: [Interest] Updating NumberAnimation from/to at runtime Hi,

Re: [Interest] Updating NumberAnimation from/to at runtime

2017-07-14 Thread Jérôme Godbout
The other point I can see, just make sure you set the animation *alwaysRunToEnd *according to your needs (I suspect false here). http://doc.qt.io/qt-5/qml-qtquick-animation.html#alwaysRunToEnd-prop [image: bodycad] Jerome Godbout Software Developer 2035 rue du

Re: [Interest] Updating NumberAnimation from/to at runtime

2017-07-14 Thread Jérôme Godbout
You can activate the clip into the red r1 rectangle and see if this is what you are looking for clip: true This will prevent the blue r2 rectangle to be displayed outside the r1. Rectangle { id: r1 anchors.centerIn: parent width: 300; height: 100 color: "red"

[Interest] Updating NumberAnimation from/to at runtime

2017-07-14 Thread Shantanu Tushar
Hi, Consider the following code which draws two rectangles - a red rectangle which contains another blue rectangle. Rectangle { id: r1 anchors.centerIn: parent width: 300; height: 100 color: "red" Rectangle { id: r2 width: 100;