Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
d400112c
Commit
d400112c
authored
Feb 22, 2009
by
runge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add -noskip_lockkeys option for future use.
parent
e59f78c5
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1487 additions
and
1461 deletions
+1487
-1461
ChangeLog
x11vnc/ChangeLog
+3
-0
README
x11vnc/README
+1474
-1457
help.c
x11vnc/help.c
+2
-1
x11vnc.1
x11vnc/x11vnc.1
+3
-2
x11vnc.c
x11vnc/x11vnc.c
+4
-0
x11vnc_defs.c
x11vnc/x11vnc_defs.c
+1
-1
No files found.
x11vnc/ChangeLog
View file @
d400112c
2009-02-21 Karl Runge <runge@karlrunge.com>
* x11vnc: add -noskip_lockkeys option for future use.
2009-02-03 Karl Runge <runge@karlrunge.com>
* x11vnc: Add "sendbell" remote cmd. Fix copyrect updates under
-reflect. Workaround that checks valid window of selection
...
...
x11vnc/README
View file @
d400112c
This diff is collapsed.
Click to expand it.
x11vnc/help.c
View file @
d400112c
...
...
@@ -2573,7 +2573,7 @@ void print_help(int mode) {
" possible workaround.
\n
"
"
\n
"
"-skip_lockkeys Have x11vnc ignore all Caps_Lock, Shift_Lock, Num_Lock,
\n
"
"
Scroll_Lock keysyms received from viewers. The idea is
\n
"
"
-noskip_lockkeys
Scroll_Lock keysyms received from viewers. The idea is
\n
"
" you press Caps_Lock on the VNC Viewer side but that does
\n
"
" not change the lock state in the x11vnc-side X server.
\n
"
" Nevertheless your capitalized letters come in over
\n
"
...
...
@@ -2582,6 +2582,7 @@ void print_help(int mode) {
" want in -nomodtweak mode. Also, a kludge for KP_n
\n
"
" digits is always done it this mode: they are mapped to
\n
"
" regular digit keysyms. See also -capslock above.
\n
"
" The default is -noskip_lockkeys.
\n
"
"
\n
"
"-skip_keycodes string Ignore the comma separated list of decimal keycodes.
\n
"
" Perhaps these are keycodes not on your keyboard but
\n
"
...
...
x11vnc/x11vnc.1
View file @
d400112c
...
...
@@ -2,7 +2,7 @@
.TH X11VNC "1" "February 2009" "x11vnc " "User Commands"
.SH NAME
x11vnc - allow VNC connections to real X11 displays
version: 0.9.7, lastmod: 2009-0
1-24
version: 0.9.7, lastmod: 2009-0
2-21
.SH SYNOPSIS
.B x11vnc
[OPTION]...
...
...
@@ -2942,7 +2942,7 @@ pressing CapsLock outside of the viewer window, also
\fB-skip_lockkeys\fR below). Also try \fB-nomodtweak\fR for a
possible workaround.
.PP
\fB-skip_lockkeys\fR
\fB-skip_lockkeys
,\fR \fB-noskip_lockkeys
\fR
.IP
Have x11vnc ignore all Caps_Lock, Shift_Lock, Num_Lock,
Scroll_Lock keysyms received from viewers. The idea is
...
...
@@ -2954,6 +2954,7 @@ X server. Note this mode probably won't do what you
want in \fB-nomodtweak\fR mode. Also, a kludge for KP_n
digits is always done it this mode: they are mapped to
regular digit keysyms. See also \fB-capslock\fR above.
The default is \fB-noskip_lockkeys.\fR
.PP
\fB-skip_keycodes\fR \fIstring\fR
.IP
...
...
x11vnc/x11vnc.c
View file @
d400112c
...
...
@@ -2944,6 +2944,10 @@ int main(int argc, char* argv[]) {
skip_lockkeys
=
1
;
continue
;
}
if
(
!
strcmp
(
arg
,
"-noskip_lockkeys"
))
{
skip_lockkeys
=
0
;
continue
;
}
if
(
!
strcmp
(
arg
,
"-xkbcompat"
))
{
xkbcompat
=
1
;
continue
;
...
...
x11vnc/x11vnc_defs.c
View file @
d400112c
...
...
@@ -15,7 +15,7 @@ int xtrap_base_event_type = 0;
int
xdamage_base_event_type
=
0
;
/* date +'lastmod: %Y-%m-%d' */
char
lastmod
[]
=
"0.9.7 lastmod: 2009-0
1-24
"
;
char
lastmod
[]
=
"0.9.7 lastmod: 2009-0
2-21
"
;
/* X display info */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment