aboutsummaryrefslogtreecommitdiffhomepage
path: root/osdep/macosx_events_objc.h
Commit message (Collapse)AuthorAge
* osx: code cleanups and cosmetic fixesGravatar Akemi2018-01-20
|
* osx: fix media keys input when other Apps steal the priorityGravatar Akemi2017-09-07
| | | | | | | | | | | other Apps do the same as mpv and tap into the global event chain. events that are handled are not being propagated down the event chain. that can lead to mpv not getting any media key events anymore when they are held back by other Apps. we will just move mpv back to the top of the event list when mpv is refocused and is not at the top of the list any more. Fixes #4834
* osx: change license of OSX and cocoa files to LGPLGravatar wm42017-06-24
| | | | All authors of the current code have agreed.
* osx: fix key input in certain circumstancesGravatar Akemi2017-03-26
| | | | | | | | | | | | | for a reason i can just assume some key events can vanish from the event chain and mpv seems unresponsive. after quite some testing i could confirm that the events are present at the first entry point of the event chain, the sendEvent method of the Application, and that they vanish at a point afterwards. now we use that entry point to grab keyDown and keyUp events. we also stop propagating those key events to prevent the no key input' error sound. if we ever need the key events somewhere down the event chain we need to start propagating them again. though this is not necessary currently.
* osx: initial Touch Bar supportGravatar Akemi2017-03-26
|
* osx: never expose input_ctx from EventsResponderGravatar wm42015-05-26
| | | | Keep it internal, so we can synchronize access to it properly.
* cocoa: move handleFilesArray: to macosx_eventsGravatar FRAU KOUJIRO2014-08-06
|
* cocoa: sync inputContext inside EventsResponderGravatar FRAU KOUJIRO2014-08-06
|
* cocoa: decouple events from application somewhatGravatar FRAU KOUJIRO2014-08-06