[Interest] Harish, please add me to your LinkedIn network

2014-07-14 Thread Andy Fillebrown via LinkedIn
LinkedIn Andy Fillebrown requested to add you as a connection on LinkedIn: -- Harish, I'd like to add you to my professional network on LinkedIn. - Andy Accept invitation from Andy Fillebrown http://www.linkedin.com/e/k9rm4b-hxmdf

Re: [Interest] Data Distribution Service as a new Qt IPC?

2014-07-14 Thread Miller, Doug
Thanks, I did not see the discussion of Replicant before. Seems like they would like DDS as well. Actually I would like to see the Qt Service Framework restored to the core and have DDS implemented as a transport mechanism in addition to QLocalSocket and DBus. This way applications are writ

Re: [Interest] Data Distribution Service as a new Qt IPC?

2014-07-14 Thread Thiago Macieira
On Monday 14 July 2014 19:04:15 Miller, Doug wrote: > It seems to me that Qt should look into having the Data Distribution Service > (DDS) as an IPC. Some have already written a Qt wrapper for it. It is > crossplatform, has open source implementations, extends beyond machine > boudaries, requires

[Interest] Data Distribution Service as a new Qt IPC?

2014-07-14 Thread Miller, Doug
It seems to me that Qt should look into having the Data Distribution Service (DDS) as an IPC. Some have already written a Qt wrapper for it. It is crossplatform, has open source implementations, extends beyond machine boudaries, requires no infrastructure, can be encrypted, and, in alot of cas

Re: [Interest] Q_ENUMS with foreign enum ?

2014-07-14 Thread Konstantin Tokarev
14.07.2014, 13:39, "Martin Koller" : > On Monday 14 July 2014 09:11:06 Rutledge Shawn wrote: >>  On 12 Jul 2014, at 10:03 AM, Martin Koller wrote: >>>  Hi, >>> >>>  is there any possibility to use an enum in the Q_ENUMS macro when the enum >>> is not >>>  defined in a QObject derived class ? >>>

Re: [Interest] folderlistmodel qrc:/ with tableview

2014-07-14 Thread Damian Ivanov
Thanks FileDialog is sufficient for me! :) 2014-07-14 12:33 GMT+03:00 Rutledge Shawn : > > On 13 Jul 2014, at 7:22 PM, Damian Ivanov wrote: > >> Hi all, >> >> Is it possible to use a folderlistmodel for a tableview? > > Yes the QtQuick.Dialogs FileDialog uses this implementation on platforms that

Re: [Interest] [Development] Qt Creator Doesn't Show Error(s)

2014-07-14 Thread Sze Howe Koh
Hi, On 14 July 2014 05:15, Steve Gold wrote: > I am building an app on Windows 8 64bit with Qt 5.3.1 and Qt Creator 3.1.2. > I have a main.cpp that calls main.qml that calls Tests.qml that uses other > QML and JavaScript files. I have > > Component.onCompleted: { > console.log(“Starting Testsl”

Re: [Interest] Using QMediaPlayer with Ogg Vorbis on Win7

2014-07-14 Thread Phil Hannent
On 13 July 2014 21:06, Tom Isaacson wrote: > I was planning to use QMediaPlayer to display Ogg Vorbis (.ogv) > audio/video files on Win7, as discussed here: > http://qt-project.org/doc/qt-5/videooverview.html > but when I try this I get an "Unsupported media type" error. I've > installed Xiph as

Re: [Interest] Q_ENUMS with foreign enum ?

2014-07-14 Thread Martin Koller
On Monday 14 July 2014 09:11:06 Rutledge Shawn wrote: > > On 12 Jul 2014, at 10:03 AM, Martin Koller wrote: > > > Hi, > > > > is there any possibility to use an enum in the Q_ENUMS macro when the enum > > is not > > defined in a QObject derived class ? > > (Specifically I'm trying to do that wi

Re: [Interest] folderlistmodel qrc:/ with tableview

2014-07-14 Thread Rutledge Shawn
On 13 Jul 2014, at 7:22 PM, Damian Ivanov wrote: > Hi all, > > Is it possible to use a folderlistmodel for a tableview? Yes the QtQuick.Dialogs FileDialog uses this implementation on platforms that don't have native dialogs; look at qtquickcontrols/src/dialogs/DefaultFileDialog.qml. (And if

Re: [Interest] Q_ENUMS with foreign enum ?

2014-07-14 Thread Nurmi J-P
On 14 Jul 2014, at 11:11, Rutledge Shawn wrote: > > On 12 Jul 2014, at 10:03 AM, Martin Koller wrote: > >> Hi, >> >> is there any possibility to use an enum in the Q_ENUMS macro when the enum >> is not >> defined in a QObject derived class ? >> (Specifically I'm trying to do that with QSslEr

Re: [Interest] Q_ENUMS with foreign enum ?

2014-07-14 Thread Rutledge Shawn
On 12 Jul 2014, at 10:03 AM, Martin Koller wrote: > Hi, > > is there any possibility to use an enum in the Q_ENUMS macro when the enum is > not > defined in a QObject derived class ? > (Specifically I'm trying to do that with QSslError::SslError) The Qt namespace has a lot of enums like that.