Re: [Development] Is it possible to submit my Qt application for iOS to Apple App Store?

2014-07-04 Thread Pavel Mogilevskiy
Got it! Thanks! On 7/5/2014 2:02 AM, Jake Petroules wrote: On 2014-07-04, at 06:45 PM, Pavel Mogilevskiy > wrote: Looks like Qt 5 for iOS uses static linking. But I have commercial, closed source application. I don't want to provide source code, object files, et

Re: [Development] QWebChannel setTimeout

2014-07-04 Thread Hausmann Simon
Let me ask the other way around: is there a special reason why you're including qwebchannel.js in a qml application? :) Simon Opprinnelig melding Fra: Bernd Lamecker Sendt: 19:41 fredag 4. juli 2014 Til: development@qt-project.org Emne: [Development] QWebChannel setTimeout Hi, is there a s

Re: [Development] Is it possible to submit my Qt application for iOS to Apple App Store?

2014-07-04 Thread Jake Petroules
On 2014-07-04, at 06:45 PM, Pavel Mogilevskiy wrote: > Looks like Qt 5 for iOS uses static linking. But I have commercial, closed > source application. I don't want to provide source code, object files, etc. > If I got this right, I can't use LGPL version of Qt for iOS development and I > need

Re: [Development] Is it possible to submit my Qt application for iOS to Apple App Store?

2014-07-04 Thread Pavel Mogilevskiy
Looks like Qt 5 for iOS uses static linking. But I have commercial, closed source application. I don't want to provide source code, object files, etc. If I got this right, I can't use LGPL version of Qt for iOS development and I need to by commercial one. Right? Are there any exceptions in LGPL

Re: [Development] Is it possible to submit my Qt application for iOS to Apple App Store?

2014-07-04 Thread Pavel Mogilevskiy
Jake, Thanks a lot for the quick and complete answer. On 7/4/2014 11:51 PM, Jake Petroules wrote: > On 2014-07-04, at 04:31 PM, Pavel Mogilevskiy wrote: > >> Hello everyone! >> >> I would like to ask you if it's possible to submit my Qt >> application for iOS to iOS App Store.

Re: [Development] Is it possible to submit my Qt application for iOS to Apple App Store?

2014-07-04 Thread Jake Petroules
On 2014-07-04, at 04:31 PM, Pavel Mogilevskiy wrote: > Hello everyone! > > I would like to ask you if it's possible to submit my Qt > application for iOS to iOS App Store. I already sent the same question > to Qt Interests but > didn't get a 100% answer. Maybe here I will get the full

[Development] Is it possible to submit my Qt application for iOS to Apple App Store?

2014-07-04 Thread Pavel Mogilevskiy
Hello everyone! I would like to ask you if it's possible to submit my Qt application for iOS to iOS App Store. I already sent the same question to Qt Interests but didn't get a 100% answer. Maybe here I will get the full answer. What are requirements of submitting apps to iOS

Re: [Development] Distinguish clients connected to QtWebChannel

2014-07-04 Thread Milian Wolff
On Friday 04 July 2014 15:44:30 Lutz Schönemann wrote: > Hi, > > inspecting the QtWebChannel code I found that a QMetaObjectPublisher > object is not able to distinquish between different clients. It can distinguish between different clients, but it's not optimal. > In my eyes > that is a critic

Re: [Development] QtWebChannel internal protocol

2014-07-04 Thread Milian Wolff
On Friday 04 July 2014 15:12:31 Lutz Schönemann wrote: > Hey, > > I've looked into the internal protocol that is used by QWebChannel and I > think the usage of some properties is is a bit inconsistent. Yes, that can easily be the case - the protocol evolved a lot over time. > In every message th

Re: [Development] QWebChannel setTimeout

2014-07-04 Thread Milian Wolff
On Friday 04 July 2014 13:41:28 Bernd Lamecker wrote: > Hi, > > is there a special reason why you call > setTimeout(function() { channel.exec({type: QWebChannelMessageTypes.idle}); > }, 0); (Line 179 & 197 in qwebchannel.js) > via setTimeout? For me this also works without doing a singleshot. > Bu

Re: [Development] QtWebChannel scope

2014-07-04 Thread Milian Wolff
On Friday 04 July 2014 12:41:46 Lutz Schönemann wrote: > Hi Milian, > > when using the qwebchannel.js file to implement a client one can set a > URL so that the QWebChannel object opens a websocket connection to that > URL or just set an already connected socket right? > But I'm thinking about set

Re: [Development] Is make sense to use QVarLengthArray instead of QByteArray/QVector ?

2014-07-04 Thread Thiago Macieira
On Friday 04 July 2014 12:48:28 Denis Shienkov wrote: > Hi all. > > I have plans to replace use of QByteArray, which is used as the container > for work with еру WinAPI functions, for example on QVarLengthArray. But I > am confused by the fact of that in guts of QtCore is still often used the > QB

Re: [Development] Guidelines for reporting bugs in Qt

2014-07-04 Thread Thiago Macieira
On Friday 04 July 2014 11:28:28 Oswald Buddenhagen wrote: > > - Asking people for a unit test in the bug tracker when we're not allowed > > to include this in Qt without submission via gerrit seems likely to cause > > conflict. I'd suggest either removing this section or explaining a > > mechanism

Re: [Development] Qt High-dpi QtCS report and patch status (on hold)

2014-07-04 Thread Friedemann Kleint
Hi, https://bugreports.qt-project.org/browse/QTBUG-38858 is there to track progress . Friedemann -- Friedemann Kleint Digia, Qt ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

[Development] Distinguish clients connected to QtWebChannel

2014-07-04 Thread Lutz Schönemann
Hi, inspecting the QtWebChannel code I found that a QMetaObjectPublisher object is not able to distinquish between different clients. In my eyes that is a critical part that is needed to support multiple clients connected to a single QWebChannel. Because of that reason the feature that property

[Development] QtWebChannel internal protocol

2014-07-04 Thread Lutz Schönemann
Hey, I've looked into the internal protocol that is used by QWebChannel and I think the usage of some properties is is a bit inconsistent. In every message the client sends to the server it has to set the following properties (minimum): { data: { type: 6 // an integer specifying the mess

[Development] QWebChannel setTimeout

2014-07-04 Thread Bernd Lamecker
Hi, is there a special reason why you call setTimeout(function() { channel.exec({type: QWebChannelMessageTypes.idle}); }, 0); (Line 179 & 197 in qwebchannel.js) via setTimeout? For me this also works without doing a singleshot. But the setTimeout function is not defined when including qwebchann

Re: [Development] QtWebChannel scope

2014-07-04 Thread Lutz Schönemann
Hi Milian, when using the qwebchannel.js file to implement a client one can set a URL so that the QWebChannel object opens a websocket connection to that URL or just set an already connected socket right? But I'm thinking about setting a socket object that already has a send function, that wil

Re: [Development] Private Qt helper libraries?

2014-07-04 Thread Milian Wolff
On Thursday 03 July 2014 15:13:17 Sune Vuorela wrote: > On 2014-07-03, Milian Wolff wrote: > > I imagine, it could work by create just a normal library but not install > > and public headers, only private ones. That should be OK then, or what do > > you think? > > We have too many private headers

Re: [Development] QtWebChannel scope

2014-07-04 Thread Milian Wolff
On Friday 04 July 2014 11:11:13 Bernd Lamecker wrote: > Hi, > > do you plan to use QtWebChannel only "locally" or will it be possible to use > the javascript part to connect a pure QML client to an QObject backend or > maybe even use the javascript to connect a NodeJS server to a QObject? Hey, t

Re: [Development] Guidelines for reporting bugs in Qt

2014-07-04 Thread Oswald Buddenhagen
On Thu, Jul 03, 2014 at 08:41:37PM +0100, Richard Moore wrote: > Overall this is very good, but there are a couple of things that could be > improved: > > - Asking people for a unit test in the bug tracker when we're not allowed > to include this in Qt without submission via gerrit seems likely to

Re: [Development] Private Qt helper libraries?

2014-07-04 Thread Sorvig Morten
On 03 Jul 2014, at 17:13, Sune Vuorela wrote: > On 2014-07-03, Milian Wolff wrote: >> I imagine, it could work by create just a normal library but not install and >> public headers, only private ones. That should be OK then, or what do you >> think? > > We have too many private headers alrea

[Development] QtWebChannel scope

2014-07-04 Thread Bernd Lamecker
Hi, do you plan to use QtWebChannel only "locally" or will it be possible to use the javascript part to connect a pure QML client to an QObject backend or maybe even use the javascript to connect a NodeJS server to a QObject? Regards, Bernd ___ Develo

[Development] Is make sense to use QVarLengthArray instead of QByteArray/QVector ?

2014-07-04 Thread Denis Shienkov
Hi all. I have plans to replace use of QByteArray, which is used as the container for work with еру WinAPI functions, for example on QVarLengthArray. But I am confused by the fact of that in guts of QtCore is still often used the QByteArray for this purpose. Upon transition to QVarLengthArray the