summaryrefslogtreecommitdiff
path: root/noncore/apps/keyz-cfg/zkbnames.h
blob: 58462ff0233d0b9090225053e008522019765092 (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
#ifndef ZKBNAMES_H
#define ZKBNAMES_H

#ifdef USE_ZKB_NAMES

#include <qstring.h>

class KeyNames {
public:
	static int find(const QString& key);
	static const QString& find(int);
};

class KeycodeNames {
public:
	static int find(const QString& key);
	static const QString& find(int);
};

class ModifierNames {
public:
	static int find(const QString& key);
	static const QString& find(int);
};

#endif
#endif