[Interest] Qt Bluetooth a2dp/hfp

2018-08-08 Thread Akın Gümüşkavak
Hello, I'm working with Qt bluetooth to implement a2dp/hfp connection. I have successfully implemented so I can connect to my phone. Now I would like to show my media information which I play from my phone in my Qt application and I would like to control it like play/pause/stop/next vs. I couldn

Re: [Interest] How to change parent of scaled QGraphicsItem while retaining scene bounding rect?

2018-08-08 Thread Patrick Stinson
I got a little further, this snippet works when the parent items don’t have a scale set. But when the parents do have a scale set the child item’s position jumps around a bit when changing parents. def setParent(parent): if parent == child.parentItem(): return if

Re: [Interest] QML vs Electron

2018-08-08 Thread Nikos Chantziaras
On 08/08/18 08:34, Guenter Schwann via Interest wrote: On Dienstag, 7. August 2018 15:00:22 CEST Nikos Chantziaras wrote: But in any case, Android seems fine when using LGPL libraries, since a) Qt is linked to dynamically, and b) Android officially supports sideloading. Does this cover tivoiza

Re: [Interest] How to change parent of scaled QGraphicsItem while retaining scene bounding rect?

2018-08-08 Thread Patrick Stinson
Thanks for that. Though I am having some trouble. If you have PyQt, I wonder what problem you see with this example: def tests_QGI_parent_transform(): app = QApplication(sys.argv) view = QGraphicsView() scene = QGraphicsScene() rect = QRectF(-50.0, -50.0, 100.0, 100.0) paren

Re: [Interest] Make Android App Restart When It Can't Resume Quickly

2018-08-08 Thread David Engel
Hi Petar, A private reply also pointed out to me that the long resume times I see are highly unusual. I'm starting to change my focus now to understanding why that is happening in the first place. I'll check those activity options again. The last time I looked, they didn't sound like what I wan

Re: [Interest] Make Android App Restart When It Can't Resume Quickly

2018-08-08 Thread David Engel
I have looked at Kodi and found other things of interest like where and how they pause playback when focus is lost. I've yet to find anything that relates to why Kodi resumes where it was sometimes and restarts from scratch at other times. David On Wed, Aug 08, 2018 at 08:47:19AM +0200, René Han

Re: [Interest] Does QNetworkAccessManager support HTTP persistent connections? (keep-alive)

2018-08-08 Thread Sze Howe Koh
On Sat, 28 Jul 2018 at 06:28, Giuseppe D'Angelo via Interest < interest@qt-project.org> wrote: > Extract the RPM, and there it is, in all of its glory, a KeepAlive Off > by default in Apache's master configuration file: > > > $ grep -nr KeepAlive . > > ./etc/httpd/conf/httpd.conf:73:# KeepAlive: Wh

Re: [Interest] Make Android App Restart When It Can't Resume Quickly

2018-08-08 Thread Petar Koretić
Hi David. For the past 3-4 years I've been actively doing Android/Qt development and I have never had such an issue. On many different Android boxes, TVs and phones I haven't had something like that, not even on Nvidia shield. Resume always happens in a matter of seconds even after standby or long

Re: [Interest] problems with drag event in QListView with delegate in edit mode

2018-08-08 Thread Frank Rueter | OHUfx
Same issue with the context menu. I have to right lick twice before it opens. I have been trying to set focus and various states on the view but still can't get it right. Any help would be very much appreciated. Cheers, frank On 8/08/18 8:58 PM, Frank Rueter | OHUfx wrote: Hi all, I have QL

[Interest] problems with drag event in QListView with delegate in edit mode

2018-08-08 Thread Frank Rueter | OHUfx
Hi all, I have QListView with an item delegate that is animated when the mouse overs over it. This is done via a delegate using a custom widget and popping the index under the cursor into edit mode like so: |def mouseMoveEvent(self, event): if index.isValid(): # start playing playing under c