xrdp/genkeymap
Pavel Roskin 00e70a5c54 Use standard autotools means to detect X11
Use AC_PATH_XTRA to search for X11 in configure.ac. In Makefiles, add
X_CFLAGS to AM_CFLAGS for the source compilation. Add X_LIBS to LDFLAGS.
Add X_PRE_LIBS and X_EXTRA_LIBS to LDADD.

With this patch, X Windows system is correctly detected on Mac OS X.
2016-01-30 17:18:52 -08:00
..
Makefile.am Use standard autotools means to detect X11 2016-01-30 17:18:52 -08:00
dump-keymaps.sh Add Japanese keymap 2014-12-01 16:32:18 +09:00
evdev-map.c Generate correct xfree86 keymaps when evdev is used 2014-10-27 12:39:05 +01:00
genkeymap.c Merge pull request #178 from mgorny/altgr-keymap 2014-11-08 21:25:40 -08:00
readme.txt keymap: support combining shift & capslock with altgr 2014-10-24 12:02:00 +02:00

readme.txt

Creating a new keymap file.
---------------------------

The names of the files are of the format;

km-xxxx.ini

where the xxxx is replaced by the hex number of the layout of interest.

The files have 8 sections;

[noshift], [shift], [altgr], [shiftaltgr], [capslock], [capslockaltgr],
[shiftcapslock], [shiftcapslockaltgr]

In each section there are multiple lines for each key.

An example line looks like;

Key10=49:49

In this line, 10 is the X11 scancode, the first 49 is the keysym value,
the second 49 if the unicode value of the key.  This is the definition
for the 'noshift' '1' key on a en-us keyboard.  In this case, the keysym
and the unicode value are the same.

Here is an example where they are not;

This is the definition for the backspace key;
Key22=65288:8

And this is the star on the keypad;
Key63=65450:42

To create a new file run "xrdp-genkeymap <filename>"

Example: ./xrdp-genkeymap /etc/xrdp/km-0409.ini

Note: You need to have enough rights to be able to write to the
/etc/xrdp directory.

Alternatively, create the keymap file in a directory of your choice, then
copy or move it over to /etc/xrdp using sudo/su.