Home · All Classes · Main Classes · Grouped Classes · Modules · Functions

Qtopia Core Virtual Framebuffer

The virtual framebuffer allows Qtopia Core programs to be developed on a desktop machine, without switching between consoles and X11.

The virtual framebuffer is located in $QTDIR/tools/qvfb.

Using the Virtual Framebuffer

  1. Configure Qtopia Core with the -qvfb argument and compile the library:
        ./configure -qvfb
        make
  2. Compile qvfb as a normal Qt/X11 application and run it. Do not compile it as a Qtopia Core application.
  3. Start a Qtopia Core master application (i.e., construct QApplication with the QApplication::GuiServer flag or use the -qws command line parameter). You can tell the server that you want to use the virtual framebuffer driver, e.g.:
        masterapp -qws -display QVFb:0
  4. Qtopia Core will autodetect qvfb, so you can omit the -display command line parameter if you know that qvfb is running, and that the Qtopia Core library supports qvfb. (If this is not the case, Qtopia Core will write to the real framebuffer, and your X11 display will be corrupted.)

qvfb supports the following command line options:

OptionMeaning
-width widththe width of the virtual framebuffer (default: 240).
-height heightthe height of the virtual framebuffer (default: 320).
-depth depththe depth of the virtual framebuffer (1, 8 or 32; default: 8).
-nocursordo not display the X11 cursor in the framebuffer window.
-qwsdisplay :idthe Qtopia Core display ID to provide (default: :0).

Virtual Framebuffer Design

The virtual framebuffer emulates a framebuffer using a shared memory region (the virtual frame buffer) and a utility to display the framebuffer in a window (qvfb). The regions of the display that have changed are updated periodically, so you will see discrete snapshots of the framebuffer rather than each individual drawing operation. For this reason drawing problems such as flickering may not be apparent until the program is run using a real framebuffer.

The target refresh rate can be set via the View|Refresh Rate menu item. This will cause qvfb to check for updated regions more frequently. The rate is a target only. If little drawing is being done, the framebuffer will not show any updates between drawing events. If an application is displaying an animation, the updates will be frequent, and the application and qvfb will compete for processor time.

Mouse and keyboard events are passed to the Qtopia Core master process via named pipes.

Warning: The virtual framebuffer is a development tool only. No security issues have been considered in the virtual framebuffer design. It should be avoided in a production environment; do not configure production libraries with -qvfb.


Copyright © 2005 Trolltech Trademarks
Qt 4.1.0
Hosted by uCoz