xbmc
WinEventsOSXImpl.h
1 /*
2  * Copyright (C) 2011-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "windowing/osx/WinEventsOSX.h"
12 
13 #import <CoreGraphics/CoreGraphics.h>
14 #import <Foundation/Foundation.h>
15 
16 @interface CWinEventsOSXImpl : NSObject
17 
18 - (void)MessagePush:(XBMC_Event*)newEvent;
19 - (size_t)GetQueueSize;
20 - (bool)MessagePump;
21 - (void)enableInputEvents;
22 - (void)disableInputEvents;
23 - (XBMC_Event)keyPressEvent:(CGEventRef*)event;
24 
25 @end
Definition: WinEventsOSXImpl.h:16
Definition: XBMC_events.h:109