2010-01-30 14:22:24 +01:00
|
|
|
/*
|
2013-06-02 17:39:05 +02:00
|
|
|
* Cocoa Application Event Handling
|
2010-01-30 14:22:24 +01:00
|
|
|
*
|
2013-06-02 17:39:05 +02:00
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
|
|
|
* mplayer2 is free software; you can redistribute it and/or modify
|
2010-01-30 14:22:24 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2013-06-02 17:39:05 +02:00
|
|
|
* mplayer2 is distributed in the hope that it will be useful,
|
2010-01-30 14:22:24 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2013-06-02 17:39:05 +02:00
|
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2010-01-30 14:22:24 +01:00
|
|
|
*/
|
|
|
|
|
2013-06-02 17:39:05 +02:00
|
|
|
#ifndef MACOSX_EVENTS_H
|
|
|
|
#define MACOSX_EVENTS_H
|
2013-08-06 22:41:30 +02:00
|
|
|
#include "mpvcore/input/keycodes.h"
|
2010-01-30 14:22:24 +01:00
|
|
|
|
2013-06-02 17:39:05 +02:00
|
|
|
void cocoa_put_key(int keycode);
|
2013-07-21 10:33:18 +02:00
|
|
|
void cocoa_put_key_with_modifiers(int keycode, int modifiers);
|
2013-06-04 22:12:23 +02:00
|
|
|
|
|
|
|
void cocoa_init_apple_remote(void);
|
|
|
|
void cocoa_uninit_apple_remote(void);
|
|
|
|
|
|
|
|
void cocoa_init_media_keys(void);
|
|
|
|
void cocoa_uninit_media_keys(void);
|
2010-01-30 14:22:24 +01:00
|
|
|
|
2013-06-02 17:39:05 +02:00
|
|
|
#endif
|