blob: b2111dabbfc025ab840ab7be31019e07e98ac6e9 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
* 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 "threads/SystemClock.h"
#include "windowing/WinEvents.h"
#include "windowing/X11/WinSystemX11.h"
#include <clocale>
#include <map>
#include <X11/Xlib.h>
namespace KODI
{
namespace WINDOWING
{
namespace X11
{
class CWinEventsX11 : public IWinEvents
{
public:
CWinEventsX11(CWinSystemX11& winSystem);
~CWinEventsX11() override;
bool MessagePump() override;
bool Init(Display *dpy, Window win);
void Quit();
bool HasStructureChanged();
void PendingResize(int width, int height);
void SetXRRFailSafeTimer(std::chrono::milliseconds duration);
protected:
XBMCKey LookupXbmcKeySym(KeySym keysym);
bool ProcessKey(XBMC_Event &event);
Display *m_display = nullptr;
Window m_window = 0;
Atom m_wmDeleteMessage;
char *m_keybuf = nullptr;
size_t m_keybuf_len = 0;
XIM m_xim = nullptr;
XIC m_xic = nullptr;
std::map<uint32_t,uint32_t> m_symLookupTable;
int m_keymodState;
bool m_structureChanged;
int m_RREventBase;
XbmcThreads::EndTime<> m_xrrFailSafeTimer;
bool m_xrrEventPending;
CWinSystemX11& m_winSystem;
};
}
}
}
|