30 January 2012 ~ 0 Comments

Aplicaciones Qt en VNC y en pantalla local

The QVNCServer is not a full VNC server, but is a Qt display driver where the output is made available as a VNC Server on the network interface. The “VNC server” is not a separate process, and is simpler than a full VNC server in that it can only handle 1 VNC client at a [...]

Continue Reading

Tags: ,

26 January 2012 ~ 0 Comments

VNC para Qt Embedded (QWS) con resolución personalizada

Ejecuta la aplicacion usando los parámetros: ./miApp  -qws -display VNC:0  -geometry 1024×768+0+0 Si tu aplicación ejecuta en pantalla completa no es  necesario el -geometry. Pero para que realmente funcione debe existir una variable de ambiente QWS_SIZE=1024×768 Por ejemplo, se puede hacer # QWS_SIZE=1024×768 ./miApp  -qws -display VNC:0  -geometry 1024×768+0+0

Continue Reading

Tags: , , ,