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.
38 lines
933 B
38 lines
933 B
#ifndef __EXTENSION_H__
|
|
#define __EXTENSION_H__
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
class XKBExtension
|
|
{
|
|
public:
|
|
XKBExtension(Display *display=NULL);
|
|
~XKBExtension();
|
|
bool init();
|
|
void reset();
|
|
|
|
static bool setXkbOptions(const QString& options, bool resetOldOptions);
|
|
bool setLayout(const QString& model,
|
|
const QString& layout, const QString& variant,
|
|
const QString& includeGroup, bool useCompiledLayouts=true);
|
|
bool setGroup(unsigned int group);
|
|
unsigned int getGroup() const;
|
|
|
|
private:
|
|
Display *m_dpy;
|
|
QString m_tempDir;
|
|
static QMap<QString, FILE*> fileCache;
|
|
|
|
bool setLayoutInternal(const QString& model,
|
|
const QString& layout, const QString& variant,
|
|
const QString& includeGroup);
|
|
bool compileCurrentLayout(const QString& layoutKey);
|
|
bool setCompiledLayout(const QString& layoutKey);
|
|
|
|
QString getPrecompiledLayoutFilename(const QString& layoutKey);
|
|
// void deletePrecompiledLayouts();
|
|
};
|
|
|
|
#endif
|