We're going to running remote GUI on a few PCs, all communicating with a central server where the main application is running. Instead of hacking our own manual network protocol and marshalling layer for button presses and various events, my hope is that this could be solved more cleverly somehow.
Indeed, it'd be nifty if you could autogenerate network proxies for these Qt objects, or somehow connect signals/slots across an RPC interface, or something like that.
Writing a code generator based on Qt's .ui files should be doable, but maybe someone else has tried this before (with or without success)?
Another idea would be to use PyQt and some mechanism in python for networked proxy objects.
Failing Qt specific stuff, how does one solve remote GUI in general?
(Using web server/client is not ok, as we need our Qt Style, and probably a more speedy GUI with more fancy widgets. )