x11vnc: -cursor change shape handling, configure.ac: add more macros for X extensions

pull/1/head
runge 20 years ago
parent 3a4f41f657
commit 52ba8bfb2d

@ -1,3 +1,9 @@
2004-08-29 Karl Runge <runge@karlrunge.com>
* x11vnc: changes in cursor shape handling: use rfbSetCursor()
* cursor shape options: -cursor, -cursor (X|some|most)
* -vncconnect the default.
* configure.ac: add more macros for X extensions.
2004-08-15 Karl Runge <runge@karlrunge.com> 2004-08-15 Karl Runge <runge@karlrunge.com>
* x11vnc: -overlay to fix colors with Sun 8+24 overlay visuals. * x11vnc: -overlay to fix colors with Sun 8+24 overlay visuals.
* -sid option. * -sid option.

@ -39,9 +39,30 @@ AM_CONDITIONAL(WITH_FFMPEG, test ! -z "$with_ffmpeg")
# Checks for X libraries # Checks for X libraries
HAVE_X="false" HAVE_X="false"
AC_PATH_XTRA AC_PATH_XTRA
AH_TEMPLATE(HAVE_XSHM, [MIT-SHM extension build environment present])
AH_TEMPLATE(HAVE_XTEST, [XTEST extension build environment present])
AH_TEMPLATE(HAVE_XKEYBOARD, [XKEYBOARD extension build environment present]) AH_TEMPLATE(HAVE_XKEYBOARD, [XKEYBOARD extension build environment present])
AH_TEMPLATE(HAVE_LIBXINERAMA, [XINERAMA extension build environment present]) AH_TEMPLATE(HAVE_LIBXINERAMA, [XINERAMA extension build environment present])
AH_TEMPLATE(HAVE_LIBXRANDR, [XRANDR extension build environment present])
AH_TEMPLATE(HAVE_LIBXFIXES, [XFIXES extension build environment present])
AH_TEMPLATE(HAVE_LIBXDAMAGE, [XDAMAGE extension build environment present])
if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then
AC_CHECK_LIB(X11, XGetImage, HAVE_X="true",
HAVE_X="false",
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
if test $HAVE_X = "true"; then
X_PRELIBS="$X_PRELIBS -lXext"
AC_CHECK_LIB(Xext, XShmGetImage,
[AC_DEFINE(HAVE_XSHM)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
AC_CHECK_LIB(Xtst, XTestFakeKeyEvent,
X_PRELIBS="$X_PRELIBS -lXtst"
[AC_DEFINE(HAVE_XTEST)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
saved_CPPFLAGS="$CPPFLAGS" saved_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $X_CFLAGS" CPPFLAGS="$CPPFLAGS $X_CFLAGS"
AC_CHECK_HEADER(X11/XKBlib.h, HAVE_XKBLIB_H="true", AC_CHECK_HEADER(X11/XKBlib.h, HAVE_XKBLIB_H="true",
@ -52,16 +73,28 @@ if test "$X_CFLAGS" != "-DX_DISPLAY_MISSING"; then
[AC_DEFINE(HAVE_XKEYBOARD)], , [AC_DEFINE(HAVE_XKEYBOARD)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS) $X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
fi fi
AC_CHECK_LIB(Xinerama, XineramaQueryScreens, AC_CHECK_LIB(Xinerama, XineramaQueryScreens,
X_PRELIBS="$X_PRELIBS -lXinerama" X_PRELIBS="$X_PRELIBS -lXinerama"
[AC_DEFINE(HAVE_LIBXINERAMA)], , [AC_DEFINE(HAVE_LIBXINERAMA)], ,
$X_LIBS $X_PRELIBS -lX11 -lXext $X_EXTRA_LIBS) $X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
AC_CHECK_LIB(Xtst, XTestFakeKeyEvent, HAVE_XTEST="true",
HAVE_XTEST="false", AC_CHECK_LIB(Xrandr, XRRSelectInput,
$X_LIBS $X_PRELIBS -lX11 -lXext $X_EXTRA_LIBS) X_PRELIBS="$X_PRELIBS -lXrandr"
if test $HAVE_XTEST = "true"; then [AC_DEFINE(HAVE_LIBXRANDR)], ,
X_LIBS="$X_LIBS $X_PRELIBS -lXtst -lXext -lX11 $X_EXTRA_LIBS" $X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
HAVE_X="true"
AC_CHECK_LIB(Xfixes, XFixesGetCursorImage,
X_PRELIBS="$X_PRELIBS -lXfixes"
[AC_DEFINE(HAVE_LIBXFIXES)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
AC_CHECK_LIB(Xdamage, XDamageQueryExtension,
X_PRELIBS="$X_PRELIBS -lXdamage"
[AC_DEFINE(HAVE_LIBXDAMAGE)], ,
$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS)
X_LIBS="$X_LIBS $X_PRELIBS -lX11 $X_EXTRA_LIBS"
fi fi
fi fi
AC_SUBST(X_LIBS) AC_SUBST(X_LIBS)

@ -1,3 +1,12 @@
2004-08-29 Karl Runge <runge@karlrunge.com>
* remove old mouse patch code, now use rfbSetCursor (+ workarounds)
* changed cursor shape options (no more -mouse, ...) to '-cursor mode'
where 'mode' can be empty "X", "some", or "most". "some" adds
heuristics for two more cursors.
* -nocursorshape added.
* ifdef checks for XSHM and XTEST. Add *_wr wrappers as well.
* -vncconnect is now the default.
2004-08-15 Karl Runge <runge@karlrunge.com> 2004-08-15 Karl Runge <runge@karlrunge.com>
* -overlay option to fix color problems on Sun machines with 8+24 * -overlay option to fix color problems on Sun machines with 8+24
and 24+8 overlay visuals, uses Solaris XReadScreen(). and 24+8 overlay visuals, uses Solaris XReadScreen().

@ -1,5 +1,5 @@
x11vnc README file Date: Sun Aug 15 16:30:33 EDT 2004 x11vnc README file Date: Sun Aug 29 15:33:42 EDT 2004
The following information is taken from these URLs: The following information is taken from these URLs:
@ -345,6 +345,9 @@ LDFLAGS="-L $JPEG/lib -R $JPEG/lib -L $ZLIB/lib -R $ZLIB/lib"
CPPFLAGS="$CPPFLAGS -I /usr/openwin/include" CPPFLAGS="$CPPFLAGS -I /usr/openwin/include"
LDFLAGS="$LDFLAGS -L /usr/openwin/lib -R /usr/openwin/lib" LDFLAGS="$LDFLAGS -L /usr/openwin/lib -R /usr/openwin/lib"
# Everything needs to built with _REENTRANT for thread safe errno:
CPPFLAGS="$CPPFLAGS -D_REENTRANT"
export PATH CPPFLAGS LDFLAGS export PATH CPPFLAGS LDFLAGS
./configure ./configure
@ -488,14 +491,16 @@ ls -l ./x11vnc/x11vnc
acceleration at the physical display and so likely defeats the acceleration at the physical display and so likely defeats the
purpose. Nevertheless this could be handy in some circumstances, purpose. Nevertheless this could be handy in some circumstances,
e.g. if the speed at the physical display was tolerable. e.g. if the speed at the physical display was tolerable.
Unfortunately it does not seem shadowfb can't be turned on and off Unfortunately it does not seem shadowfb can be turned on and off
dynamically... dynamically...
* Somewhat surprisingly, the X11 mouse (cursor) shape is write-only * Somewhat surprisingly, the X11 mouse (cursor) shape is write-only
and cannot be queried from the X server. So in x11vnc the cursor and cannot be queried from the X server. So in x11vnc the cursor
shape stays fixed at an arrow. (see the -mouseX option, however, shape stays fixed at an arrow. (see the "-cursor X" and other
for a partial hack for the root window). Also, on Solaris using options, however, for a partial hack for the root window, etc.).
the SUN_OVL overlay extension, x11vnc can show the correct mouse Also, on Solaris using the SUN_OVL overlay extension, x11vnc can
cursor when the -overlay is also supplied. show the correct mouse cursor when the -overlay option is also
supplied. For XFree86/Xorg, the XFIXES extension should help this
as well.
* Audio from applications is of course not redirected (separate * Audio from applications is of course not redirected (separate
redirectors do exist, e.g. esd). The XBell() "beeps" will work if redirectors do exist, e.g. esd). The XBell() "beeps" will work if
the X server supports the XKEYBOARD extension. (Note that on the X server supports the XKEYBOARD extension. (Note that on
@ -546,10 +551,10 @@ ls -l ./x11vnc/x11vnc
start out OK, but after a while the colors are incorrect in certain start out OK, but after a while the colors are incorrect in certain
windows. windows.
[36]Q-10: Color problems: Why are the colors for some of the windows [36]Q-10: Color problems: Why are the colors for some windows messed
messed up in x11vnc? BTW, I have an X display that has nice overlay up in x11vnc? BTW, I have an X display that has nice
visuals of multiple color depths. E.g. there are both depth 8 and 24 overlay/multi-depth visuals of different color depths: e.g. there are
visuals available at the same time. both depth 8 and 24 visuals available at the same time.
[37]Q-11: How do I figure out the window id to supply to the -id [37]Q-11: How do I figure out the window id to supply to the -id
windowid option? windowid option?
@ -909,8 +914,8 @@ display :0
If so, there are a couple options. 1) Can you set the default visual If so, there are a couple options. 1) Can you set the default visual
on your display to be depth 24 TrueColor? Sun machines often have 8+24 on your display to be depth 24 TrueColor? Sun machines often have 8+24
overlay visuals, and you can make the default visual depth 24 overlay/multi-depth visuals, and you can make the default visual depth
TrueColor (see fbconfig(1) and Xsun(1)). 2) As of Feb/2004, in the 24 TrueColor (see fbconfig(1) and Xsun(1)). 2) As of Feb/2004, in the
libvncserver CVS, x11vnc has the -visual option to allow you to force libvncserver CVS, x11vnc has the -visual option to allow you to force
the framebuffer visual to whatever you want (this usually messes up the framebuffer visual to whatever you want (this usually messes up
the colors unless you are very careful). In this case, the option the colors unless you are very careful). In this case, the option
@ -940,16 +945,17 @@ display :0
non-zero in 8bpp PseudoColor on an obscure setup, and this option non-zero in 8bpp PseudoColor on an obscure setup, and this option
corrected the problems. corrected the problems.
Q-10: Color problems: Why are the colors for some of the windows Q-10: Color problems: Why are the colors for some windows messed up in
messed up in x11vnc? BTW, I have an X display that has nice overlay x11vnc? BTW, I have an X display that has nice overlay/multi-depth
visuals of multiple color depths. E.g. there are both depth 8 and 24 visuals of different color depths: e.g. there are both depth 8 and 24
visuals available at the same time. visuals available at the same time.
You may want to review the [97]previous question regarding 8 bpp You may want to review the [97]previous question regarding 8 bpp
PseudoColor. PseudoColor.
If that isn't the problem, run xdpyinfo to see what the default visual If that isn't the problem, run xdpyinfo(1) to see what the default
is. Does it have a depth of 8? If it does, can you possibly visual is and what the depths of the other visuals are. Does the
default visual have a depth of 8? If it does, can you possibly
re-configure your X server to make the depth 24 visual the default? If re-configure your X server to make the depth 24 visual the default? If
you can do it, this will save you a lot of grief WRT colors and x11vnc you can do it, this will save you a lot of grief WRT colors and x11vnc
(and for general usage too!). Here is how I do this on an old (and for general usage too!). Here is how I do this on an old
@ -958,12 +964,23 @@ display :0
and it works nicely (note: to log into console from the dtlogin and it works nicely (note: to log into console from the dtlogin
window, select "Options -> Command Line Login", then login and enter window, select "Options -> Command Line Login", then login and enter
the above command). If you have root permission, a more permanent and the above command). See the -dev section of the Xsun(1) manpage for a
convenient option is to put a line like: description of the above arguments. If you have root permission, a
more permanent and convenient thing to do is to record the arguments
in a line like:
:0 Local local_uid@console root /usr/openwin/bin/Xsun -dev /dev/fb defclass :0 Local local_uid@console root /usr/openwin/bin/Xsun -dev /dev/fb defclass
TrueColor defdepth 24 TrueColor defdepth 24
in /etc/dt/config/Xservers (see /usr/dt/config/Xservers). in /etc/dt/config/Xservers (see /usr/dt/config/Xservers). Also look at
the fbconfig(1) and related manpages (e.g. ffbconfig, m64config,
pgxconfig, SUNWjfb_config, etc ...) for hardware framebuffer settings
that may achieve the same effect. In general for non-Sun machines,
look at the "-cc class" and related options in your X server manpage
(perhaps Xserver(1)), it may allow modifying the default visual (e.g.
"-cc 4", see <X11/X.h> for the visual class numbers). On XFree86 some
video card drivers (e.g. Matrox mga) have settings like Option
"Overlay" "24,8" to support multi-depth overlays. For these, use the
"-cc 4" X server command line option to get a depth 24 default visual.
Another option is if the system with overlay visuals is a Sun system Another option is if the system with overlay visuals is a Sun system
running Solaris you can use the -overlay x11vnc option (Aug/2004) to running Solaris you can use the -overlay x11vnc option (Aug/2004) to
@ -973,16 +990,15 @@ TrueColor defdepth 24
mentioned by x11vnc users) that require the default depth be 8bpp, or mentioned by x11vnc users) that require the default depth be 8bpp, or
will use a 8bpp visual even if depth 24 visuals are available, and so will use a 8bpp visual even if depth 24 visuals are available, and so
the default depth workaround described in the previous paragraph is the default depth workaround described in the previous paragraph is
not sufficient. not sufficient for these apps.
Misc. notes on -overlay mode: An amusing by-product of -overlay mode Misc. notes on -overlay mode: An amusing by-product of -overlay mode
is that mouse cursor shape (e.g. use -X or -mouse options) is correct. is that mouse cursor shape is correct. The -overlay mode may be
The -overlay mode may be somewhat slower than normal mode due to the somewhat slower than normal mode due to the extra framebuffer
extra framebuffer manipulations that must be performed. Also, there is manipulations that must be performed. Also, there is a bug in that for
a bug in that for some popup menus, the windows they overlap will have some popup menus, the windows they overlap will have painting problems
painting problems while the popup is up (a workaround is to disable while the popup is up (a workaround is to disable SaveUnders by
SaveUnders by passing -su to Xsun, e.g. in your passing -su to Xsun, e.g. in your /etc/dt/config/Xservers file).
/etc/dt/config/Xservers file).
Still not working? Run xwininfo on the application with the messed up Still not working? Run xwininfo on the application with the messed up
colors to verify that the depth of its visual is different from the colors to verify that the depth of its visual is different from the
@ -1537,7 +1553,7 @@ mp/x11vnc_sh.log
On Solaris you cannot have the bare number 5900 in /etc/inetd.conf, On Solaris you cannot have the bare number 5900 in /etc/inetd.conf,
you'll need to replace it with a word like x11vnc an then put you'll need to replace it with a word like x11vnc an then put
something like x11vnc 5900/tcp in /etc/services. something like "x11vnc 5900/tcp" in /etc/services.
Be sure to look at your /etc/hosts.allow and /etc/hosts.deny settings Be sure to look at your /etc/hosts.allow and /etc/hosts.deny settings
to limit the machines that can connect to this service (your to limit the machines that can connect to this service (your
@ -1589,11 +1605,11 @@ mp/x11vnc_sh.log
believe this is because the cursor shape is often downloaded to the believe this is because the cursor shape is often downloaded to the
graphics hardware (video card), but I could be mistaken. graphics hardware (video card), but I could be mistaken.
A simple kludge is provided by the -mouseX option that changes the A simple kludge is provided by the "-cursor X" option that changes the
cursor when the mouse is on the root background (or any window has the cursor when the mouse is on the root background (or any window has the
same cursor as the root background). Note that desktops like GNOME or same cursor as the root background). Note that desktops like GNOME or
KDE often cover up the root background, so this won't work for those KDE often cover up the root background, so this won't work for those
cases. cases. Also see the "-cursor some" option for additional kludges.
It should be possible to apply some heuristics where x11vnc tries to It should be possible to apply some heuristics where x11vnc tries to
build up a table of cursors for the windows it sees, perhaps using a build up a table of cursors for the windows it sees, perhaps using a
@ -1602,7 +1618,8 @@ mp/x11vnc_sh.log
Also note that as of Aug/2004 in the libvncserver CVS, on Solaris Also note that as of Aug/2004 in the libvncserver CVS, on Solaris
using the SUN_OVL overlay extension, x11vnc can show the correct mouse using the SUN_OVL overlay extension, x11vnc can show the correct mouse
cursor when the -overlay is also supplied. (-overlay has some other cursor when the -overlay is also supplied. (-overlay has some other
problems however, and can be slower). problems however, and can be slower). Plans are in the works to use
XFIXES for this on XFree86, Xorg, and Xsun.
Q-31: Why does the mouse arrow just stay in one corner in my Q-31: Why does the mouse arrow just stay in one corner in my
vncviewer, whereas my cursor (that does move) is just a dot? vncviewer, whereas my cursor (that does move) is just a dot?
@ -1612,6 +1629,10 @@ mp/x11vnc_sh.log
with the -nocursor option to x11vnc if your viewer does not have this with the -nocursor option to x11vnc if your viewer does not have this
extension. extension.
Note: as of Aug/2004 in the libvncserver CVS this should be fixed: the
default for non-tightvnc viewers will be to draw the moving cursor
into the framebuffer. This can also be disabled via -nocursor.
Q-32: Can I take advantage of the TightVNC extension to the VNC Q-32: Can I take advantage of the TightVNC extension to the VNC
protocol where Cursor Positions Updates are sent back to all connected protocol where Cursor Positions Updates are sent back to all connected
clients (i.e. passive viewers can see the mouse cursor being moved clients (i.e. passive viewers can see the mouse cursor being moved
@ -1619,7 +1640,9 @@ mp/x11vnc_sh.log
Use the -cursorpos option when starting x11vnc. A VNC viewer must Use the -cursorpos option when starting x11vnc. A VNC viewer must
support the Cursor Positions Updates for the user to see the mouse support the Cursor Positions Updates for the user to see the mouse
motions (the TightVNC viewers support this). motions (the TightVNC viewers support this). As of Aug/2004 in the
libvncserver CVS -cursorpos is the default. See -nocursorpos and
-nocursorshape.
Q-33: Is it possible to swap the mouse buttons (e.g. left-handed Q-33: Is it possible to swap the mouse buttons (e.g. left-handed
operation), or arbitrarily remap them? How about mapping button clicks operation), or arbitrarily remap them? How about mapping button clicks
@ -1823,8 +1846,8 @@ ied)
* If you just want to watch one (simple) window use -id (cuts down * If you just want to watch one (simple) window use -id (cuts down
extraneous polling and updates, but can be buggy or insufficient) extraneous polling and updates, but can be buggy or insufficient)
* Set -nosel (disables all clipboard selection exchange) * Set -nosel (disables all clipboard selection exchange)
* Do not use -mouse or -mouseX (repainting the remote mouse takes * Use -nocursor (repainting the remote cursor position and shape
resources and round trips) takes resources and round trips)
Q-39: How can I get my AltGr and Shift modifiers to work between Q-39: How can I get my AltGr and Shift modifiers to work between
keyboards for different languages? keyboards for different languages?
@ -2403,8 +2426,8 @@ x11vnc: a VNC server for real X displays
Here are all of x11vnc command line options: Here are all of x11vnc command line options:
% x11vnc -help % x11vnc -help
x11vnc: allow VNC connections to real X11 displays. 0.6.3pre lastmod: 2004-08-1 x11vnc: allow VNC connections to real X11 displays. 0.6.3pre lastmod: 2004-08-2
5 9
Typical usage is: Typical usage is:
@ -2450,11 +2473,15 @@ Options:
setting the XAUTHORITY environment varirable to "file" setting the XAUTHORITY environment varirable to "file"
before startup. See Xsecurity(7), xauth(1) man pages. before startup. See Xsecurity(7), xauth(1) man pages.
-id windowid Show the window corresponding to "windowid" not the -id windowid Show the window corresponding to "windowid" not
entire display. Warning: bugs! new toplevels missed!... the entire display. New windows like popup menus,
etc may not be seen, or will be clipped. x11vnc may
crash if the window changes size, is iconified, etc.
Use xwininfo(1) to get the window id. Primarily useful
for exporting very simple applications.
-sid windowid As -id, but instead of using the window directly it -sid windowid As -id, but instead of using the window directly it
shifts a root view to it: shows saveUnders menus, etc, shifts a root view to it: this shows saveUnders menus,
although they will be clipped if they extend beyond etc, although they will be clipped if they extend beyond
the window. the window.
-flashcmap In 8bpp indexed color, let the installed colormap flash -flashcmap In 8bpp indexed color, let the installed colormap flash
as the pointer moves from window to window (slow). as the pointer moves from window to window (slow).
@ -2465,11 +2492,12 @@ Options:
packed with 8 for PseudoColor and 24 for TrueColor). packed with 8 for PseudoColor and 24 for TrueColor).
Currently -overlay only works on Solaris (it uses Currently -overlay only works on Solaris (it uses
XReadScreen(3X11)). There are still some problems with XReadScreen(3X11)). There is a problem with image
surrounding-region painting for popup menus (but not "bleeding" around transient popup menus (but not
for the popup menu itself); a workaround is to disable for the menu itself): a workaround is to disable
SaveUnders (pass -su to Xsun). Amusingly, if -overlay SaveUnders by passing the "-su" argument to Xsun
is used with -mouse, the mouse cursor shape is correct. (in /etc/dt/config/Xservers, say). Also note that,
the mouse cursor shape is exactly correct in this mode.
Use -overlay as a workaround for situations like these: Use -overlay as a workaround for situations like these:
Some legacy applications require the default visual Some legacy applications require the default visual
@ -2482,7 +2510,10 @@ Options:
due to the extra image transformations required. due to the extra image transformations required.
For optimal performance do not use -overlay, but rather For optimal performance do not use -overlay, but rather
configure the X server so that the default visual is configure the X server so that the default visual is
depth 24 TrueColor and have all apps use that visual. depth 24 TrueColor and try to have all apps use that
visual (some apps have -use24 or -visual options).
-overlay_nocursor Sets -overlay, but does not try to draw the exact mouse
cursor shape using the overlay mechanism.
-visual n Experimental option: probably does not do what you -visual n Experimental option: probably does not do what you
think. It simply *forces* the visual used for the think. It simply *forces* the visual used for the
framebuffer; this may be a bad thing... It is useful for framebuffer; this may be a bad thing... It is useful for
@ -2492,9 +2523,10 @@ Options:
for a list. If the string ends in ":m" for better for a list. If the string ends in ":m" for better
or for worse the visual depth is forced to be m. or for worse the visual depth is forced to be m.
-scale fraction Scale the framebuffer by factor "fraction". Values -scale fraction Scale the framebuffer by factor "fraction".
less than 1 shrink the fb. Note: image may not be sharp Values less than 1 shrink the fb. Note: image may not
and response may be slower. If "fraction" contains be sharp and response may be slower. Currently the
cursor shape is not scaled. If "fraction" contains
a decimal point "." it is taken as a floating point a decimal point "." it is taken as a floating point
number, alternatively the notation "m/n" may be used number, alternatively the notation "m/n" may be used
to denote fractions exactly, e.g. -scale 2/3. to denote fractions exactly, e.g. -scale 2/3.
@ -2504,7 +2536,7 @@ Options:
If you just want a quick, rough scaling without If you just want a quick, rough scaling without
blending, append ":nb" to "fraction" (e.g. -scale blending, append ":nb" to "fraction" (e.g. -scale
1/3:nb). For compatibility with vncviewers the scaled 1/3:nb). For compatibility with vncviewers the scaled
width is adjusted to be a multiple of 4, to disable width is adjusted to be a multiple of 4: to disable
this use ":n4". More esoteric options: ":in" use this use ":n4". More esoteric options: ":in" use
interpolation scheme even when shrinking, ":pad", interpolation scheme even when shrinking, ":pad",
pad scaled width and height to be multiples of scaling pad scaled width and height to be multiples of scaling
@ -2524,9 +2556,10 @@ Options:
periodically check for new hosts. The first line is periodically check for new hosts. The first line is
read and then the file is truncated. read and then the file is truncated.
-vncconnect Monitor the VNC_CONNECT X property set by the standard -vncconnect Monitor the VNC_CONNECT X property set by the standard
VNC program vncconnect(1). When the property is set -novncconnect VNC program vncconnect(1). When the property is
to host or host:port establish a reverse connection. set to "host" or "host:port" establish a reverse
Using xprop(1) instead of vncconnect may work, see FAQ. connection. Using xprop(1) instead of vncconnect may
work, see the FAQ. Default: -vncconnect
-inetd Launched by inetd(1): stdio instead of listening socket. -inetd Launched by inetd(1): stdio instead of listening socket.
Note: if you are not redirecting stderr to a log file Note: if you are not redirecting stderr to a log file
(via shell 2> or -o option) you must also specify the (via shell 2> or -o option) you must also specify the
@ -2617,16 +2650,18 @@ Options:
-flipbyteorder Sometimes needed if remotely polled host has different -flipbyteorder Sometimes needed if remotely polled host has different
endianness. Ignored unless -noshm is set. endianness. Ignored unless -noshm is set.
-onetile Do not use the new copy_tiles() framebuffer mechanism, -onetile Do not use the new copy_tiles() framebuffer mechanism,
just use 1 shm tile for polling. Same as -old_copytile. just use 1 shm tile for polling. Limits shm segments
Limits shm segments used to 3. used to 3.
-blackout string Black out rectangles on the screen. "string" is a -blackout string Black out rectangles on the screen. "string" is a
comma separated list of WxH+X+Y type geometries for comma separated list of WxH+X+Y type geometries for
each rectangle. each rectangle.
-xinerama If your screen is composed of multiple monitors -xinerama If your screen is composed of multiple monitors
glued together via XINERAMA, and that screen is glued together via XINERAMA, and that screen is
non-rectangular this option will try to guess the areas non-rectangular this option will try to guess the
to black out (if your system has libXinerama). areas to black out (if your system has libXinerama).
In general on XINERAMA displays you may need to use the
-xwarppointer option if the mouse pointer misbehaves.
-o logfile Write stderr messages to file "logfile" instead of -o logfile Write stderr messages to file "logfile" instead of
to the terminal. Same as -logfile "file". to the terminal. Same as -logfile "file".
@ -2654,7 +2689,9 @@ Options:
where a Keysym is bound to multiple keys (e.g. "<" + ">" where a Keysym is bound to multiple keys (e.g. "<" + ">"
and "," + "<" keys). Default: -modtweak and "," + "<" keys). Default: -modtweak
-xkb When in modtweak mode, use the XKEYBOARD extension -xkb When in modtweak mode, use the XKEYBOARD extension
(if it exists) to do the modifier tweaking. (if it exists) to do the modifier tweaking. This is
powerful and should be tried if there are still
keymapping problems when using the simpler -modtweak.
-skip_keycodes string Skip keycodes not on your keyboard but your X server -skip_keycodes string Skip keycodes not on your keyboard but your X server
thinks exist. Currently only applies to -xkb mode. thinks exist. Currently only applies to -xkb mode.
"string" is a comma separated list of decimal "string" is a comma separated list of decimal
@ -2701,17 +2738,70 @@ Options:
back to clients. (PRIMARY is still set on received back to clients. (PRIMARY is still set on received
changes, however). changes, however).
-nocursor Do not have the VNC viewer show a local cursor. -cursor [mode] Sets how the pointer cursor shape (little icon at the
-mouse Draw a 2nd cursor at the current X pointer position. -nocursor mouse pointer) should be handled. The "mode" string
-mouseX As -mouse, but also draw an "X" when pointer is on is optional and is described below. The default
root background. is to show some sort of cursor shape(s). How this
-X Shorthand for -mouseX -nocursor. is done depends on the VNC viewer and the X server.
-xwarppointer Move the pointer with XWarpPointer() instead of XTEST Use -nocursor to disable cursor shapes completely.
(try as a workaround if pointer behaves poorly, e.g.
on touchscreens or other non-standard setups). Some VNC viewers support the TightVNC CursorPosUpdates
and CursorShapeUpdates extensions (cuts down on
network traffic by not having to send the cursor image
every time the pointer is moved), in which case these
extensions are used (see -nocursorshape and -nocursorpos
below). For other viewers the cursor shape is written
directly to the framebuffer every time the pointer is
moved or changed and gets sent along with the other
framebuffer updates. In this case, there will be
some lag between the vnc viewer pointer and the remote
cursor position.
If the X display supports retrieving the cursor shape
information from the X server, then the default
is to use that mode. On Solaris this requires
the SUN_OVL extension and the -overlay option to be
supplied. (see also the -overlay_nomouse option). (Soon)
on XFree86/Xorg the XFIXES extension is required.
Either can be disabled with -nocursor, and also some
values of the "mode" option below.
The "mode" string can be used to fine-tune the
displaying of cursor shapes. It can be used the
following ways:
"-cursor X" - when the cursor appears to be on the
root window, draw the familiar X shape. Some desktops
such as GNOME cover up the root window completely,
and so this will not work, try "X1", etc, to try to
shift the tree depth. On high latency links or slow
machines there will be a time lag between expected and
the actual cursor shape.
"-cursor some" - like "X" but use additional
heuristics to try to guess if the window should have
a windowmanager-like resizer cursor or a text input
I-beam cursor. This is a complete hack, but may be
useful in some situations because it provides a little
more feedback about the cursor shape.
"-cursor most" - try to show as many cursors as
possible. Often this will only be the same as "some".
On Solaris if XFIXES is not available, -overlay mode
will be used.
-nocursorshape Do not use the TightVNC CursorShapeUpdates extension
even if clients support it. See -cursor above.
-cursorpos Option -cursorpos enables sending the X cursor position -cursorpos Option -cursorpos enables sending the X cursor position
-nocursorpos back to all vnc clients that support the TightVNC -nocursorpos back to all vnc clients that support the TightVNC
CursorPosUpdates extension. Default: -cursorpos CursorPosUpdates extension. Other clients will be able
to see the pointer motions. Default: -cursorpos
-xwarppointer Move the pointer with XWarpPointer(3X) instead of XTEST
extension. Use this as a workaround if the pointer
motion behaves incorrectly, e.g. on touchscreens or
other non-standard setups. Also sometimes needed on
XINERAMA displays.
-buttonmap string String to remap mouse buttons. Format: IJK-LMN, this -buttonmap string String to remap mouse buttons. Format: IJK-LMN, this
maps buttons I -> L, etc., e.g. -buttonmap 13-31 maps buttons I -> L, etc., e.g. -buttonmap 13-31
@ -2800,7 +2890,8 @@ These options are passed to libvncserver:
Pretty wild huh? [1]Contact me if you have any questions or problems. Pretty wild huh? [1]Contact me if you have any questions or problems.
Personally, I use: Personally, I use:
x11vnc -rfbauth $HOME/.vnc/passwd -nap -flashcmap -cursorpos -norepeat x11vnc -rfbauth $HOME/.vnc/passwd -nap -flashcmap -cursor X -norepeat -add_keys
yms
(the -flashcmap only matters on old 8-bit X displays) (the -flashcmap only matters on old 8-bit X displays)

@ -2,7 +2,7 @@
.TH X11VNC "1" "August 2004" "x11vnc " "User Commands" .TH X11VNC "1" "August 2004" "x11vnc " "User Commands"
.SH NAME .SH NAME
x11vnc - allow VNC connections to real X11 displays x11vnc - allow VNC connections to real X11 displays
version: 0.6.3pre, lastmod: 2004-08-15 version: 0.6.3pre, lastmod: 2004-08-29
.SH SYNOPSIS .SH SYNOPSIS
.B x11vnc .B x11vnc
[OPTION]... [OPTION]...
@ -63,14 +63,20 @@ man pages.
.PP .PP
\fB-id\fR \fIwindowid\fR \fB-id\fR \fIwindowid\fR
.IP .IP
Show the window corresponding to \fIwindowid\fR not the Show the window corresponding to \fIwindowid\fR not
entire display. Warning: bugs! new toplevels missed!... the entire display. New windows like popup menus,
etc may not be seen, or will be clipped. x11vnc may
crash if the window changes size, is iconified, etc.
Use
.IR xwininfo (1)
to get the window id. Primarily useful
for exporting very simple applications.
.PP .PP
\fB-sid\fR \fIwindowid\fR \fB-sid\fR \fIwindowid\fR
.IP .IP
As \fB-id,\fR but instead of using the window directly it As \fB-id,\fR but instead of using the window directly it
shifts a root view to it: shows saveUnders menus, etc, shifts a root view to it: this shows saveUnders menus,
although they will be clipped if they extend beyond etc, although they will be clipped if they extend beyond
the window. the window.
.PP .PP
\fB-flashcmap\fR \fB-flashcmap\fR
@ -90,11 +96,12 @@ and 24+8 overlay visuals (the 32 bits per pixel are
packed with 8 for PseudoColor and 24 for TrueColor). packed with 8 for PseudoColor and 24 for TrueColor).
.IP .IP
Currently \fB-overlay\fR only works on Solaris (it uses Currently \fB-overlay\fR only works on Solaris (it uses
XReadScreen(3X11)). There are still some problems with XReadScreen(3X11)). There is a problem with image
surrounding-region painting for popup menus (but not "bleeding" around transient popup menus (but not
for the popup menu itself); a workaround is to disable for the menu itself): a workaround is to disable
SaveUnders (pass \fB-su\fR to Xsun). Amusingly, if \fB-overlay\fR SaveUnders by passing the "-su" argument to Xsun
is used with \fB-mouse,\fR the mouse cursor shape is correct. (in /etc/dt/config/Xservers, say). Also note that,
the mouse cursor shape is exactly correct in this mode.
.IP .IP
Use \fB-overlay\fR as a workaround for situations like these: Use \fB-overlay\fR as a workaround for situations like these:
Some legacy applications require the default visual Some legacy applications require the default visual
@ -107,7 +114,13 @@ Under \fB-overlay,\fR performance will be somewhat degraded
due to the extra image transformations required. due to the extra image transformations required.
For optimal performance do not use \fB-overlay,\fR but rather For optimal performance do not use \fB-overlay,\fR but rather
configure the X server so that the default visual is configure the X server so that the default visual is
depth 24 TrueColor and have all apps use that visual. depth 24 TrueColor and try to have all apps use that
visual (some apps have \fB-use24\fR or \fB-visual\fR options).
.PP
\fB-overlay_nocursor\fR
.IP
Sets \fB-overlay,\fR but does not try to draw the exact mouse
cursor shape using the overlay mechanism.
.PP .PP
\fB-visual\fR \fIn\fR \fB-visual\fR \fIn\fR
.IP .IP
@ -124,9 +137,10 @@ or for worse the visual depth is forced to be m.
.PP .PP
\fB-scale\fR \fIfraction\fR \fB-scale\fR \fIfraction\fR
.IP .IP
Scale the framebuffer by factor \fIfraction\fR. Values Scale the framebuffer by factor \fIfraction\fR.
less than 1 shrink the fb. Note: image may not be sharp Values less than 1 shrink the fb. Note: image may not
and response may be slower. If \fIfraction\fR contains be sharp and response may be slower. Currently the
cursor shape is not scaled. If \fIfraction\fR contains
a decimal point "." it is taken as a floating point a decimal point "." it is taken as a floating point
number, alternatively the notation "m/n" may be used number, alternatively the notation "m/n" may be used
to denote fractions exactly, e.g. \fB-scale\fR 2/3. to denote fractions exactly, e.g. \fB-scale\fR 2/3.
@ -136,7 +150,7 @@ Scaling Options: can be added after \fIfraction\fR via
If you just want a quick, rough scaling without If you just want a quick, rough scaling without
blending, append ":nb" to \fIfraction\fR (e.g. \fB-scale\fR blending, append ":nb" to \fIfraction\fR (e.g. \fB-scale\fR
1/3:nb). For compatibility with vncviewers the scaled 1/3:nb). For compatibility with vncviewers the scaled
width is adjusted to be a multiple of 4, to disable width is adjusted to be a multiple of 4: to disable
this use ":n4". More esoteric options: ":in" use this use ":n4". More esoteric options: ":in" use
interpolation scheme even when shrinking, ":pad", interpolation scheme even when shrinking, ":pad",
pad scaled width and height to be multiples of scaling pad scaled width and height to be multiples of scaling
@ -173,13 +187,17 @@ read and then the file is truncated.
\fB-vncconnect\fR \fB-vncconnect\fR
.IP .IP
Monitor the VNC_CONNECT X property set by the standard Monitor the VNC_CONNECT X property set by the standard
.PP
\fB-novncconnect\fR
.IP
VNC program VNC program
.IR vncconnect (1) .IR vncconnect (1)
. When the property is set . When the property is
to host or host:port establish a reverse connection. set to "host" or "host:port" establish a reverse
Using connection. Using
.IR xprop (1) .IR xprop (1)
instead of vncconnect may work, see FAQ. instead of vncconnect may
work, see the FAQ. Default: \fB-vncconnect\fR
.PP .PP
\fB-inetd\fR \fB-inetd\fR
.IP .IP
@ -306,8 +324,8 @@ endianness. Ignored unless \fB-noshm\fR is set.
\fB-onetile\fR \fB-onetile\fR
.IP .IP
Do not use the new copy_tiles() framebuffer mechanism, Do not use the new copy_tiles() framebuffer mechanism,
just use 1 shm tile for polling. Same as \fB-old_copytile.\fR just use 1 shm tile for polling. Limits shm segments
Limits shm segments used to 3. used to 3.
.PP .PP
\fB-blackout\fR \fIstring\fR \fB-blackout\fR \fIstring\fR
.IP .IP
@ -319,8 +337,10 @@ each rectangle.
.IP .IP
If your screen is composed of multiple monitors If your screen is composed of multiple monitors
glued together via XINERAMA, and that screen is glued together via XINERAMA, and that screen is
non-rectangular this option will try to guess the areas non-rectangular this option will try to guess the
to black out (if your system has libXinerama). areas to black out (if your system has libXinerama).
In general on XINERAMA displays you may need to use the
\fB-xwarppointer\fR option if the mouse pointer misbehaves.
.PP .PP
\fB-o\fR \fIlogfile\fR \fB-o\fR \fIlogfile\fR
.IP .IP
@ -376,7 +396,9 @@ and "," + "<" keys). Default: \fB-modtweak\fR
\fB-xkb\fR \fB-xkb\fR
.IP .IP
When in modtweak mode, use the XKEYBOARD extension When in modtweak mode, use the XKEYBOARD extension
(if it exists) to do the modifier tweaking. (if it exists) to do the modifier tweaking. This is
powerful and should be tried if there are still
keymapping problems when using the simpler \fB-modtweak.\fR
.PP .PP
\fB-skip_keycodes\fR \fIstring\fR \fB-skip_keycodes\fR \fIstring\fR
.IP .IP
@ -453,34 +475,79 @@ Do not poll the PRIMARY selection for changes to send
back to clients. (PRIMARY is still set on received back to clients. (PRIMARY is still set on received
changes, however). changes, however).
.PP .PP
\fB-nocursor\fR \fB-cursor\fR \fI[mode],\fR \fB-nocursor\fR
.IP .IP
Do not have the VNC viewer show a local cursor. Sets how the pointer cursor shape (little icon at the
.PP mouse pointer) should be handled. The "mode" string
\fB-mouse\fR is optional and is described below. The default
.IP is to show some sort of cursor shape(s). How this
Draw a 2nd cursor at the current X pointer position. is done depends on the VNC viewer and the X server.
.PP Use \fB-nocursor\fR to disable cursor shapes completely.
\fB-mouseX\fR .IP
.IP Some VNC viewers support the TightVNC CursorPosUpdates
As \fB-mouse,\fR but also draw an "X" when pointer is on and CursorShapeUpdates extensions (cuts down on
root background. network traffic by not having to send the cursor image
.PP every time the pointer is moved), in which case these
\fB-X\fR extensions are used (see \fB-nocursorshape\fR and \fB-nocursorpos\fR
.IP below). For other viewers the cursor shape is written
Shorthand for \fB-mouseX\fR \fB-nocursor.\fR directly to the framebuffer every time the pointer is
.PP moved or changed and gets sent along with the other
\fB-xwarppointer\fR framebuffer updates. In this case, there will be
.IP some lag between the vnc viewer pointer and the remote
Move the pointer with XWarpPointer() instead of XTEST cursor position.
(try as a workaround if pointer behaves poorly, e.g. .IP
on touchscreens or other non-standard setups). If the X display supports retrieving the cursor shape
information from the X server, then the default
is to use that mode. On Solaris this requires
the SUN_OVL extension and the \fB-overlay\fR option to be
supplied. (see also the \fB-overlay_nomouse\fR option). (Soon)
on XFree86/Xorg the XFIXES extension is required.
Either can be disabled with \fB-nocursor,\fR and also some
values of the "mode" option below.
.IP
The "mode" string can be used to fine-tune the
displaying of cursor shapes. It can be used the
following ways:
.IP
"-cursor X" - when the cursor appears to be on the
root window, draw the familiar X shape. Some desktops
such as GNOME cover up the root window completely,
and so this will not work, try "X1", etc, to try to
shift the tree depth. On high latency links or slow
machines there will be a time lag between expected and
the actual cursor shape.
.IP
"-cursor some" - like "X" but use additional
heuristics to try to guess if the window should have
a windowmanager-like resizer cursor or a text input
I-beam cursor. This is a complete hack, but may be
useful in some situations because it provides a little
more feedback about the cursor shape.
.IP
"-cursor most" - try to show as many cursors as
possible. Often this will only be the same as "some".
On Solaris if XFIXES is not available, \fB-overlay\fR mode
will be used.
.PP
\fB-nocursorshape\fR
.IP
Do not use the TightVNC CursorShapeUpdates extension
even if clients support it. See \fB-cursor\fR above.
.PP .PP
\fB-cursorpos,\fR \fB-nocursorpos\fR \fB-cursorpos,\fR \fB-nocursorpos\fR
.IP .IP
Option \fB-cursorpos\fR enables sending the X cursor position Option \fB-cursorpos\fR enables sending the X cursor position
back to all vnc clients that support the TightVNC back to all vnc clients that support the TightVNC
CursorPosUpdates extension. Default: \fB-cursorpos\fR CursorPosUpdates extension. Other clients will be able
to see the pointer motions. Default: \fB-cursorpos\fR
.PP
\fB-xwarppointer\fR
.IP
Move the pointer with XWarpPointer(3X) instead of XTEST
extension. Use this as a workaround if the pointer
motion behaves incorrectly, e.g. on touchscreens or
other non-standard setups. Also sometimes needed on
XINERAMA displays.
.PP .PP
\fB-buttonmap\fR \fIstring\fR \fB-buttonmap\fR \fIstring\fR
.IP .IP

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save