Reputation: 103
I'm working on a embedded system with a display. The user interface was developed using Qt.
How can I develop a web interface that looks identical to the existing Qt interface, and gives the same user experience on the web. The Qt GUI is accessing the device functionalities through an interface library.
Upvotes: 4
Views: 1544
Reputation: 371
There is a port in progress, compiling QT with Emscripten
http://www.phoronix.com/scan.php?page=news_item&px=MTI3NDc
http://vps2.etotheipiplusone.com:30176/redmine/projects/emscripten-qt/wiki/Demos
Upvotes: 0
Reputation: 67838
There was once an entry on the Qt Labs blog about a QWebClient which looked promising. The latest update to the git repository was in October 2009, however.
As alternatives, you could wait until both Google’s Native Client and the Qt port that will run on it are stabilised/finished. The Native Client aims at running system code sandboxed in a browser, so you could ‘simply’ port your Qt app to run on this.
Upvotes: 1
Reputation: 67576
QtWui would be one option. Be warned, though, that it's a very young project.
Upvotes: 2