Deskflow 1.24.0.365
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
DeskflowXkbKeyboard.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2012 - 2021 Symless Ltd.
4 * SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman
5 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
6 */
7
8#if WINAPI_XWINDOWS
9
10#pragma once
11
12#include <X11/XKBlib.h>
13#include <X11/extensions/XKBrules.h>
14
15namespace deskflow::linux {
16
17class DeskflowXkbKeyboard
18{
19 XkbRF_VarDefsRec m_data = {};
20
21public:
22 DeskflowXkbKeyboard();
23 DeskflowXkbKeyboard(const DeskflowXkbKeyboard &) = delete;
24 DeskflowXkbKeyboard &operator=(const DeskflowXkbKeyboard &) = delete;
25
26 const char *getLayout() const;
27 const char *getVariant() const;
28
29 ~DeskflowXkbKeyboard();
30};
31
32} // namespace deskflow::linux
33
34#endif // WINAPI_XWINDOWS