Re: [Interest] How to configure Qt5 for Beaglebone Black

2014-09-25 Thread Filip Piechocki
First of all you need to decide which QPA plugin you want to use. If you use Ubuntu on the device then I guess you want to launch your apps in X11, right (like on desktop)? Then xcb plugin is what you need, so passing -no-xcb makes no sense. If you rather like to make fullscreen app without any

[Interest] gesture on qt4.8.3 not sensitive

2014-09-25 Thread Steve (YiLiang) Zhou
Dear all, Qt4.8.3 not support multitouch naturally ,so we add some codes to support it. The guesture example can work and recognize the guestures ,but it's not sensitive and sometimes it can't recognize them. About the modified codes ,see bellow, and about the touchpoint's center algorithm ,I

[Interest] iOS8: Qt 5.3.2 / QML , cannot get UIView from QQuickWindow anymore

2014-09-25 Thread Nils Heidorn
Hi ! I got a problem since upgrading my iPad to iOS 8 (had to, customer wants me to continue developing on iOS8 NOW). On iOS 7.x i was used to get the current uiview like this: UIView *view = static_castUIView *(QGuiApplication::platformNativeInterface()-nativeResourceForWindow(uiview,

Re: [Interest] Daydreaming about browser-hosted Qt apps

2014-09-25 Thread Elvis Stansvik
2014-09-25 4:03 GMT+02:00 Bob Hood bho...@comcast.net: I was just daydreaming about writing a web-based interface to a secure cloud storage (ala DropBox) using Qt. I imagined clients who would need to use Desktop-based browsers (Chrome, Firefox, etc.) for the ability to securely access

Re: [Interest] Daydreaming about browser-hosted Qt apps

2014-09-25 Thread Brian Dentino
Another interesting project out there is QmlWeb. Haven't looked too much into it yet but at first glance it seems like it could be promising, at least for relatively simple Qml-based apps. http://akreuzkamp.de/2013/07/10/webapps-written-in-qml-not-far-from-reality-anymore/ On Sep 25, 2014, at

Re: [Interest] Configuring Qt5 for Beaglebone Black

2014-09-25 Thread Peter Kuemmel
Hi all,   If anyone is successful configuring Qt5 from source then please share the steps you followed. Hav been working on it from past few days, changing options and all, but no luck.   Looking forward for a successful source.   Thanks in advance.   Sincerely, Amey Uday Patil You

Re: [Interest] iOS8: Qt 5.3.2 / QML , cannot get UIView from QQuickWindow anymore

2014-09-25 Thread Gustavsen Richard
The iOS version should not matter in this case (with respect to how this is implemented in Qt). But since you try to get the view, you are mixing Qt with native APIs. Do you call UIApplicationMain yourself? Perhaps you try to grab the view at a point before the window is fully created? You can

Re: [Interest] iOS8: Qt 5.3.2 / QML , cannot get UIView from QQuickWindow anymore

2014-09-25 Thread Nils Heidorn
Hi Richard, sadly the iOS version does matter. Maybe i explained it wrong. The lines i posted work perfectly well on iOS6 7. But in iOS8 the uiview is nil. ( window() still delivers a valid QQuickWindow, so thats okay ) I AM mixing Qt with native API as is needed for several tasks. The lines are

[Interest] Qt Creator GLSL support

2014-09-25 Thread rap
Hi Syntax checking and highlighting in QT Creator 3.2.1 for glsl is outdated, at least for glsl 4.+ . Is there a fix for this? thanks, /Risto ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Daydreaming about browser-hosted Qt apps

2014-09-25 Thread Bob Hood
On 9/25/2014 1:54 AM, Brian Dentino wrote: Another interesting project out there is QmlWeb. Haven't looked too much into it yet but at first glance it seems like it could be promising, at least for relatively simple Qml-based apps.

Re: [Interest] Daydreaming about browser-hosted Qt apps

2014-09-25 Thread Bob Hood
On 9/25/2014 1:46 AM, Elvis Stansvik wrote: While it's not Qt running in browser, there's also Wt (http://www.webtoolkit.eu/) which seems to me a more viable way of getting something Qt-ish in web land. Haven't used it myself though. Wow. Not specifically Qt, but a great example of what I was

Re: [Interest] iOS8: Qt 5.3.2 / QML , cannot get UIView from QQuickWindow anymore

2014-09-25 Thread Gustavsen Richard
Hmm. I tested getting the UIView from QQuickWindow in my own app, and it works here with Qt-5.3. Check if the window you get is a top level window (QWindow::isTopLevel()). Otherwise, follow parent to the top level before getting the view. If that doesn't work out, check if you can trim down

Re: [Interest] iOS8: Qt 5.3.2 / QML , cannot get UIView from QQuickWindow anymore

2014-09-25 Thread Nils Heidorn
Hello Richard, thanks for the effort ! I have to ask, sorry about that: Are you doing this on iOS 8 ? Like i said, my code has not been changed since iOS 6, it just won't work anymore. I tried your topLevel advice and indeed my window() returns true to that request... Greetings, Nils Am

[Interest] How to read Qmake .pro file built-in variables

2014-09-25 Thread rap
Is there a way to read the contents of the qmake project file (.pro) built-in variables, specially the TARGET variable? I'm doing a bunch of small examples and getting the TARGET (.exe) name to my QWindow class would help to pass the name to setTitle() consistently and automatically. Thanks,

Re: [Interest] connecting to QObject member of QProcess

2014-09-25 Thread Sze Howe Koh
On 25 September 2014 10:20, Thiago Macieira thiago.macie...@intel.com wrote: On Wednesday 24 September 2014 19:19:13 Thiago Macieira wrote: On Thursday 25 September 2014 09:37:49 nus1998 wrote: Hi All, I met a issue when use the new connecting method, in my code:

Re: [Interest] How to read Qmake .pro file built-in variables

2014-09-25 Thread Karl Ruetz
Here’s how I do it: TARGET = MyProgram VERSION = 1.0.0.0 DEFINES += \ APP_VERSION=$$VERSION \ APP_NAME=\\\$$TARGET\\\ I then access the TARGET as the constant APP_NAME and VERSION as the constant APP_VERSION Karl On Sep 25, 2014, at 8:04 AM, rap r...@dlc.fi wrote: Is there a

Re: [Interest] How to read Qmake .pro file built-in variables

2014-09-25 Thread Samuel Gaist
On 25 sept. 2014, at 15:04, rap r...@dlc.fi wrote: Is there a way to read the contents of the qmake project file (.pro) built-in variables, specially the TARGET variable? I'm doing a bunch of small examples and getting the TARGET (.exe) name to my QWindow class would help to pass the

Re: [Interest] iOS8: Qt 5.3.2 / QML , cannot get UIView from QQuickWindow anymore

2014-09-25 Thread Nils Heidorn
Holy cr*p ! I am very sorry for wasting everybodys (and especially Richrds) time. The crash that i experienced from using the UIActivityController did *not* derive from uiview beeing nil. In fact after Richard was so sure of his thing i used qDebug() instead of relying on Xcode 6 debugger.

Re: [Interest] How to read Qmake .pro file built-in variables

2014-09-25 Thread rap
Perfect! Thank you Karl! /Risto Date: Thu, 25 Sep 2014 08:13:10 -0500 From: Karl Ruetz karl.ru...@ruetzdogz.com Subject: Re: [Interest] How to read Qmake .pro file built-in variables To: Interest@qt-project.org Message-ID: 42d70809-3ede-4cc0-ab25-f1e013f70...@ruetzdogz.com Content-Type:

Re: [Interest] How to configure Qt5 for Beaglebone Black

2014-09-25 Thread Thiago Macieira
On Thursday 25 September 2014 08:37:34 Filip Piechocki wrote: Then, I've never built Qt for BBB, but as you are using Ubuntu there I would probably follow the same steps I do for RaspberryPi. Here is the tutorial: If you've got Ubuntu, I'd just install the pre-built packages. -- Thiago

[Interest] Support for multiple 'out' parameters in qdbusxml2cpp

2014-09-25 Thread Adriano Campos
Hi, I'm using QT5.3 and I've the same problem with multiple 'out' parameters in qdbusxml2cpp, that I just found in this mail list but I don't understand the solution. So, My XML file is: !DOCTYPE node PUBLIC -//freedesktop//DTD D-BUS Object Introspection 1.0//EN

[Interest] [OT] Re: iOS8: Qt 5.3.2 / QML , cannot get UIView from QQuickWindow anymore

2014-09-25 Thread Till Oliver Knoll
Am 25.09.2014 um 16:11 schrieb Nils Heidorn nils_heid...@gmx.de: Holy cr*p ! Yep. An experience shared amongst many a programmer. ;) Happy coding! Oliver ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Qt Creator GLSL support

2014-09-25 Thread Sean Harmer
On Thursday 25 September 2014 12:44:49 rap wrote: Hi Syntax checking and highlighting in QT Creator 3.2.1 for glsl is outdated, at least for glsl 4.+ . Is there a fix for this? Some WIP patches for this should land soon. Cheers, Sean -- Dr Sean Harmer | sean.har...@kdab.com | Managing

[Interest] Qt certification

2014-09-25 Thread Ramakanthreddy Kesireddy
Hi, Please let me know about Qt certification as provided by Digia and any training material or content for the Qt certification. Thanks, Ramakanth Disclaimer: This