Reputation: 9758
Sometimes I stumble upon frameworks that used to provide a web interface for Qt applications (like e.g. https://github.com/alberthier/qtwui)
Is there today a Qt5 way (or even better PyQt5) to run a Qt application on a server while accessing the UI via web?
Upvotes: 4
Views: 620
Reputation: 98425
WebGL streaming is one way forward, as it allows to run both QML and widget-based UIs in the browser.
Upvotes: 2
Reputation: 8994
I know several conceptions, but from my point of view they are not ready for production.
Emscripten: http://blog.qt.io/blog/2015/09/25/qt-for-native-client-and-emscripten
QML Web: https://github.com/qmlweb/qmlweb
Upvotes: 2