Re: [Interest] Json support for Qt5 QML - code review needed

2014-04-07 Thread Mandeep Sandhu
Qt5 already has Json support in the form of QJsonDocument and co. Do you use QJson* classes underneath as well or you've implemented your own JSON parsing? Couldn't JSONPath be modelled using the existing QJson* classes? I could volunteer for reviewing too if you can point to us your repo/code.

[Interest] Speech recognition in Qt5

2014-04-07 Thread Ramakanthreddy Kesireddy
Hi, Please let me know speech Recognition engine Simon from KDE http://simon.kde.org/ is Qt5 enabled as we plan to include voice interface in our Qt5 IVI application. Or does QtSpeech API would support both speech to text and text to speech in Qt 5.3? Thanks and Regards, Ramakanth

Re: [Interest] Speech recognition in Qt5

2014-04-07 Thread Saether Jan-Arve
The Qt Speech repository (ssh://codereview.qt-project.org:29418/qt/qtspeech.git) only does TTS (Text to speech), and not Speech to Text. Also, it relies on the underlying text-to-speech technology of the platform, which means that it might not be available for your platform. Jan Arve From:

Re: [Interest] QMessageBox default sizes

2014-04-07 Thread Sensei
On 4/2/14, 2:32pm, Sensei wrote: However, I can't set minimum sizes of the dialog with the following: box_-layout()-setSizeConstraint(QLayout::SetMinimumSize); box_-setMinimumSize(400, 150); Could this be a problem in setting constraints before executing the dialog? So... any

[Interest] Deploying on Mac permissions and automation

2014-04-07 Thread Sensei
Dear all, I am experimenting with MacOS X (Qt 4.8.5), and I am finding it quite unusual. The application is built by Xcode, and Qt comes from homebrew. The first question: does macdeployqt need special permissions? If I run it as a standard user, I get errors, if I sudo it, everything is fine:

Re: [Interest] QMessageBox default sizes

2014-04-07 Thread Till Oliver Knoll
Am 07.04.2014 um 14:28 schrieb Sensei sense...@gmail.com: On 4/2/14, 2:32pm, Sensei wrote: However, I can't set minimum sizes of the dialog with the following: box_-layout()-setSizeConstraint(QLayout::SetMinimumSize); box_-setMinimumSize(400, 150); Could this be a problem in

Re: [Interest] QMessageBox default sizes

2014-04-07 Thread Tony Rietwyk
Hi Sensei, In the first statement you are telling the layout to override the minimum size when it does its calculations. This means that the second statement is redundant, since those values will be clobbered by the layout. In Qt 4.8.5 I am unable to get the minimum size to work anyway,

[Interest] How to allow QML windows to come to foreground when clicked

2014-04-07 Thread McLin, Matthew
Hi all, I am working on a QML application with wizard-style pages (drawn with a QQuickView), and occasionally it has to pop up some windows with images. I would like the image windows to be stand-alone, meaning they can float above or behind the wizard GUI depending on the user's preference.

[Interest] Error in .pro file

2014-04-07 Thread igor.mironchik
Hi. What’s wrong in the next line of the .pro file: win32:!win32-g++ PRE_TARGETDEPS += $$OUT_PWD/../QtMWidgets/lib/QtMWidgets.lib Where error is: Assignment needs exactly one word on the left hand side. Thanks.___ Interest mailing list

Re: [Interest] Error in .pro file

2014-04-07 Thread igor.mironchik
I’ve found the error. The correct line should be: win32:!win32-g++: PRE_TARGETDEPS += $$OUT_PWD/../QtMWidgets/lib/QtMWidgets.lib From: igor.mironc...@gmail.com Sent: Monday, April 07, 2014 7:43 PM To: interest@qt-project.org Subject: Error in .pro file Hi. What’s wrong in the next line of

Re: [Interest] QFileInfoList inheritance producing warnings

2014-04-07 Thread Eric Clark
-Original Message- From: interest-bounces+eclark=ara@qt-project.org [mailto:interest- bounces+eclark=ara@qt-project.org] On Behalf Of Thiago Macieira Sent: Friday, April 04, 2014 6:04 PM To: interest@qt-project.org Subject: Re: [Interest] QFileInfoList inheritance producing

Re: [Interest] Deploying on Mac permissions and automation

2014-04-07 Thread Thiago Macieira
Em seg 07 abr 2014, às 13:22:08, Portale Alessandro escreveu: Hi, I had this happening with homebrew's Qt as-well. Perhaps it is because homebrew sets the owner of the Qt files to root (but not 100% sure). Anyway although it is great that homebrew ships Qt, I would not suggest deploying

[Interest] xcb_conn.c:186: write_vec: Assertion `!c-out.queue_len' failed.

2014-04-07 Thread Alexander Ivash
Did anybody ever confront such an issue? It started happening after I created two instances of QtQuick2ApplicationViewer (to debug network communication between two 'instances' of my app). After some google-ing I found that 'QSG_RENDER_LOOP=BASIC' could help and tried this as well - no luck so

[Interest] Using Non-QObject-derived types in Javascript

2014-04-07 Thread Gav Wood
Hi, I'm working to extending some functionality to be used by the Javascript as part of a QWebView page. I need to be able to pass around some non-QObject derived classes (actually a big-integer class) as arguments return types of the APIs I expose. This worked find when doing something similar