Initial commit.
This commit is contained in:
commit
59c6161fdb
134 changed files with 4751 additions and 0 deletions
14
src/windows/ui_interfaces/x11/XcbKeyboard.h
Normal file
14
src/windows/ui_interfaces/x11/XcbKeyboard.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
#include "Keyboard.h"
|
||||
|
||||
class XcbKeyboard : public Keyboard
|
||||
{
|
||||
public:
|
||||
XcbKeyboard();
|
||||
|
||||
static std::shared_ptr<XcbKeyboard> Create();
|
||||
|
||||
std::string GetKeyString(KeyCode keyCode) override;
|
||||
};
|
||||
|
||||
using XcbKeyboardPtr = std::shared_ptr<XcbKeyboard>;
|
Loading…
Add table
Add a link
Reference in a new issue