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
3ab7d5d7
Commit
3ab7d5d7
authored
Mar 06, 2009
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SDLvncviewer: enable key repeat
Signed-off-by:
Johannes Schindelin
<
johannes.schindelin@gmx.de
>
parent
2742c957
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
ChangeLog
ChangeLog
+3
-0
TODO
TODO
+0
-1
SDLvncviewer.c
client_examples/SDLvncviewer.c
+2
-0
No files found.
ChangeLog
View file @
3ab7d5d7
2009-03-06 Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
* client_examples/SDLvncviewer.c: enable key repeat
2009-02-03 Mike Frysinger <vapier@gentoo.org>
* autogen.sh, configure.ac, **/Makefile.am: major automake cleanups
...
...
TODO
View file @
3ab7d5d7
...
...
@@ -5,7 +5,6 @@ make SDLvncviewer more versatile
- Send modifiers key-up on leave focus,
- test for missing keys (especially "[]{}" with ./examples/mac),
- map Apple/Linux/Windows keys onto each other,
- keyboard repeat,
- introduce scrollbars,
- handle selection
style fixes: use Linux' coding guidelines & ANSIfy tightvnc-filetransfer:
...
...
client_examples/SDLvncviewer.c
View file @
3ab7d5d7
...
...
@@ -242,6 +242,8 @@ int main(int argc,char** argv) {
SDL_Init
(
SDL_INIT_VIDEO
|
SDL_INIT_NOPARACHUTE
);
SDL_EnableUNICODE
(
1
);
SDL_EnableKeyRepeat
(
SDL_DEFAULT_REPEAT_DELAY
,
SDL_DEFAULT_REPEAT_INTERVAL
);
/* 16-bit: cl=rfbGetClient(5,3,2); */
cl
=
rfbGetClient
(
8
,
3
,
4
);
...
...
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