frans
frans

Reputation: 9758

Approaches to provide a Qt Gui via Web?

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

Answers (2)

WebGL streaming is one way forward, as it allows to run both QML and widget-based UIs in the browser.

Upvotes: 2

Dmitry Sazonov
Dmitry Sazonov

Reputation: 8994

I know several conceptions, but from my point of view they are not ready for production.

  1. Emscripten: http://blog.qt.io/blog/2015/09/25/qt-for-native-client-and-emscripten

  2. QML Web: https://github.com/qmlweb/qmlweb

Upvotes: 2

Related Questions