diff options
author | runge <runge> | 2006-11-21 22:16:23 +0000 |
---|---|---|
committer | runge <runge> | 2006-11-21 22:16:23 +0000 |
commit | 27a884d2f3775cf4d97ea8f3d7433cbe2deebbfc (patch) | |
tree | a4b7c9f0ae519b0afa0d14b646abca3ad01b35a8 /x11vnc/options.c | |
parent | 05ba45f72e70b4372ef05a8aca34a3bddcfaeb71 (diff) | |
download | libtdevnc-27a884d2f3775cf4d97ea8f3d7433cbe2deebbfc.tar.gz libtdevnc-27a884d2f3775cf4d97ea8f3d7433cbe2deebbfc.zip |
x11vnc: Mac OS X fb fixes and cuttext, -nodpms option, local user wireframing
Diffstat (limited to 'x11vnc/options.c')
-rw-r--r-- | x11vnc/options.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/x11vnc/options.c b/x11vnc/options.c index 978fd58..adbd467 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -129,9 +129,14 @@ int pipeinput_int = 0; int pipeinput_cons_fd = -1; char *pipeinput_cons_dev = NULL; -int macosx_nodimming = 0; +int macosx_nodimming = 0; /* Some native MacOSX server settings. */ int macosx_nosleep = 0; int macosx_noscreensaver = 0; +int macosx_wait_for_switch = 1; +int macosx_mouse_wheel_speed = 5; +int macosx_console = 0; +int macosx_swap23 = 1; +int macosx_resize = 1; unsigned long subwin = 0x0; /* -id, -sid */ int subwin_wait_mapped = 0; @@ -186,6 +191,7 @@ char *wireframe_copyrect_default = "always"; char *wireframe_copyrect_default = "never"; #endif int wireframe_in_progress = 0; +int wireframe_local = 1; /* T+B+L+R,tkey+presist_key,tmouse+persist_mouse */ char *scroll_copyrect_str = NULL; @@ -311,6 +317,8 @@ int watch_fbpm = 1; /* -nofbpm */ int watch_fbpm = 0; #endif +int watch_dpms = 0; /* -dpms */ + int watch_selection = 1; /* normal selection/cutbuffer maintenance */ int watch_primary = 1; /* more dicey, poll for changes in PRIMARY */ int watch_clipboard = 1; |