2 * Copyright (C) 2011-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
11 #include "threads/Thread.h"
12 #include "windowing/WinEvents.h"
13 #include "windowing/XBMC_events.h"
17 struct CWinEventsOSXImplWrapper
;
20 class CWinEventsOSX
: public IWinEvents
, public CThread
26 void MessagePush(XBMC_Event
* newEvent
);
28 size_t GetQueueSize();
30 void enableInputEvents();
31 void disableInputEvents();
33 void signalMouseEntered();
34 void signalMouseExited();
35 void SendInputEvent(NSEvent
* nsEvent
);
38 std::unique_ptr
<CWinEventsOSXImplWrapper
> m_eventsImplWrapper
;