QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
542 B

/*
SPDX-FileCopyrightText: 2010 Andriy Rysin <[email protected]>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef XKB_HELPER_H_
#define XKB_HELPER_H_
template<typename T>
class QList;
class LayoutUnit;
class QStringList;
class KeyboardConfig;
class XkbHelper
{
public:
static bool initializeKeyboardLayouts(KeyboardConfig &config);
static bool initializeKeyboardLayouts(const QList<LayoutUnit> &layouts);
static bool runConfigLayoutCommand(const QStringList &setxkbmapCommandArguments);
};
#endif /* XKB_HELPER_H_ */