[Interest] Qt modules under Qt commercial license

2014-11-13 Thread Jha Sonakumar
Hi, Please let me know the modules supported only under Qt Commercial license. Best Regards SonaKumar Disclaimer: This message and the information contained herein

Re: [Interest] Qt5 and global configuration

2014-11-13 Thread Stanislav Baiduzhyi
On Wednesday 12 November 2014 12:46:02 Thiago Macieira wrote: 3) delegation: this is delegated to the platform theme plugins. Qt applications are meant to look like the system, therefore the the plugin will decide what the application should look like and which files it needs to read in order

Re: [Interest] Qt modules under Qt commercial license

2014-11-13 Thread Tomasz Siekierda
On 13 November 2014 10:09, Jha Sonakumar sona@techmahindra.com wrote: Hi, Please let me know the modules supported only under Qt Commercial license. The official site has all the information, presented in a nice table: http://www.qt.io/download/

Re: [Interest] Qt modules under Qt commercial license

2014-11-13 Thread Turunen Tuukka
Hi Jha, You can take a look to a web page explaining some of the value add items available only for the paying licensees: http://www.qt.io/qt-features/ Our sales guys are also happy to tell you more, you can contact them for example via online form at: http://www.qt.io/contact-us/ Yours,

[Interest] QML TouchPoint startX/startY property

2014-11-13 Thread Nuno Santos
Hi, I have just found the startX and startY properties of the TouchPoint in QML. http://qt-project.org/doc/qt-5/qml-qtquick-touchpoint.html#startX-prop Documentation says: These properties hold the starting position of the touch point. The problem is that when I write those values to the

[Interest] Signed return type of QIODevice::pos() - why?

2014-11-13 Thread Rainer Wiesenfarth
One of my colleagues just asked the rather philosophical question why the result of QFile::pos() - and thus QIODevice::pos() - is of type qint64 (and thus signed). He had expected an unsigned type, ideally size_t or offset_t. I was unable to find a reason, but maybe someone on the list can step

[Interest] Qt5 on OSX -- draw exact RGB device colors

2014-11-13 Thread Nils Heidorn
Hi List ! I work on an Application that needs to draw specific device RGB colors to multiple monitors on OSX 10.9 using Qt 5.3.2. If i just draw a QColor(240,120,60) to a Widget, this is measured exactly as 240/120/60 on the primary monitor but if i create the same widget on a secondary

Re: [Interest] QML TouchPoint startX/startY property

2014-11-13 Thread Rutledge Shawn
On 13 Nov 2014, at 13:26, Nuno Santos nunosan...@imaginando.pt wrote: Hi, I have just found the startX and startY properties of the TouchPoint in QML. http://qt-project.org/doc/qt-5/qml-qtquick-touchpoint.html#startX-prop Documentation says: These properties hold the starting

Re: [Interest] Signed return type of QIODevice::pos() - why?

2014-11-13 Thread Rutledge Shawn
On 13 Nov 2014, at 14:45, Rainer Wiesenfarth rainer_wiesenfa...@trimble.com wrote: One of my colleagues just asked the rather philosophical question why the result of QFile::pos() - and thus QIODevice::pos() - is of type qint64 (and thus signed). He had expected an unsigned type, ideally

Re: [Interest] QQmlApplicationEngine's rootObject() returns 0 objects count when trying to import of JavaScript file from Remote Server

2014-11-13 Thread Alejandro Exojo
El Thursday 13 November 2014, ashish dabhade escribió: Now keeping everything the same and just commenting the import line properly shows objects count as 1. Also importing the javascript file locally also succeeds. Is this a known issue ? Did you check the docs? :-) From

Re: [Interest] QML TouchPoint startX/startY property

2014-11-13 Thread Nuno Santos
Using Qt 5.3.2 Multi Mobile comercial license. I was using a MultiPointTouchArea without mouse enabled. On 13 Nov 2014, at 14:09, Rutledge Shawn shawn.rutle...@theqtcompany.com wrote: On 13 Nov 2014, at 13:26, Nuno Santos nunosan...@imaginando.pt wrote: Hi, I have just found the

Re: [Interest] QQmlApplicationEngine's rootObject() returns 0 objects count when trying to import of JavaScript file from Remote Server

2014-11-13 Thread ashish dabhade
Hmm. That explains it. Thanks. Another question, Is the Qt Quick UI project suitable for this kind of scenario ? For eg. I create a New File or Project Application Qt Quick UI and then in QML the same import QtQuick 2.3 import http://192.168.1.2/sample.js; as Remote Rectangle { width: 100

Re: [Interest] Signed return type of QIODevice::pos() - why?

2014-11-13 Thread lloyd konneker
Possibly some underlying file systems allow negative values, and Qt did not want to adapt to prevent negative values. In other words, it depends on the underlying implementation. See discussions about the off_t type in unix. http://pubs.opengroup.org/onlinepubs/009695399/functions/lseek.html A

Re: [Interest] Qt5 and global configuration

2014-11-13 Thread Thiago Macieira
On Thursday 13 November 2014 10:19:40 Stanislav Baiduzhyi wrote: On Wednesday 12 November 2014 12:46:02 Thiago Macieira wrote: 3) delegation: this is delegated to the platform theme plugins. Qt applications are meant to look like the system, therefore the the plugin will decide what the

Re: [Interest] Signed return type of QIODevice::pos() - why?

2014-11-13 Thread Thiago Macieira
On Thursday 13 November 2014 13:45:45 Rainer Wiesenfarth wrote: One of my colleagues just asked the rather philosophical question why the result of QFile::pos() - and thus QIODevice::pos() - is of type qint64 (and thus signed). He had expected an unsigned type, ideally size_t or offset_t. I

Re: [Interest] Qt5 and global configuration

2014-11-13 Thread Stanislav Baiduzhyi
On Thursday 13 November 2014 09:25:43 Thiago Macieira wrote: That can be extremely problematic on desktops without any kind of UI or less supported UI. Think of TWM, IceWM, some rare desktops like now perished RazorQt and stuff like that. Or adding second user on your main system but not

Re: [Interest] Qt5 and global configuration

2014-11-13 Thread René J . V . Bertin
On Thursday November 13 2014 18:52:45 Stanislav Baiduzhyi wrote: Qt is not a desktop. I don't like the idea of qtconfig because it's not Qt's purpose to do that. It's the desktop's. That's fine on an OS that gives a choice of desktops, but much less so on a system that doesn't. Especially

Re: [Interest] Qt Quick Compiler

2014-11-13 Thread m...@rpzdesign.com
Does the quick compiler only re-compile those QML files that were changed or does it re-compile ALL QML every time regardless of changes to the QML files or not? On 11/13/2014 8:10 PM, Yang Fan wrote: I have not test the running improvement. But I can tell you that it slow down the build

Re: [Interest] QQmlApplicationEngine's rootObject() returns 0 objects count when trying to import of JavaScript file from Remote Server

2014-11-13 Thread ashish dabhade
Yes it is accessible (for confirmation tested with another browser). I'm using Apache server and the JavaScript file is in it's default site location i.e /var/www/html. As stated earlier in my second mail, I'm testing it with the Qt Quick UI project (Qt Creator New File or Project Application