summaryrefslogtreecommitdiffstats
path: root/mpvcore/input/keycodes.h
Commit message (Collapse)AuthorAgeFilesLines
* Move mpvcore/input/ to input/wm42013-12-171-254/+0
|
* osx: use MP_KEY_* instead of MK_* for media keysStefano Pigozzi2013-09-011-6/+0
| | | | | In 213ad5d6c I added `MK_*` key bindings overlooking the fact that mpv already has `MP_KEY_*` for media keys.
* input: add some more X11 multimedia/internet keyswm42013-09-011-1/+7
| | | | | | | | These keys can be found on various "multimedia" and "internet" keyboard. X defines many keycodes, so I'm not adding all, just what I found on my own keyboard. Other key codes can be added on request.
* keycodes: cosmetics: align indentationwm42013-09-011-113/+113
|
* input: add support for precise scroll axesAlexander Preisinger2013-08-071-0/+7
| | | | | | | | | | | | | | | Support horizontal and vertical axes of input devices. If the input device support precise scrolling with an input value then it should first be scaled to a standard multiplier, where 1.0 is the default. The multiplier will then applied to the following commands if possible: * MP_CMD_SEEK * MP_CMD_SPEED_MULT * MP_CMD_ADD All other commands will triggered on every axis event, without change the values specified in the config file.
* core: move contents to mpvcore (1/2)Stefano Pigozzi2013-08-061-0/+247
core is used in many unix systems for core dumps. For that reason some tools work under the assumption that the file is indeed a core dump (for example autoconf does this). This commit just renames the files. The following one will change all the includes to fix compilation. This is done this way because git has a easier time tracing file changes if there is a pure rename commit.