views:

188

answers:

2

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.

  • Is there a way to generate web pages using the existing Qt GUI code?
  • Does any design approach exist that lets me re-use the existing Qt code?
+2  A: 

QtWui would be one option. Be warned, though, that it's a very young project.

Mihai Limbășan
+1  A: 

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.

Debilski