Re: [Interest] Any good (e)books yet on QML?

2015-06-04 Thread Bob Hood
Excellent. Something to get me going. спасибо, Dmitry. :) On 6/4/2015 11:56 AM, Dmitry Volosnykh wrote: http://qmlbook.github.io/ On Thu, Jun 4, 2015 at 8:48 PM, Bob Hood >wrote: I've been checking occasionally, and I've yet to see anything being publish

Re: [Interest] Any good (e)books yet on QML?

2015-06-04 Thread Dmitry Volosnykh
http://qmlbook.github.io/ On Thu, Jun 4, 2015 at 8:48 PM, Bob Hood wrote: > I've been checking occasionally, and I've yet to see anything being > published > on "learning" QML. Does anybody know of one, or if one is in the works? > ___ > Interest mail

[Interest] Any good (e)books yet on QML?

2015-06-04 Thread Bob Hood
I've been checking occasionally, and I've yet to see anything being published on "learning" QML. Does anybody know of one, or if one is in the works? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Showing QGuiApplication/QML application on a given HWND ref.

2015-06-04 Thread Nuno Santos
I have tried to make a function that turns a WindowRef into a QWindow with the following code in Cocoa: QWindow* IVstEditor::fromWindowRef(void *ptr) { NSWindow *nsw = [[NSWindow alloc] initWithWindowRef:ptr]; NSView *nsv = (NSView*)nsw.contentView; NSLog(@"frame - %f %f %f %f", nsv.f

Re: [Interest] Python not found when building QT 5.4.x

2015-06-04 Thread Olivier Barthelemy
It's a MSVC build launched from cygwin. That same script worked for an earlier 5.x version 2015-06-04 17:05 GMT+02:00 Nuno Santos : > Are you targeting for MingW or or MSVC? > > I have been build Qt from source very recently and I have used the windows > prompt. > > I have followed this guide: >

Re: [Interest] How to run a WinRT app on a Window 8 intel tablet?

2015-06-04 Thread Nuno Santos
Oliver, Andrew, Thanks both for your replies. I will investigate further! Regards, Nuno Santos Founder / CEO / CTO www.imaginando.pt +351 91 621 69 62 > On 04 Jun 2015, at 12:37, Oliver Wolff wrote: > > Hi, > > I am afraid that deployment to a device from Creator only works for > Windows Ph

Re: [Interest] Python not found when building QT 5.4.x

2015-06-04 Thread Nuno Santos
Are you targeting for MingW or or MSVC? I have been build Qt from source very recently and I have used the windows prompt. I have followed this guide: http://doc.qt.io/qt-5/windows-building.html In my case, at some point, I had to install python

[Interest] Python not found when building QT 5.4.x

2015-06-04 Thread Olivier Barthelemy
I am launching QT5 build from sources, from a cygwin bash terminal on windows. Just before launching the nmake, the python i want to use is properly found and working. But during the build, the command python C:/sdk/src/qt-everywhere-opensource-src-5.4.2/qtdeclarative/src/3rdparty/masm/create_regex

Re: [Interest] QML and OpenGL conflicts

2015-06-04 Thread Marc Gilleron
I tried to set QSG_RENDER_LOOP to "threaded" but didn't noticed any difference, our application still crashes. 2015-06-04 14:40 GMT+02:00 Koehne Kai : > > > > -Original Message- > > From: Marc Gilleron [mailto:marc.gille...@gmail.com] > > Sent: Thursday, June 04, 2015 2:32 PM > > To: Ko

Re: [Interest] Showing QGuiApplication/QML application on a given HWND ref.

2015-06-04 Thread Nuno Santos
Hamish, Your tip was right. QWindow::fromWinId is expecting a NSView: plugins/platforms/cocoa/qcocoawindow.mm:NSView *foreignView = (NSView *)WId(tlw->property("_q_foreignWinId").value()); But what I’m giving is a Carbon WindowRef. I have found code to make an NSWindow from WindowRef:

Re: [Interest] QML and OpenGL conflicts

2015-06-04 Thread Koehne Kai
> -Original Message- > From: Marc Gilleron [mailto:marc.gille...@gmail.com] > Sent: Thursday, June 04, 2015 2:32 PM > To: Koehne Kai > Cc: interest@qt-project.org > Subject: Re: [Interest] QML and OpenGL conflicts > > I'm not sure where to set it, do you mean QSG_RENDER_LOOP is really an

Re: [Interest] QML and OpenGL conflicts

2015-06-04 Thread Marc Gilleron
I'm not sure where to set it, do you mean QSG_RENDER_LOOP is really an environment variable like PATH on Windows? Oo As for QQUickFrameBufferObject... I'm not sure how it will work. Our application creates its own context and has nothing to do with Qt in the first place. Because of its nature, all

Re: [Interest] How to export text to translate for translators ?

2015-06-04 Thread René J . V . Bertin
On Thursday June 04 2015 10:58:49 Gian Maxera wrote: > Is there a way to deploy only Qt Linguistics ? or a way to export the text to > translate in a format readable without Qt ? I'm guessing that on OS X at least you should indeed be able to build a self-contained app-bundle for Linguistics. I

Re: [Interest] QML and OpenGL conflicts

2015-06-04 Thread Koehne Kai
> -Original Message- > From: interest-bounces+kai.koehne=theqtcompany@qt-project.org > [] > We investigated the problem and found that both renderings were > happening in the same thread, and Qt was stealing the OpenGL context we > setup in our application (with a makeCurrent() I gu

Re: [Interest] How to run a WinRT app on a Window 8 intel tablet?

2015-06-04 Thread Oliver Wolff
Hi, I am afraid that deployment to a device from Creator only works for Windows Phone but not for Windows Tablets. For Tablets you have to package/deploy everything manually using windeployqt for example. The other option (that I would tend to avoid) would be building on your tablet (if it has

Re: [Interest] How to run a WinRT app on a Window 8 intel tablet?

2015-06-04 Thread Andrew Knight
Hi Nuno, On 04/06/15 13:57, Nuno Santos wrote: > Hi, > > I'm doing my first experiments with WinRT. > > I have a Dell Window 8 tablet and i'm trying to run a QtQuick Hello > World program on it. > > I was able to start the app on the computer but not on the tablet. > > I thought there was a mechan

[Interest] How to run a WinRT app on a Window 8 intel tablet?

2015-06-04 Thread Nuno Santos
Hi, I'm doing my first experiments with WinRT. I have a Dell Window 8 tablet and i'm trying to run a QtQuick Hello World program on it. I was able to start the app on the computer but not on the tablet. I thought there was a mechanism like iOS and Android, in which I could select the device.

Re: [Interest] How to export text to translate for translators ?

2015-06-04 Thread André Somers
Gian Maxera schreef op 4-6-2015 om 11:58: > Hello, > ok for translating the text and generate translations unit to insert into the > app I’ll use Qt Linguistic. Until now fine ! > But a step before that, is to create a document to send to translators and > collect those translations. > So the que

[Interest] QML and OpenGL conflicts

2015-06-04 Thread Marc Gilleron
Hello, I'm currently integrating an application using OpenGL in a Qt GUI where QML is mainly used. We may need one or even more OpenGL views rendered by our application. But as soon as something Qt is shown, the application's rendering glitches and sometimes crash, even if the Qt stuff is in a sep

[Interest] How to export text to translate for translators ?

2015-06-04 Thread Gian Maxera
Hello, ok for translating the text and generate translations unit to insert into the app I’ll use Qt Linguistic. Until now fine ! But a step before that, is to create a document to send to translators and collect those translations. So the question is how the translators can see the text to trans

Re: [Interest] Showing QGuiApplication/QML application on a given HWND ref.

2015-06-04 Thread Hamish Moffatt
On 04/06/15 17:44, Nuno Santos wrote: Hi, Unfortunately this technic doesn’t seem to be working on Mac. Not sure if this is a BUG. It is able to create the QQuickView, but as soon as it instantiates QQuickView, it crashes: if (!window) { window = QWindow::fromWinId((WId)ptr); // line that

Re: [Interest] Showing QGuiApplication/QML application on a given HWND ref.

2015-06-04 Thread Nuno Santos
Hi, Unfortunately this technic doesn’t seem to be working on Mac. Not sure if this is a BUG. It is able to create the QQuickView, but as soon as it instantiates QQuickView, it crashes: if (!window) { window = QWindow::fromWinId((WId)ptr); // line that causes the crash ... QML

Re: [Interest] Recent Qt5 does not compile with mingw64

2015-06-04 Thread Koehne Kai
> -Original Message- > From: interest-bounces+kai.koehne=theqtcompany@qt-project.org > [mailto:interest-bounces+kai.koehne=theqtcompany@qt-project.org] > On Behalf Of Guido Seifert > Sent: Wednesday, June 03, 2015 7:13 PM > To: interest@qt-project.org > Subject: Re: [Interest] Rec

[Interest] Extract only src attribute of an image tag into XmlRole with XPath functions

2015-06-04 Thread Gianluca Massera
Hello, I have an rss feed coming from Tumblr blog page. The xml of the feed has into description a lot of html content that I want to remove and keep only the first image I found. For example, this is one of the content into description tag: Re: [Interest] Camera not worknig on IOS
Maybe just wait for qt 5.5 release? To me it looks as if this bug will be fixed in 5.5, see https://codereview.qt-project.org/#/c/109116/ Regards, Gunnar Roth > Am 31.05.2015 um 01:27 schrieb Daniel França : > > Quite disappointed as it seems th