PDA

View Full Version : QT cross-platefrom application



aminemaar
20th February 2019, 13:23
Hello every one, I'm newer with Qt,
I need to migrate an old application works only on windows to a cross-platefom application without changing the source code because the app very delicate.
So there is any methode to include the external application.

also the external app developped with html5, css, js, kendoUI, and it have a DLL files.

anda_skoa
20th February 2019, 15:28
If it depends on platform specific libraries (in this case DLLs), this will be very difficult, if not impossible.

What are your new target platforms?

Cheers,
_

aminemaar
21st February 2019, 08:37
If it depends on platform specific libraries (in this case DLLs), this will be very difficult, if not impossible.

What are your new target platforms?

Cheers,
_

The new targets (macos,win, linux, android, ios).
there is any mehod to include web application inside QTWebengine or QtwebKIt ?

anda_skoa
21st February 2019, 09:45
Integrating web content is usually not the problem, though of course it is more problematic on iOS due to platform restrictions.

However, your first post said something about DLL files, meaning Windows specific dynamic libraries.
Those obviously only work on Windows as-is.
It might be possible to use them on Linux and MacOS with tricks & adapters, but almost certainly not on Android or iOS.

Cheers,
_

aminemaar
21st February 2019, 16:06
Integrating web content is usually not the problem, though of course it is more problematic on iOS due to platform restrictions.

However, your first post said something about DLL files, meaning Windows specific dynamic libraries.
Those obviously only work on Windows as-is.
It might be possible to use them on Linux and MacOS with tricks & adapters, but almost certainly not on Android or iOS.

Cheers,
_

thank you for your help :)