Re: [Interest] Sharing Files on Android

2022-10-31 Thread ekke
Am 01.11.22 um 02:33 schrieb Kyle Nusbaum via Interest: Hi everyone. I have a question about opening files using Qt on Android. Specifically, I'm trying to open a pdf file that was downloaded through my application. Supposedly I should be using QDesktopServices::openUrl (https://doc.qt.io/q

[Interest] Sharing Files on Android

2022-10-31 Thread Kyle Nusbaum via Interest
Hi everyone. I have a question about opening files using Qt on Android. Specifically, I'm trying to open a pdf file that was downloaded through my application. Supposedly I should be using QDesktopServices::openUrl (https://doc.qt.io/qt-6/qdesktopservices.html#openUrl), which *sort* of wor

Re: [Interest] qt_add_qml_module and not embedding QML files

2022-10-31 Thread Benjamin TERRIER
On Mon, 31 Oct 2022 at 16:29, Ulf Hermann via Interest < interest@qt-project.org> wrote: > > I cannot use qmlpreview, as I usually need to have the full application > > running. > > You can run any application through QML preview. In Qt Creator (in > contrast to Qt Design Studio), the option is a

Re: [Interest] Use SQLite math functions (-DSQLITE_ENABLE_MATH_FUNCTIONS) like sin and cos?

2022-10-31 Thread Till Oliver Knoll
Am 27.10.22 um 12:46 schrieb Benjamin B (BBenj): Hello, Not sure if it was mentioned, but you can also copy the QSQLite plugin, change its name and build it with SQLite and all the options you need. Then use it as a Qt SQL plug-in and load it instead of the default one. Thank you for that s

Re: [Interest] Use SQLite math functions (-DSQLITE_ENABLE_MATH_FUNCTIONS) like sin and cos?

2022-10-31 Thread Till Oliver Knoll
Am 26.10.22 um 19:35 schrieb Mike Chinander: I think it would be nice to have these math functions generally available in queries, but I would like to point out that in your example code, the angle you are taking the cosine of is a constant rather than a value retrieved from the DB. Uhm... ye

Re: [Interest] Use SQLite math functions (-DSQLITE_ENABLE_MATH_FUNCTIONS) like sin and cos?

2022-10-31 Thread Till Oliver Knoll
Am 26.10.22 um 18:23 schrieb Thiago Macieira: On Wednesday, 26 October 2022 07:29:15 PDT Till Oliver Knoll wrote: I have "github actions" that make it very easy to install a given "stock binary Qt release" on the desired integration platform Then please ask whoever is providing those binaries t

Re: [Interest] qt_add_qml_module and not embedding QML files

2022-10-31 Thread Ulf Hermann via Interest
I cannot use qmlpreview, as I usually need to have the full application running. You can run any application through QML preview. In Qt Creator (in contrast to Qt Design Studio), the option is a bit hidden: There is a "QML Preview" Option in the build menu. Use that to start the application.

Re: [Interest] qt_add_qml_module and not embedding QML files

2022-10-31 Thread Benjamin TERRIER
On Mon, 31 Oct 2022 at 10:48, Ulf Hermann via Interest < interest@qt-project.org> wrote: > > Is there a way to not embed QML files into the Qt resource system when > > using qt_add_qml_module() ? > > We can only pre-compile files embedded into the resource file with > qmlcachegen. That's why we st

Re: [Interest] qt_add_qml_module and not embedding QML files

2022-10-31 Thread Ulf Hermann via Interest
Is there a way to not embed QML files into the Qt resource system when using qt_add_qml_module() ? We can only pre-compile files embedded into the resource file with qmlcachegen. That's why we strongly recommend using the resource file system. You can, of course still manually write your qmldi