blob: a4faba899b8bcb3b5f23d3e47792bc63cbfe76be (
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
|
#ifndef X11HELPER_H_
#define X11HELPER_H_
#include <qdict.h>
#include <qstringlist.h>
struct RulesInfo {
QDict<char> models;
QDict<char> layouts;
QDict<char> options;
};
struct OldLayouts {
QStringList oldLayouts;
QStringList nonLatinLayouts;
};
class X11Helper
{
static bool m_layoutsClean;
public:
static const WId UNKNOWN_WINDOW_ID = (WId) 0;
static const QString X11_WIN_CLASS_ROOT;
static const QString X11_WIN_CLASS_UNKNOWN;
/**
* Tries to find X11 xkb config dir
*/
static const QString findX11Dir();
static const QString findXkbRulesFile(QString x11Dir, Display* dpy);
static QString getWindowClass(WId winId, Display* dpy);
static QStringList* getVariants(const QString& layout, const QString& x11Dir, bool oldLayouts=false);
static RulesInfo* loadRules(const QString& rulesFile, bool layoutsOnly=false);
static OldLayouts* loadOldLayouts(const QString& rulesFile);
static bool areLayoutsClean() { return m_layoutsClean; }
static bool areSingleGroupsSupported();
};
#endif /*X11HELPER_H_*/
|