Re: [Interest] Qt and Dropbox API v2

2016-11-02 Thread Bob Hood
On 10/20/2016 5:29 PM, Bob Hood wrote: Anybody know of a library, either C++- or (preferably) Qt-based, that implements an interface to Dropbox using its new APIv2? I did it myself. https://github.com/b0bh00d/QtDropbox2 In case anybody else has a need to access Dropbox via Qt using APIv2.

Re: [Interest] Qml Javascript pragma libray use Qt.matrix4x4() possible?

2016-11-02 Thread Jérôme Godbout
Hi Sina, your right, this work into recent Qt version (into 5.5.1 at least), my bad, just realize the code was using a context singleton fonction instead of the Qt call to create the object. some coder here seem to find Qt.vector3d() to long to type so they made vec3() function that create a

[Interest] Debugging the Qt Source on Android Device with the QtSDK installation in QtCreator

2016-11-02 Thread Alexandre Pretyman
Hi all, Is it possible to use the Qt installed by QtSDK for Android to debug Qt's sources in QtCreator? Or I really have to build Qt from sources in debug mode? If it is possible, then how? My setup is: OSX 10.11 QtSDK 5.7 for Android installed with sources QtCreator 4.1 installed standalone I

Re: [Interest] Qt3D face culling

2016-11-02 Thread Paul Lemire
On Thursday, February 25, 2016 10:38:11 AM Øyvind Bakken wrote: > Hi, > > we are developing a desktop application with 3D graphics using Qt3D. We > have run into some issues when using the Qt3DRender.CullFace settings in > the Qt3DRender.StateSet module. > > Basically we have an open surface

Re: [Interest] Detecting container app on web page

2016-11-02 Thread Jani Tykka
The webpage would need to signal to it's container to do something. With other non-Qt containers this is achieved by registering the container as event listener. In case of Qt the webpage would instead of postMessage just try to open url with some special scheme: like custom://go.to/settings, then

Re: [Interest] Detecting container app on web page

2016-11-02 Thread Kai Koehne
> -Original Message- > From: Interest [mailto:interest-bounces+kai.koehne=qt...@qt-project.org] > On Behalf Of Jani Tykka > Sent: Wednesday, November 02, 2016 7:09 AM > To: interest@qt-project.org Interest > Subject: [Interest] Detecting container app on web

[Interest] Detecting container app on web page

2016-11-02 Thread Jani Tykka
Hi, I load web page to QML WebEngineView. Is there any method in Javascript that can be used to detect on webpage that the container app is Qt application? Of course I could use special HTTP user-agent header or give the information in URL params when requesting the web page, but I'm curious if