Re: [Interest] Bad playback of RTSP streams on imx6 platform [Qt5.3]

2014-04-20 Thread Michael
I have added a bug to the Qt bugtracker: https://bugreports.qt-project.org/browse/QTBUG-38465 Am 19.04.2014 10:02, schrieb Michael: > Hi > > I'm using QT5.3 from git on an imx6 board. Multimedia playback > performance has greatly improved with this commit > (https://codereview.qt-project.org/#cha

[Interest] qtquick externaldragdrop crashing on x11 (Ubuntu 13.10)

2014-04-20 Thread manish sharma
Hi, I ran externaldragdrop sample under qtdeclarative/examples/quick folder. And it crashed and below is the backtrace. The internal dragdrop sample works perfect. I was thinking to check here before logging a ticket. Regards, Manish (gdb) backtrace #0 0x7615602f in QCoreApplication::p

Re: [Interest] Controls.Syles behavior on destroy

2014-04-20 Thread BOUCARD Olivier
Hello, I found a workaround. Here it is: import QtQuick 2.2 import QtQuick.Controls 1.1 import QtQuick.Controls.Styles 1.1 Button {   property Component _styleRemoval: ButtonStyle {}   Component.onDestruction: {     style = _styleRemoval;   } } I simply replace my style with a default one on d

Re: [Interest] hide system cursor in system wide

2014-04-20 Thread Thiago Macieira
Em dom 20 abr 2014, às 13:21:53, iMath escreveu: > I want to hide system cursor for 10s for some reason ,but I found > > > cursor.setShape(Qt.BlankCursor) > > > can only hide mouse cursor that is associated with QWidgets ,not in system > wide ,i.e. when mouse cursor is hovering on QWidgets, it

Re: [Interest] Fallback fonts embedded for a QtQuick application?

2014-04-20 Thread Preet
> I don't think you can force Qt to fallback only to QRC fonts - for starters > how would Qt know which paths in your resources have the fonts? By specifying them somehow -- I wonder if the QFontDatabase addApplicationFont method you mentioned allows me to pass in QRC urls. Then I could maybe get

Re: [Interest] Reduce maximum frame rate with Qt5.3 beta

2014-04-20 Thread Sean Harmer
On Sunday 20 April 2014 02:50:50 Joshua Kolden wrote: > On Apr 20, 2014, at 1:39 AM, Sean Harmer wrote: > > The swapInterval() mentioned by Laszlo combined with this controls the > > refresh rate in the common case. > > > > Setting swapInterval to: > > > > * 1 enforces vsync > > * 0 turns vsync

Re: [Interest] Reduce maximum frame rate with Qt5.3 beta

2014-04-20 Thread Sean Harmer
On Saturday 19 April 2014 23:58:42 Joshua Kolden wrote: > A 60hz refresh rate is very common, but it is by no means the only sync > rate in use. Of course. That's why the QPA architecture abstracts this via the QPlatformScreen::refeshRate() function. Each platform can use this to return the r

[Interest] QAbstractItemDelegate like interface for QHeaderView.

2014-04-20 Thread D. Brentjes
Hello everybody, I'm using the ItemDelegate system to last minute convert all my custom object to a QString representative of the content. This works great, but yesterday I discovered that QHeaderView actually does not use the ItemDelegate facility. Has this been done deliberately, and would it s

Re: [Interest] Fallback fonts embedded for a QtQuick application?

2014-04-20 Thread Tony Rietwyk
Hi Preet, > Sent: Sunday, 20 April 2014 4:20 PM > > Say I have an application that has a bunch of international unicode text I need > to display with QtQuick. I don't necessarily know what the text is going to be > in advance but I do have a list of fonts where I'm fairly sure at least one of >

Re: [Interest] hide system cursor in system wide

2014-04-20 Thread Jonathan Greig
No, it won't. On Apr 20, 2014 12:58 AM, wrote: > I’m not sure, but... Try to use QApplication::setOverrideCursor(). > > May be it will hide cursor in system wide... > > *From:* iMath <2281570...@qq.com> > *Sent:* Sunday, April 20, 2014 7:21 AM > *To:* interest ; pyside ; > pyqt > *Subject:*