summaryrefslogtreecommitdiffstats
path: root/input/event.c
Commit message (Collapse)AuthorAgeFilesLines
* input: use mpv_node parser for char** command parserswm42014-10-101-2/+4
| | | | Minor simplification, also drops some useless stuff.
* input: change mp_input_run_cmd signaturewm42014-01-041-2/+2
| | | | | | | | I don't like this function at all, but it's basically a trick to get the input's mp_log instance in a case the mp_input_parse_cmd_strv() is almost certainly not going to output anything. But still make it somewhat more consistent with mp_input_parse_cmd_strv() - why force the caller to always use MP_ON_OSD_AUTO?
* video/out: remove some code duplication between X11 and waylandwm42014-01-041-0/+24
| | | | | | Both X11 and Wayland support the same format for drag & drop operations (text/uri-list), and the code for that was copied from x11_common.c to wayland_common.c. Factor it out.
* input: move files drag and drop to a new event.c fileStefano Pigozzi2014-01-041-0/+50
event.c will be used to feed the input queue with 'global' events that don't mesh well with the usual check_events path in mpv.