2010-01-30 13:22:24 +00:00
|
|
|
/*
|
2013-06-02 15:39:05 +00:00
|
|
|
* Cocoa Application Event Handling
|
2010-01-30 13:22:24 +00:00
|
|
|
*
|
2013-06-02 15:39:05 +00:00
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
|
|
|
* mplayer2 is free software; you can redistribute it and/or modify
|
2010-01-30 13:22:24 +00: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 15:39:05 +00:00
|
|
|
* mplayer2 is distributed in the hope that it will be useful,
|
2010-01-30 13:22:24 +00: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 15:39:05 +00:00
|
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2010-01-30 13:22:24 +00:00
|
|
|
*/
|
|
|
|
|
2013-06-02 15:39:05 +00:00
|
|
|
#ifndef MACOSX_EVENTS_H
|
|
|
|
#define MACOSX_EVENTS_H
|
2013-12-17 00:23:09 +00:00
|
|
|
#include "input/keycodes.h"
|
2010-01-30 13:22:24 +00:00
|
|
|
|
2014-04-16 02:33:58 +00:00
|
|
|
struct input_ctx;
|
|
|
|
|
2013-06-02 15:39:05 +00:00
|
|
|
void cocoa_put_key(int keycode);
|
2013-07-21 08:33:18 +00:00
|
|
|
void cocoa_put_key_with_modifiers(int keycode, int modifiers);
|
2013-06-04 20:12:23 +00: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 13:22:24 +00:00
|
|
|
|
2014-04-16 02:33:58 +00:00
|
|
|
void cocoa_set_input_context(struct input_ctx *input_context);
|
|
|
|
|
2013-06-02 15:39:05 +00:00
|
|
|
#endif
|