Sandeep Prabhu
Sandeep Prabhu

Reputation: 103

Web Interface identical to Qt user interface

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

Answers (3)

Debilski
Debilski

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

Mihai Limbășan
Mihai Limbășan

Reputation: 67576

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

Upvotes: 2

Related Questions