[Interest] I like the new table of contents in Qt Documentation.

2014-02-28 Thread Alan Ezust
I am navigating through the table of contents that is provided from the Help of Qt Creator for Qt 5.2.1. Each module has some very nice child nodes in the contents, that are clickable and go to the right place. I especially like the "c++ types" and "QML types" sub-nodes which are available for most

Re: [Interest] iOS 7 - Audio Recorder Example - no service found for "org.qt-project.qt.audiosource' (FIXED)

2014-02-28 Thread Steve Schilz
Yoann Lopes wrote: >> >> It should work with qtmedia_audioengine added to QTPLUGIN. Is that one in >> "/plugins/mediaservice"? >> >> Yoann Lopes >> Senior Software Engineer - Digia, Qt >> Visit us on: http://qt.digia.com Adding QTPLUGIN += qtaudio_coreaudio qtmedia_audioengine makes it start u

[Interest] [Announce] GammaRay 2.0.1

2014-02-28 Thread Allen Winter
Announcing GammaRay 2.0.1 Highlights of this Release: === * LLDB injector (enables Mac OSX 10.9 support) * Fix various cases where client and server states get out of sync The source code can be found on GitHub at: https://github.com/KDAB/GammaRay Tarballs and zipballs for v2.0.1

Re: [Interest] Qt5.3.0-alpha build fails if target is Linux/i.MX6

2014-02-28 Thread Thiago Macieira
Em sex 28 fev 2014, às 14:11:44, BERTIN, NICOLAS escreveu: > Hi, > > Build of the Qt5.3.0-alpha release fails if the target platform/device > is linux/i.MX6 (qdrawhelper_neon.cpp) > > The "neon" detection stuffs are no more in the configure/config.tests, > but if you merge them from Qt5.2.1, then

Re: [Interest] PDF to QByteArray

2014-02-28 Thread Marcelo Estanislau Geyer
Thanks for all the answers. My problem is really with the POCO library I'm using, I'll have to check that. The output of qDebug left me confused and in doubt, but I wrote this code confirmed that Qt code was correct from the beginning: QFile file("/home/marcelo/Documents/Test.pdf"); if

Re: [Interest] PDF to QByteArray

2014-02-28 Thread Jason H
Yes, I know that there is more than outputting a blob to attach it to email. My point was only that after the code I gave was executed, that the QByteArray should be the same size of the file. If he was using the text flag to QFile::open() it could explain his issue. (EOF character in text mode)

Re: [Interest] Qt installer framework: maintenance tool update fails silently

2014-02-28 Thread Wiebe Cazemier
- Original Message - > From: "Karsten Heimrich" > Cc: interest@qt-project.org > Sent: Friday, 28 February, 2014 11:38:44 AM > Subject: Re: [Interest] Qt installer framework: maintenance tool update fails > silently > > Can you please file an bugreport on http://bugreports.qt-project.org

Re: [Interest] PDF to QByteArray

2014-02-28 Thread Till Oliver Knoll
Am 28.02.2014 um 12:00 schrieb Jan Kundrát : > On Friday, 28 February 2014 11:02:33 CEST, Till Oliver Knoll wrote: >> Or in just one line: >> >> QByteArray::toBase64() > > For the record, this is not enough -- the MIME standard imposes additional > restrictions, ... Off course ;) The point t

[Interest] Qt5.3.0-alpha build fails if target is Linux/i.MX6

2014-02-28 Thread BERTIN, NICOLAS (NICOLAS)
Hi, Build of the Qt5.3.0-alpha release fails if the target platform/device is linux/i.MX6 (qdrawhelper_neon.cpp) The "neon" detection stuffs are no more in the configure/config.tests, but if you merge them from Qt5.2.1, then it's OK after. Nicolas smime.p7s Description: S/MIME cryptographic s

Re: [Interest] iOS 7 - Audio Recorder Example - no service found for "org.qt-project.qt.audiosource'

2014-02-28 Thread Lopes Yoann
It should work with qtmedia_audioengine added to QTPLUGIN. Is that one in "/plugins/mediaservice"? Yoann Lopes Senior Software Engineer - Digia, Qt Visit us on: http://qt.digia.com ___ Interest mailing list Interest@qt-project.org http://lists.qt-proj

Re: [Interest] PDF to QByteArray

2014-02-28 Thread Jan Kundrát
On Friday, 28 February 2014 11:02:33 CEST, Till Oliver Knoll wrote: > Or in just one line: > > QByteArray::toBase64() For the record, this is not enough -- the MIME standard imposes additional restrictions, one of them being line lengths, the other are proper headers, etc. Cheers, Jan -- T

Re: [Interest] Qt installer framework: maintenance tool update fails silently

2014-02-28 Thread Karsten Heimrich
On 27.02.2014 13:57, Wiebe Cazemier wrote: > - Original Message - >> From: "Karsten Heimrich" >> To: interest@qt-project.org >> Sent: Thursday, 27 February, 2014 1:04:24 PM >> Subject: Re: [Interest] Qt installer framework: maintenance tool update >> fails silently >> >> Did you bump the

Re: [Interest] PDF to QByteArray

2014-02-28 Thread Till Oliver Knoll
Am 28.02.2014 um 08:48 schrieb Scott Aron Bloom : > However, there are Qt base libraries.. QtExt for instance, that do allow the > attachments from QByteArray, and they do all the computation into Base64 > hidden from the user. Or in just one line: QByteArray::toBase64() (In case the email

Re: [Interest] Q_PROPERTY, Subclass and calling SuperClasses signal

2014-02-28 Thread André Somers
Jason H schreef op 27-2-2014 17:51: Moc may be confused by a few things. 1. Q_PROPERTIES normally sppear at the top 2. your notifier is not in the class you are declaring it as. Either declare it in A, or override it yourself. Moc is almost magical, but it doesn't have run or compile-time in