Re: [Interest] Setting QQuickItem properties inside QQuickItem::UpdatePaintNode

2014-06-04 Thread manish sharma
HI Gunnar, Thanks for the suggestion, I will use updatePolish(). Also the fix on codereview works. On Thu, Jun 5, 2014 at 10:43 AM, Gunnar Sletta wrote: > > On 05 Jun 2014, at 06:45, manish sharma <83.man...@gmail.com> wrote: > > > Hi, > > > > Qt documentation says "The main thread is blocked w

Re: [Interest] QtDBus Example to read files from USB

2014-06-04 Thread Thiago Macieira
Em qui 05 jun 2014, às 06:02:58, Ramakanthreddy Kesireddy escreveu: > Hi, > > Is there any Qt DBus example to read the files from USB? D-Bus is used to send and receive messages. It has nothing to do with USB. You may have a service in your system that can read files from USB. I don't know of a

[Interest] QtDBus Example to read files from USB

2014-06-04 Thread Ramakanthreddy Kesireddy
Hi, Is there any Qt DBus example to read the files from USB? Thanks and Regards, Ramakanth DISCLAIMER: This email (including any attachments) is intended for the sole use of the intended recipient/s and may contain material that is CONFIDENTIAL AND PRIVATE CO

Re: [Interest] Setting QQuickItem properties inside QQuickItem::UpdatePaintNode

2014-06-04 Thread Gunnar Sletta
On 05 Jun 2014, at 06:45, manish sharma <83.man...@gmail.com> wrote: > Hi, > > Qt documentation says "The main thread is blocked while this function is > executed so it is safe to read values from the QQuickItem instance and other > objects in the main thread." > > Can we only read QQuickItem

[Interest] Setting QQuickItem properties inside QQuickItem::UpdatePaintNode

2014-06-04 Thread manish sharma
Hi, Qt documentation says "The main thread is blocked while this function is executed so it is safe to *read* values from the QQuickItem instance and other objects in the main thread." Can we only read QQuickItem properties? We can not set it? I have few QQuickItems and I am trying to set QQuickI

Re: [Interest] Non-zero exit code from QSKIP()-ed tests

2014-06-04 Thread Thiago Macieira
Em qua 04 jun 2014, às 23:11:45, matt.bol...@csiro.au escreveu: > Thanks Thiago, although I'm actually not asking about the merits of whether > skipping something should be considered a complete succuss or something > else. My question is whether there's any way in code to query the number of > tes

Re: [Interest] Non-zero exit code from QSKIP()-ed tests

2014-06-04 Thread Matt.Bolger
Thanks Thiago, although I'm actually not asking about the merits of whether skipping something should be considered a complete succuss or something else. My question is whether there's any way in code to query the number of tests marked as skipped by the test system. Thanks Matt -Original

Re: [Interest] terrible font rendering with QtQuick

2014-06-04 Thread André Somers
Alan Ezust schreef op 3-6-2014 19:04: > Why are you still using Qt 5.2.1? I know some serious font rendering > issues from QML were fixed in Qt 5.3. You act as if it is ancient. It is not. In commercial projects, you can't just jump from one version to the next without extensive re-testing. In o

Re: [Interest] Non-zero exit code from QSKIP()-ed tests

2014-06-04 Thread Thiago Macieira
Em qua 04 jun 2014, às 06:38:24, matt.bol...@csiro.au escreveu: > Is there any way to detected skipped tests and return a non-zero exit code? > For example rather than using QTEST_MAIN maybe it's possible to call > QTest::qExec yourself and then something like QTest::numSkipped() to then > return y

Re: [Interest] QMessageBox copy to clipboard

2014-06-04 Thread André Somers
Hamish Moffatt schreef op 4-6-2014 08:50: > Hi, > > We're displaying an error message with QMessageBox and we'd like to make > it easy for the user to copy the detailed text to the clipboard. I'd > like to add a button to do this, but I don't want to dismiss the dialog > at the same time. > > It lo