The web interface is identical to the Qt user interface

I am working on an 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 interface on the Internet. The Qt GUI accesses device functions through a library of interfaces.

  • Is there a way to generate web pages using existing Qt GUI code?
  • Is there any design approach that allows me to reuse existing Qt code?
+4
source share
3 answers

QtWui will be one of the options. Be careful, however, that this is a very young project.

+2
source

Qt Labs' blog has a QWebClient entry that looks promising. The last update to the git repository was in October 2009.

Alternatively, you can wait until the Googles Native Client and the Qt Port that runs on it are stable / complete. The native client aims to execute system code that is isolated in the browser, so you can simply plug in the Qt application to run.

+1
source

All Articles