summaryrefslogtreecommitdiffstats
path: root/input/event.c
Commit message (Collapse)AuthorAgeFilesLines
* player: rename and move find_subfiles.cwm42015-09-201-1/+1
| | | | | | This was in sub/, because the code used to be specific to subtitles. It was extended to automatically load external audio files too, and moving the file and renaming it was long overdue.
* input: add append argument to file drop eventKevin Mitchell2015-08-301-5/+7
| | | | | | This puts in place the machinery to merely append dropped file to the playlist instead of replacing the existing playlist. In this commit, all front-ends set this to false preserving the existing behaviour.
* 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.