blob: 466c755801479f2f90f85aa79bd57c767c3bc381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "input/touch/TouchTypes.h"
#include "windowing/WinEvents.h"
class CGenericTouchSwipeDetector;
class CWinEventsWin32 : public IWinEvents
{
public:
bool MessagePump() override;
static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
private:
static void RegisterDeviceInterfaceToHwnd(GUID InterfaceClassGuid, HWND hWnd, HDEVNOTIFY *hDeviceNotify);
static void WindowFromScreenCoords(HWND hWnd, POINT *point);
static void OnGestureNotify(HWND hWnd, LPARAM lParam);
static void OnGesture(HWND hWnd, LPARAM lParam);
static int m_originalZoomDistance;
static Pointer m_touchPointer;
static CGenericTouchSwipeDetector *m_touchSwipeDetector;
};
|