- actkbd - A keyboard shortcut daemon
actkbd is a simple daemon that binds actions to keyboard events. It recognises key combinations and can handle press, repeat and release events.
in Software > Linux > Keyboard with keyboard linux
- Alt + CHTN for arrow key movement, XKB
Re pressing <alt>C and sending <up> using XKB. The problem was that xkb sent <alt><up> instead, and a work-around is described.
in Software > Linux > Keyboard with keyboard linux
- ComboBox Controls
Example of building combo box. The interest wrt the keyboard is that it shows how to get (actually, set, but see EM_GETSEL) the slxn. (But where does hwndEdit get set? It gets called by SendMessage(), but it's unclear where it comes from. See bookmark 'Using Windows Procedures' for one possibility.)
in Software > Windows > Microsoft > Keyboard with keyboard selection
- Custom Keyboard in Linux/X11
Custom Keyboard in Linux/X11
in Software > Linux > Keyboard with keyboard linux by 2 users
- EM_GETSEL
The EM_GETSEL message retrieves the starting and ending character positions of the current selection in an edit control. Use to tell whether there is a slxn.
in Software > Windows > Microsoft > Keyboard with getselection keyboard
- Extending the X keyboard map with xkb
Tutorial: Extending the X keyboard map with xkb
in Software > Linux > Keyboard with keyboard linux
- How to get special keys to work
See at bottom re "Redirecting XF86Back/XF86Forward"
in Software > Linux > Keyboard with keyboard linux by 3 users
- http://www.cl.cam.ac.uk/~mgk25/ucs/keysyms.txt
Mapping of X11 keysyms to ISO 10646 / Unicode (includes what's in keysymdef.h)
in Software > Linux > Keyboard with keyboard linux
- International Computing by Language
Links to Penn State pages describing scripts and their implementations in Unicode, keyboard input tools, etc., for a wide variety of scripts.
in Software > Internationalization with keyboard languages scripts
- Ivan Pascal's X Keyboard Extension
Extensive discussion of X Keyboard Extension (XKB).
in Software > Linux > Keyboard with keyboard linux
- Keyboard Input
Overview of keyboard input processing
in Software > Windows > Microsoft > Keyboard with keyboard
- Keyboard Interrupt Handlers
This code binds itself to IRQ 1, which is the IRQ of the keyboard controlled under Intel architectures. Then, when it receives a keyboard interrupt, it reads the keyboard's status (that's the purpose of the inb(0x64)) and the scan code, which is the value returned by the keyboard. Then, as soon as the kernel thinks it's feasible, it runs got_char which gives the code of the key used (the first seven bits of the scan code) and whether it has been pressed (if the 8th bit is zero) or released (if it's one).
in Software > Linux > Keyboard with keyboard linuc
- Keyboard Layout Manager
in Software > Windows > Microsoft > Keyboard with keyboard layout manager microsoft software windows
- Keyboard Mapping for Linux
Could this be used to remap control keys to cursor keys? With ^Q as a toggle, perhaps using 'groups'?
in Software > Linux > Keyboard with keyboard linux mapper by 2 users
- Keycode Table
Table of keycodes (and scan codes) for Linux
in Software > Linux > Keyboard with keyboard linux
- keymaps
Can use AltGr_Lock for ^Q? But apparently only works for console, not X. But can xmodmap use AltGr_Lock?
in Software > Linux > Keyboard with keyboard linux
- keysymdef.h
Version of keysymdef.h as of 1999
in Software > Linux > Keyboard with keyboard linux
- KeyTweak
remap the Windows keyboard with KeyTweak
in Software > Windows > Microsoft > Keyboard with keyboard
- LinEAK project
Keyboard remapper for Linux, might be adaptable. Project seems dormant, but files are still there.
in Software > Linux with keyboard linux
- Linux Device Drivers
On-line free book from O'Reilly on writing device drivers under Linux.
in Software > Linux > Keyboard with keyboard linux
Next »
keyboard from all users