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
a5baf57b
Commit
a5baf57b
authored
Oct 12, 2006
by
runge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x11vnc: -cursor_drag for DnD, etc.
parent
a255783e
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
836 additions
and
774 deletions
+836
-774
ChangeLog
x11vnc/ChangeLog
+3
-0
README
x11vnc/README
+765
-751
cursor.c
x11vnc/cursor.c
+3
-1
help.c
x11vnc/help.c
+17
-10
options.c
x11vnc/options.c
+4
-0
options.h
x11vnc/options.h
+1
-0
remote.c
x11vnc/remote.c
+15
-0
x11vnc.1
x11vnc/x11vnc.1
+22
-11
x11vnc.c
x11vnc/x11vnc.c
+4
-0
x11vnc.h
x11vnc/x11vnc.h
+1
-0
x11vnc_defs.c
x11vnc/x11vnc_defs.c
+1
-1
No files found.
x11vnc/ChangeLog
View file @
a5baf57b
2006-10-11 Karl Runge <runge@karlrunge.com>
* x11vnc: -cursor_drag for DnD, etc.
2006-09-23 Karl Runge <runge@karlrunge.com>
* Java viewer: improvements to connection response, faster
connections.
...
...
x11vnc/README
View file @
a5baf57b
This source diff could not be displayed because it is too large. You can
view the blob
instead.
x11vnc/cursor.c
View file @
a5baf57b
...
...
@@ -1447,7 +1447,9 @@ int get_which_cursor(void) {
if
(
drag_in_progress
||
button_mask
)
{
/* XXX not exactly what we want for menus */
return
-
1
;
if
(
!
cursor_drag_changes
)
{
return
-
1
;
}
}
if
(
!
strcmp
(
multiple_cursors_mode
,
"arrow"
))
{
...
...
x11vnc/help.c
View file @
a5baf57b
...
...
@@ -1879,6 +1879,10 @@ void print_help(int mode) {
" extensions available. On Solaris and IRIX if XFIXES
\n
"
" is not available, -overlay mode will be attempted.
\n
"
"
\n
"
"-cursor_drag Show cursor shape changes even when the mouse is being
\n
"
" dragged with a mouse button down. This is useful if you
\n
"
" want to be able to see Drag-and-Drop cursor icons, etc.
\n
"
"
\n
"
"-arrow n Choose an alternate
\"
arrow
\"
cursor from a set of
\n
"
" some common ones. n can be 1 to %d. Default is: %d
\n
"
" Ignored when in XFIXES cursor-grabbing mode.
\n
"
...
...
@@ -3133,6 +3137,8 @@ void print_help(int mode) {
" show_cursor enable showing a cursor.
\n
"
" noshow_cursor disable showing a cursor. (same as
\n
"
"
\"
nocursor
\"
)
\n
"
" cursor_drag enable cursor changes during drag.
\n
"
" nocursor_drag disable cursor changes during drag.
\n
"
" arrow:n set -arrow to alternate n.
\n
"
" xfixes enable xfixes cursor shape mode.
\n
"
" noxfixes disable xfixes cursor shape mode.
\n
"
...
...
@@ -3285,16 +3291,17 @@ void print_help(int mode) {
" listen lookup nolookup accept afteraccept gone shm
\n
"
" noshm flipbyteorder noflipbyteorder onetile noonetile
\n
"
" solid_color solid nosolid blackout xinerama noxinerama
\n
"
" xtrap noxtrap xrandr noxrandr xrandr_mode rotate padgeom
\n
"
" quiet q noquiet modtweak nomodtweak xkb noxkb capslock
\n
"
" nocapslock skip_lockkeys noskip_lockkeys skip_keycodes
\n
"
" sloppy_keys nosloppy_keys skip_dups noskip_dups
\n
"
" add_keysyms noadd_keysyms clear_mods noclear_mods
\n
"
" clear_keys noclear_keys remap repeat norepeat fb nofb
\n
"
" bell nobell sel nosel primary noprimary setprimary
\n
"
" nosetprimary clipboard noclipboard setclipboard
\n
"
" nosetclipboard seldir cursorshape nocursorshape
\n
"
" cursorpos nocursorpos cursor show_cursor noshow_cursor
\n
"
" xtrap noxtrap xrandr noxrandr xrandr_mode rotate
\n
"
" padgeom quiet q noquiet modtweak nomodtweak xkb noxkb
\n
"
" capslock nocapslock skip_lockkeys noskip_lockkeys
\n
"
" skip_keycodes sloppy_keys nosloppy_keys skip_dups
\n
"
" noskip_dups add_keysyms noadd_keysyms clear_mods
\n
"
" noclear_mods clear_keys noclear_keys remap repeat
\n
"
" norepeat fb nofb bell nobell sel nosel primary
\n
"
" noprimary setprimary nosetprimary clipboard noclipboard
\n
"
" setclipboard nosetclipboard seldir cursorshape
\n
"
" nocursorshape cursorpos nocursorpos cursor_drag
\n
"
" nocursor_drag cursor show_cursor noshow_cursor
\n
"
" nocursor arrow xfixes noxfixes xdamage noxdamage
\n
"
" xd_area xd_mem alphacut alphafrac alpharemove
\n
"
" noalpharemove alphablend noalphablend xwarppointer
\n
"
...
...
x11vnc/options.c
View file @
a5baf57b
...
...
@@ -158,6 +158,10 @@ int vnc_connect = 1; /* -vncconnect option */
int
show_cursor
=
1
;
/* show cursor shapes */
int
show_multiple_cursors
=
0
;
/* show X when on root background, etc */
char
*
multiple_cursors_mode
=
NULL
;
#ifndef CURSOR_DRAG
#define CURSOR_DRAG 0
#endif
int
cursor_drag_changes
=
CURSOR_DRAG
;
int
cursor_pos_updates
=
1
;
/* cursor position updates -cursorpos */
int
cursor_shape_updates
=
1
;
/* cursor shape updates -nocursorshape */
int
use_xwarppointer
=
0
;
/* use XWarpPointer instead of XTestFake... */
...
...
x11vnc/options.h
View file @
a5baf57b
...
...
@@ -133,6 +133,7 @@ extern int vnc_connect;
extern
int
show_cursor
;
extern
int
show_multiple_cursors
;
extern
char
*
multiple_cursors_mode
;
extern
int
cursor_drag_changes
;
extern
int
cursor_pos_updates
;
extern
int
cursor_shape_updates
;
extern
int
use_xwarppointer
;
...
...
x11vnc/remote.c
View file @
a5baf57b
...
...
@@ -2400,6 +2400,21 @@ char *process_remote_cmd(char *cmd, int stringonly) {
rfbLog
(
"remote_cmd: turning off cursorpos mode.
\n
"
);
cursor_pos_updates
=
0
;
}
else
if
(
!
strcmp
(
p
,
"cursor_drag"
))
{
if
(
query
)
{
snprintf
(
buf
,
bufn
,
"ans=%s:%d"
,
p
,
cursor_drag_changes
);
goto
qry
;
}
cursor_drag_changes
=
1
;
rfbLog
(
"remote_cmd: setting cursor_drag_changes: %d.
\n
"
,
cursor_drag_changes
);
}
else
if
(
!
strcmp
(
p
,
"nocursor_drag"
))
{
if
(
query
)
{
snprintf
(
buf
,
bufn
,
"ans=%s:%d"
,
p
,
!
cursor_drag_changes
);
goto
qry
;
}
cursor_drag_changes
=
0
;
rfbLog
(
"remote_cmd: setting cursor_drag_changes: %d.
\n
"
,
cursor_drag_changes
);
}
else
if
(
strstr
(
p
,
"cursor"
)
==
p
)
{
COLON_CHECK
(
"cursor:"
)
if
(
query
)
{
...
...
x11vnc/x11vnc.1
View file @
a5baf57b
...
...
@@ -2,7 +2,7 @@
.TH X11VNC "1" "October 2006" "x11vnc " "User Commands"
.SH NAME
x11vnc - allow VNC connections to real X11 displays
version: 0.8.3, lastmod: 2006-10-
07
version: 0.8.3, lastmod: 2006-10-
11
.SH SYNOPSIS
.B x11vnc
[OPTION]...
...
...
@@ -2196,6 +2196,12 @@ unless the display has overlay visuals or XFIXES
extensions available. On Solaris and IRIX if XFIXES
is not available, \fB-overlay\fR mode will be attempted.
.PP
\fB-cursor_drag\fR
.IP
Show cursor shape changes even when the mouse is being
dragged with a mouse button down. This is useful if you
want to be able to see Drag-and-Drop cursor icons, etc.
.PP
\fB-arrow\fR \fIn\fR
.IP
Choose an alternate "arrow" cursor from a set of
...
...
@@ -3729,6 +3735,10 @@ show_cursor enable showing a cursor.
noshow_cursor disable showing a cursor. (same as
"nocursor")
.IP
cursor_drag enable cursor changes during drag.
.IP
nocursor_drag disable cursor changes during drag.
.IP
arrow:n set \fB-arrow\fR to alternate n.
.IP
xfixes enable xfixes cursor shape mode.
...
...
@@ -4000,16 +4010,17 @@ unlock connect allowonce allow localhost nolocalhost
listen lookup nolookup accept afteraccept gone shm
noshm flipbyteorder noflipbyteorder onetile noonetile
solid_color solid nosolid blackout xinerama noxinerama
xtrap noxtrap xrandr noxrandr xrandr_mode rotate padgeom
quiet q noquiet modtweak nomodtweak xkb noxkb capslock
nocapslock skip_lockkeys noskip_lockkeys skip_keycodes
sloppy_keys nosloppy_keys skip_dups noskip_dups
add_keysyms noadd_keysyms clear_mods noclear_mods
clear_keys noclear_keys remap repeat norepeat fb nofb
bell nobell sel nosel primary noprimary setprimary
nosetprimary clipboard noclipboard setclipboard
nosetclipboard seldir cursorshape nocursorshape
cursorpos nocursorpos cursor show_cursor noshow_cursor
xtrap noxtrap xrandr noxrandr xrandr_mode rotate
padgeom quiet q noquiet modtweak nomodtweak xkb noxkb
capslock nocapslock skip_lockkeys noskip_lockkeys
skip_keycodes sloppy_keys nosloppy_keys skip_dups
noskip_dups add_keysyms noadd_keysyms clear_mods
noclear_mods clear_keys noclear_keys remap repeat
norepeat fb nofb bell nobell sel nosel primary
noprimary setprimary nosetprimary clipboard noclipboard
setclipboard nosetclipboard seldir cursorshape
nocursorshape cursorpos nocursorpos cursor_drag
nocursor_drag cursor show_cursor noshow_cursor
nocursor arrow xfixes noxfixes xdamage noxdamage
xd_area xd_mem alphacut alphafrac alpharemove
noalpharemove alphablend noalphablend xwarppointer
...
...
x11vnc/x11vnc.c
View file @
a5baf57b
...
...
@@ -2048,6 +2048,10 @@ int main(int argc, char* argv[]) {
}
else
if
(
!
strcmp
(
arg
,
"-nocursor"
))
{
multiple_cursors_mode
=
strdup
(
"none"
);
show_cursor
=
0
;
}
else
if
(
!
strcmp
(
arg
,
"-cursor_drag"
))
{
cursor_drag_changes
=
1
;
}
else
if
(
!
strcmp
(
arg
,
"-nocursor_drag"
))
{
cursor_drag_changes
=
0
;
}
else
if
(
!
strcmp
(
arg
,
"-arrow"
))
{
CHECK_ARGC
alt_arrow
=
atoi
(
argv
[
++
i
]);
...
...
x11vnc/x11vnc.h
View file @
a5baf57b
...
...
@@ -78,6 +78,7 @@
* -DPASSWD_REQUIRED=1 exit unless a password is supplied.
* -DPASSWD_UNLESS_NOPW=1 exit unless a password is supplied and no -nopw.
*
* -DCURSOR_DRAG=1 to have -cursor_drag as the default.
* -DWIREFRAME=0 to have -nowireframe as the default.
* -DWIREFRAME_COPYRECT=0 to have -nowirecopyrect as the default.
* -DWIREFRAME_PARMS=... set default -wirecopyrect parameters.
...
...
x11vnc/x11vnc_defs.c
View file @
a5baf57b
...
...
@@ -15,7 +15,7 @@ int xtrap_base_event_type = 0;
int
xdamage_base_event_type
=
0
;
/* date +'lastmod: %Y-%m-%d' */
char
lastmod
[]
=
"0.8.3 lastmod: 2006-10-
07
"
;
char
lastmod
[]
=
"0.8.3 lastmod: 2006-10-
11
"
;
/* 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