Re: [Interest] using a custom class as parameter of, signal/slot, used in QML

2019-03-21 Thread Sylvain Pointeau
Do you mean a copy / assignment of a QVariantMap to their classes? In the meantime, I also provided the answer that Q_GADGET was working fine. On Thu, Mar 21, 2019 at 1:21 PM Roland Hughes wrote: > One can define their own copy constructors and assignment operators for > their own classes. > >

Re: [Interest] parallel asynchrone action

2019-03-04 Thread Sylvain Pointeau
On Sun, Mar 3, 2019 at 10:56 PM Elvis Stansvik wrote: > There should be no such delay in QFutureWatcher. I've never seen that, > and I've used QtConcurrent::run/mapped + QFutureWatcher quite a lot. > > I would investigate that before making my own mechanism. > I am on macos, on which OS are you

[Interest] parallel asynchrone action

2019-03-02 Thread Sylvain Pointeau
Dear all, I made an action processed in another thread in QML, and I would like your review. When in QML, I click on a button, I send a signal to an object "TaskProcessor" (declared in QML) to start the action. Within this slot I start a future with QtConcurrent. Before I was using

Re: [Interest] using a custom class as parameter of signal/slot, used in QML

2019-03-02 Thread Sylvain Pointeau
, 2019 at 11:00 PM Jérôme Godbout wrote: > You can also give CBor implementation a look,maybe it could fit your bill > too: > > > > https://doc.qt.io/qt-5/qcbormap.html > > > > > > *From:* Sylvain Pointeau > *Sent:* March 1, 2019 4:46 PM > *To:* Jérôme Go

Re: [Interest] using a custom class as parameter of signal/slot, used in QML

2019-03-01 Thread Sylvain Pointeau
On Fri, Mar 1, 2019 at 10:29 PM Jérôme Godbout wrote: > Why is the struct deleted one the signal is finished? You create a > structure only for the signal? it’s not an object or data that will outlive > that call in the end? If so, you really need to make a copiable > representation of the

Re: [Interest] using a custom class as parameter of signal/slot, used in QML

2019-03-01 Thread Sylvain Pointeau
Hello Jerome, On Fri, Mar 1, 2019 at 5:25 PM Jérôme Godbout wrote: > Since signal are not sync all the time but can be async, the argument need > to be copiable to allow this. So you need to be able to copy the arguments > on the signals. Therefore the QObject is not copiable, they cannot be >

Re: [Interest] using a custom class as parameter of signal/slot, used in QML

2019-03-01 Thread Sylvain Pointeau
Hello Jerome, On Fri, Mar 1, 2019 at 3:34 PM Jérôme Godbout wrote: > The fact that the QObject is non copiable, is one of the reason it need a > pointer (which can be copied). As for the ownership, you can check with the > qqmlengine: > > https://doc.qt.io/qt-5/qqmlengine.html#objectOwnership >

Re: [Interest] using a custom class as parameter of signal/slot, used in QML

2019-03-01 Thread Sylvain Pointeau
ects. > > *Sent:* Friday, March 01, 2019 at 6:43 AM > *From:* "Sylvain Pointeau" > *To:* "Qt Project" > *Subject:* [Interest] using a custom class as parameter of signal/slot, > used in QML > Dear all, > > I understood how to use a struct

[Interest] using a custom class as parameter of signal/slot, used in QML

2019-03-01 Thread Sylvain Pointeau
Dear all, I understood how to use a struct / simple class as a parameter of a signal / slot, and it works well by value. However as soon as we have to declare the type for QML, it is not good anymore. It seems that it must be derived from QObject and passed by pointer. Do I understand well that

Re: [Interest] Fwd: vs. Flutter

2019-02-21 Thread Sylvain Pointeau
Do you have one example of someone who put a LGPL app in the app store and provided the binary object files? On Thu, Feb 21, 2019 at 3:58 PM Julius Bullinger wrote: > On 21.02.2019 15:44, Christian Gagneraud wrote: > > Qt is free (on mobile), free as in liberty, as long as your > > application

Re: [Interest] Fwd: vs. Flutter

2019-02-21 Thread Sylvain Pointeau
On Tue, Feb 19, 2019 at 8:30 PM Sylvain Pointeau wrote: > Qt is free on desktop, but it is not free on mobile, which is a real > showstopper for me and many others. > > Le mar. 19 févr. 2019 à 20:12, ich a écrit : > >> Qt is free, too. >> > I received few pers

Re: [Interest] vs. Flutter

2019-02-19 Thread Sylvain Pointeau
I am personally not convinced yet about having a javascript VM. It seems to be a bottleneck. However I see the advantages it brings, but was it really necessary? Le mar. 19 févr. 2019 à 21:15, Christoph Feck a écrit : > On 02/19/19 20:47, Jason H wrote: > > What I've learned is that it's better

Re: [Interest] Fwd: vs. Flutter

2019-02-19 Thread Sylvain Pointeau
Qt is free on desktop, but it is not free on mobile, which is a real showstopper for me and many others. Le mar. 19 févr. 2019 à 20:12, ich a écrit : > Qt is free, too. > > Am February 19, 2019 7:04:03 PM UTC schrieb Sylvain Pointeau < > sylvain.point...@gmail.com>: >> &

Re: [Interest] Fwd: vs. Flutter

2019-02-19 Thread Sylvain Pointeau
nt" > I operate on the "read at least the first page" premise. That whatever > they think is most important should be found there. > > But losing new doesn't really change my opinion of if it's declarative or > not. > > Thanks for the update/correction though. > &

[Interest] Fwd: vs. Flutter

2019-02-19 Thread Sylvain Pointeau
the "new" is now removed in dart 2.0 so you example is outdated. -- Message transféré - De : Jason H Date : mar. 19 févr. 2019 à 19:25 Objet : Re: [Interest] vs. Flutter À : Bernhard B CC : I'm in your offtopic camp. Everything is going Declarative. I really hate that web

Re: [Interest] qtwebview with qtwebchannel

2018-09-17 Thread Sylvain Pointeau
plicationDirPath() as QML context property and loaded > index.html into WebView like this: > > url: “file:” + applicationDirPath + “/index.html” > > And it works, so it doesn’t matter where the HTML document came from, > would it be remote server or local file. > > --- > Artem Sidyakin

Re: [Interest] qtwebview with qtwebchannel

2018-09-16 Thread Sylvain Pointeau
On Sun, Sep 16, 2018 at 5:24 PM Artem Sidyakin wrote: > I would understand if local file loading was allowed and remote forbidden, > but not the other way around. So if remote works, so should local. > No, a local file can be a threat if you receive it by email etc. Especially on an iOS where

Re: [Interest] qtwebview with qtwebchannel

2018-09-16 Thread Sylvain Pointeau
Le dim. 16 sept. 2018 à 12:22, Artem Sidyakin a écrit : > Original question was about “communication between WebView and QML on > iOS”, which does work, as we can see. > Now there is an issue of loading HTML documents from file/resource system, > but that’s a different kind of issue, innit

Re: [Interest] qtwebview with qtwebchannel

2018-09-16 Thread Sylvain Pointeau
> > Are you sure the WebView can load from the resources (url: > “qrc:/index.html)? > > I knew it cannot (does qrc:/ work on iOS at all?), but I was silently > waiting for someone to provide the way it should be done on iOS :) > Unfortunately no-one did, so apparently it’s a bigger problem than I

Re: [Interest] qtwebview with qtwebchannel

2018-09-15 Thread Sylvain Pointeau
to make it clearer, it does work on the simulator but not on my ipad device. @qt developers, please could you confirm if the webchannel is working or not on ipad (with the webview) ? Le ven. 14 sept. 2018 à 22:43, Sylvain Pointeau a écrit : > Hello, > > I finally succeeded to make i

Re: [Interest] qtwebview with qtwebchannel

2018-09-14 Thread Sylvain Pointeau
tml" onLoadingChanged: { if (loadRequest.errorString) { console.error(loadRequest.errorString); } } } On Fri, Sep 14, 2018 at 9:27 PM Sylvain Pointeau wrote: > I did copy the file on a writeable path, it does not lo

Re: [Interest] qtwebview with qtwebchannel

2018-09-14 Thread Sylvain Pointeau
I did copy the file on a writeable path, it does not load neither... does it even load local files, located in the app document folder? On Fri, Sep 14, 2018 at 8:44 PM Sylvain Pointeau wrote: > Are you sure the WebView can load from the resources (url: > "qrc:/index.html)? > fo

Re: [Interest] qtwebview with qtwebchannel

2018-09-14 Thread Sylvain Pointeau
Are you sure the WebView can load from the resources (url: "qrc:/index.html)? for me this does not work on ios, how could you make it run? Best regards, Sylvain On Fri, Sep 14, 2018 at 7:48 PM Sylvain Pointeau wrote: > Hi Artem, > > I just tried yesterday and today evening. &g

Re: [Interest] qtwebview with qtwebchannel

2018-09-14 Thread Sylvain Pointeau
case: > https://retifrav.github.io/blog/2018/07/14/html-from-qml-over-webchannel-websockets/#mostly-qml > > > > --- > > Artem Sidyakin > > > >> On 27 Aug 2018, at 00:21, Sylvain Pointeau > wrote: > >> > >> > >> On Sun, 26 Aug 201

Re: [Interest] qtwebview with qtwebchannel

2018-09-11 Thread Sylvain Pointeau
Prove me wrong. :-) > > > > > Sent: Wednesday, September 05, 2018 at 7:54 AM > > From: "Sylvain Pointeau" > > To: "Jason H" > > Cc: "Artem Sidyakin" , "Qt Project" < > interest@qt-project.org> > > Subject: Re

Re: [Interest] qtwebview with qtwebchannel

2018-09-04 Thread Sylvain Pointeau
I do nothing, XCode is doing everything Le mer. 5 sept. 2018 à 00:55, Jason H a écrit : > Neat. How do you manage that? Everytime I deploy to a new device, it makes > me register it in the developer portal. > > *Sent:* Tuesday, September 04, 2018 at 2:39 PM > *From:* &q

Re: [Interest] qtwebview with qtwebchannel

2018-09-04 Thread Sylvain Pointeau
provision. > Unless I'm wrong? > > *Sent:* Tuesday, September 04, 2018 at 12:38 AM > *From:* "Sylvain Pointeau" > *To:* "Artem Sidyakin" , "Qt Project" < > interest@qt-project.org> > *Subject:* Re: [Interest] qtwebview with qtwebchannel

Re: [Interest] qtwebview with qtwebchannel

2018-09-03 Thread Sylvain Pointeau
Hello, No I could not try yet, but I will do it this week. Note that there is no need to pay the subscribtion to test it on the real device, the subscription is only needed to put it on the app store. thank you for your help! Sylvain Le mar. 4 sept. 2018 à 05:09, Artem Sidyakin a écrit : >

Re: [Interest] qtwebview with qtwebchannel

2018-08-27 Thread Sylvain Pointeau
On Sun, 26 Aug 2018 at 19:47, Artem Sidyakin wrote: > I have an example working with Qt 5.11.1 on Mac OS and Android. > Unfortunately, I cannot check if it works on iOS - that’s why I was > guessing. > could you put your example somewhere in github? so I can try it on ios? Thank you Best

Re: [Interest] qtwebview with qtwebchannel

2018-08-26 Thread Sylvain Pointeau
, then I guess that’s the case. > > --- > Artem Sidyakin > > > On 11 Aug 2018, at 08:32, Sylvain Pointeau > wrote: > > > > > > > > Le jeu. 7 avr. 2016 à 13:17, Sylvain Pointeau < > sylvain.point...@gmail.com> a écrit : > > > > > >

Re: [Interest] qtwebview with qtwebchannel

2018-08-11 Thread Sylvain Pointeau
Le jeu. 7 avr. 2016 à 13:17, Sylvain Pointeau a écrit : > > > On Thu, Apr 7, 2016 at 11:23 AM, Milian Wolff > wrote: > >> On Thursday, April 7, 2016 9:38:01 AM CEST Sylvain Pointeau wrote: >> > Hello, >> > >> > Do you have any idea how to u

Re: [Interest] QML vs Electron

2018-08-07 Thread Sylvain Pointeau
On Tue, 7 Aug 2018 at 17:25, ekke wrote: > Am 07.08.18 um 15:52 schrieb Mike Krus via Interest: > > It was already addressed in my post. It seems to satisfy LGPL requirements on > your part, but not on Apple's part (because they don't allow the re-linked > application to run due to their DRM.)

Re: [Interest] QML vs Electron

2018-08-06 Thread Sylvain Pointeau
On Mon, Aug 6, 2018 at 11:56 PM Giuseppe D'Angelo wrote: > On Mon, 6 Aug 2018 at 23:46, Sylvain Pointeau > wrote: > > > > > > On Mon, Aug 6, 2018 at 3:44 PM ekke wrote: > >> > >> > >> I'm really waiting for a 30 EUR or so Indiepen

Re: [Interest] QML vs Electron

2018-08-06 Thread Sylvain Pointeau
On Mon, Aug 6, 2018 at 3:44 PM ekke wrote: > Am 04.08.18 um 19:23 schrieb Sylvain Pointeau: > > On Tue, 20 Feb 2018 at 12:58, René Hansen wrote: > >> >> Taxing big corporate use, while exempting smalltime adoption, even >> commercial, might be the way to go. This

Re: [Interest] QML vs Electron

2018-08-04 Thread Sylvain Pointeau
On Tue, 20 Feb 2018 at 12:58, René Hansen wrote: > > Taxing big corporate use, while exempting smalltime adoption, even > commercial, might be the way to go. This is just speculation on my part > though, I have no idea how a licensing scheme like this would work in > practice. > This was

Re: [Interest] ios / android - tutorial to wrap native component (such as webview)

2018-06-04 Thread Sylvain Pointeau
On Mon, 4 Jun 2018 at 17:42, Jason H wrote: > Webview/WebEngine is already wrapped. > > But I've never done it. One of the problems with wrapping things, is they > always intodruce platform-specific nuances. > Yes I know but sometimes I guess there is no better choice like for the webview. I

[Interest] ios / android - tutorial to wrap native component (such as webview)

2018-06-04 Thread Sylvain Pointeau
Hi, is there any tutorial or guide to wrap native component of ios / android and to use them in qtquick? Best regards, Sylvain ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QtQuick - list of heterogeneous objects

2018-06-04 Thread Sylvain Pointeau
Thank you Jérôme, I was trying React Native until now, and I will test Qt Quick very soon, I will then experiment what you suggested. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] QtLabs PDF on ios and android

2018-06-04 Thread Sylvain Pointeau
Hello, do you know if the QtLabs PDF is working on ios / android? and did you already use it? Best regards, Sylvain ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QtQuick for mobile - any experience to share?

2018-06-02 Thread Sylvain Pointeau
On Wed, 30 May 2018 at 20:38, Sylvain Pointeau wrote: > I have still not made any decision yet, I am doing some testing to get a > better idea. Thanks a lot so far to all for your feedback. > I investigated into React Native, as I know Qt quick by reading a lot about it and trying tim

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-30 Thread Sylvain Pointeau
I have still not made any decision yet, I am doing some testing to get a better idea. Thanks a lot so far to all for your feedback. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-29 Thread Sylvain Pointeau
On Tue, May 29, 2018 at 5:00 PM, Jason H wrote: > A few things not mentioned, (or scanning to catch up on the thread, I did > not see) > 1. RN will expose native libraries. This is terrible for a X-platform > developer as if you use Multimedia, have to know each multipedia API > expertly. The

[Interest] QtQuick - list of heterogeneous objects

2018-05-29 Thread Sylvain Pointeau
Dear all, how would you do in Qml to display a list of heterogeneous objects from a array in json provided dynamically? [ {type: "image", src: "xxx", text: "aaa"}, {type: "text", text: "aaa"}, {type: "circle", text: "aaa"} ] and I have 3 Qml object definition (or class? or do we call them?)

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-28 Thread Sylvain Pointeau
would using Qt under the LGPL affect your business model ? > You don't have to publish your sources, only under the GPL. > > > > > --- > Jean-Michaël Celerier > http://www.jcelerier.name > > On Mon, May 28, 2018 at 4:32 PM, Sylvain Pointeau < > sylvain.point.

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-28 Thread Sylvain Pointeau
On Mon, 28 May 2018 at 16:21, René Hansen wrote: > Or... > > Just make your app LGPL compliant and use Qt anyway. > I thought about it but that does not work for all projects, and I don’t see the business model in that case for my app.

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-27 Thread Sylvain Pointeau
>I am looking more and more in React Native, it seems manageable. It uses an js engine (like Qt) and integrates native code quite easily (like Qt). actually this is not that straightforward in RN, and this is different on Android (java) and iOS (Objective C). It is much easier with Qt. I continue

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-27 Thread Sylvain Pointeau
Hello Ekke, Jason, Jérôme, and all Thank you so much for sharing your experience and tips. Did you use the v-play components? how did you succeed to match the native look and feel? My choice is between Qt and React Native. I would have gone with Qt but the price is the real barrier for me. As

Re: [Interest] QML iOS - can we download content to be executed

2018-05-25 Thread Sylvain Pointeau
t. > > *Sent:* Friday, May 25, 2018 at 2:24 PM > *From:* "Sylvain Pointeau" <sylvain.point...@gmail.com> > *To:* "Jason H" <jh...@gmx.com> > *Cc:* "Qt Project" <interest@qt-project.org> > > *Subject:* Re: [Interest] QML iOS - ca

Re: [Interest] QML iOS - can we download content to be executed

2018-05-25 Thread Sylvain Pointeau
oad" > requirement is solely around not extending the app after review. I provided > apple with a datastructure that allowed the entirety of the application to > be inspected. > > *Sent:* Friday, May 25, 2018 at 9:15 AM > *From:* "Sylvain Pointeau" <sylvain.point...@gm

Re: [Interest] QML iOS - can we download content to be executed

2018-05-25 Thread Sylvain Pointeau
On Tue, May 22, 2018 at 12:18 PM, Sylvain Pointeau < sylvain.point...@gmail.com> wrote: > Dear all, > > I am interested to do an app that downloads new content from a server > using QML on iOS, do you know if it is possible to download content (in > QML) and to execute it?

[Interest] QtQuick for mobile - any experience to share?

2018-05-25 Thread Sylvain Pointeau
Dear all, Do you have any experience that you can share on your mobile development using QtQuick? compared to native? compared to react-native? others? How did you manage the different device sizes? and phone size / tablet size? mobile + desktop? I am really puzzled about which technology to

[Interest] QML iOS - can we download content to be executed

2018-05-22 Thread Sylvain Pointeau
Dear all, I am interested to do an app that downloads new content from a server using QML on iOS, do you know if it is possible to download content (in QML) and to execute it? is this possible from a technical point of view but is it also allowed by the apple policy? and for Android? Best

Re: [Interest] qml or qwidget

2018-02-23 Thread Sylvain Pointeau
Hi, On Thu, Feb 22, 2018 at 4:42 PM, Alexandre Ribeiro < alexandregomesribe...@gmail.com> wrote: > I'm using Qt Quick 2 with an in house 3D engine for a desktop application > and I've been getting great results. > > My clients actually required that we used an UI that wasn't native and > that

Re: [Interest] qml or qwidget

2018-02-23 Thread Sylvain Pointeau
Hi, On Thu, Feb 22, 2018 at 2:54 PM, Jérôme Godbout wrote: > For OpenGL, you might want to take a look at Qt3D if it suit your need. > Either can easily do the OpenGl part if you render to a texture and fill > the widgets or item painting with it. > > > I for one would go

Re: [Interest] qml cache vs compiler

2017-01-24 Thread Sylvain Pointeau
> > > > Is it precompiled in 5.8 or is it kind of jit compilation? > > It's a cache of the JIT > > How does it improve the startup time? is it persistant between execution? ___ Interest mailing list Interest@qt-project.org

[Interest] qml cache vs compiler

2017-01-24 Thread Sylvain Pointeau
Hello, I dont't understand very well the Qml cache in 5.8 versus the Qml compiler in the commercial version Is it precompiled in 5.8 or is it kind of jit compilation? Best regards, Sylvain ___ Interest mailing list Interest@qt-project.org

Re: [Interest] qt 5.7 broken on mac os x

2016-09-01 Thread Sylvain Pointeau
On Wed, Aug 31, 2016 at 9:30 AM, Nuno Santos wrote: > > > I’m using stock Qt 5.7 on Mac OSX without problems. > I re-installed it and now it is fine, but this was about "module non relocatable"... Best regards, Sylvain ___

[Interest] qt 5.7 broken on mac os x

2016-08-30 Thread Sylvain Pointeau
Hello, I just installed qt 5.7 on my mac os x and qt creator underlines all qml libs... when is qt 5.7.1 planned? best regards, Sylvain ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] iOS QWebview communication javascript to native

2016-08-24 Thread Sylvain Pointeau
Hello, Do you know how to communicate from javascript to native in a qwebview in iOS? Best regards, Sylvain ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] qtwebview with qtwebchannel

2016-04-07 Thread Sylvain Pointeau
On Thu, Apr 7, 2016 at 11:23 AM, Milian Wolff <milian.wo...@kdab.com> wrote: > On Thursday, April 7, 2016 9:38:01 AM CEST Sylvain Pointeau wrote: > > Hello, > > > > Do you have any idea how to use WebSocket or WebChannel on iOS? > > Should I conclude that we can

Re: [Interest] qtwebview with qtwebchannel

2016-04-07 Thread Sylvain Pointeau
Hello, Do you have any idea how to use WebSocket or WebChannel on iOS? Should I conclude that we cannot do hybrid apps with Qt on iOS (works on desktop, don't know about Android)? Best regards, Sylvain On Thu, Mar 31, 2016 at 5:43 PM, Sylvain Pointeau < sylvain.point...@gmail.com> wrote:

Re: [Interest] CLion to replace QtCreator?

2016-04-05 Thread Sylvain Pointeau
On Tue, Apr 5, 2016 at 3:28 PM, NoMercy wrote: > Check out the bug report link in first mail. > I checked and the 2 items the most frequently asked are: 1. open .pro files 2. QML editor for 1. I think you can use cmake, it is a little effort, but you will get used to

Re: [Interest] CLion to replace QtCreator?

2016-04-05 Thread Sylvain Pointeau
Hello, Why are you not able to use CLion? it is cmake based project, it should work with Qt pretty well, shouldn't it? Best regards, Sylvain On Tue, Apr 5, 2016 at 3:03 PM, NoMercy wrote: > I see the answers usually offering some workarounds, yes you can do that > BUT in a

Re: [Interest] qtwebview with qtwebchannel

2016-03-31 Thread Sylvain Pointeau
On Thu, Mar 31, 2016 at 4:53 PM, Milian Wolff <milian.wo...@kdab.com> wrote: > On Thursday, March 31, 2016 4:46:58 PM CEST Allan Sandfeld Jensen wrote: > > On Thursday 31 March 2016, Sylvain Pointeau wrote: > > > On Tue, Mar 29, 2016 at 10:24 AM, Sylvain Pointeau <

Re: [Interest] qtwebview with qtwebchannel

2016-03-31 Thread Sylvain Pointeau
On Tue, Mar 29, 2016 at 10:24 AM, Sylvain Pointeau < sylvain.point...@gmail.com> wrote: > On Tue, Mar 29, 2016 at 8:31 AM, Kalinowski Maurice < > maurice.kalinow...@theqtcompany.com> wrote: > >> > QtWebView has a QtWebEngine backend, and that should be available on &

Re: [Interest] qtwebview with qtwebchannel

2016-03-29 Thread Sylvain Pointeau
On Tue, Mar 29, 2016 at 8:31 AM, Kalinowski Maurice < maurice.kalinow...@theqtcompany.com> wrote: > > > QtWebView has a QtWebEngine backend, and that should be available on > Windows. > > For UWP/WinRT there is a platform specific implementation loading Edge > into your application. For classic

Re: [Interest] qtwebview with qtwebchannel

2016-03-28 Thread Sylvain Pointeau
>Le dimanche 27 mars 2016, Allan Sandfeld Jensen <k...@carewolf.com> a écrit : > > On Sunday 27 March 2016, Sylvain Pointeau wrote: > > please could you confirm if qtwebchannel works with qtwebview? > > if yes, would you have some exemple to show how it wor

Re: [Interest] qtwebview with qtwebchannel

2016-03-27 Thread Sylvain Pointeau
Le dimanche 27 mars 2016, Allan Sandfeld Jensen <k...@carewolf.com> a écrit : > On Sunday 27 March 2016, Sylvain Pointeau wrote: > > please could you confirm if qtwebchannel works with qtwebview? > > if yes, would you have some exemple to show how it works in

[Interest] qtwebview with qtwebchannel

2016-03-26 Thread Sylvain Pointeau
hello, please could you confirm if qtwebchannel works with qtwebview? if yes, would you have some exemple to show how it works in qml? addtionally, does qtwebview exist for windows 10? Best regards, Sylvain ___ Interest mailing list

Re: [Interest] My experience porting to Qt5 (on OS X)

2012-09-13 Thread Sylvain Pointeau
What are the issues with Apples version of Clang? The biggest problem I have with Qt + clang on the mac is the dismal debugging. I can't get LLDB to work with Creator and Apple's ancient GDB is worse than useless. I am in the process of compiling Qt 5 with clang+libc++ to have the full

Re: [Interest] Sqlite3 handler access

2012-08-15 Thread Sylvain Pointeau
Are you linked statically to Sqlite (included in Qt?) if yes then you try to use 2 different versions of Sqlite and that crashes. just recompile QtSqlite and if possible use the system dll, or link with the same version as you use in your app. cd src/plugins/sqldrivers/sqlite qmake