summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/config/KeycfgReader.h
blob: 8624a013a420791b4d25355ba6b84b4f7e021510 (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
42
43
44
45
46
#ifndef _KEYCFG_READER_H_
#define _KEYCFG_READER_H_

#include <stdlib.h>
#include <qxml.h>
#include <qstring.h>
#include <qdir.h>
#include "KeycfgHandler.h"
#include "KeycfgErrorHandler.h"
#include "KeyNames.h"
#include "ConfigEx.h"

class KeycfgReader
{
public:
	KeycfgReader();
	~KeycfgReader();

	bool load();
	bool load(const QString& path);

	inline void setKeyModifiers(KeyModifiers* mod)
	{
		m_pModifiers = mod;
	}
	inline void setKeyMappings(KeyMappings* map)
	{
		m_pMappings = map;
	}
	inline void setKeyExtensions(KeyExtensions* ext)
	{
		m_pExtensions = ext;
	}
	inline void setKeyRepeater(KeyRepeater* rep)
	{
		m_pRepeater = rep;
	}

private:
	KeyModifiers* m_pModifiers;
	KeyMappings* m_pMappings;
	KeyExtensions* m_pExtensions;
	KeyRepeater* m_pRepeater;
};

#endif /* _KEYCFG_READER_H_ */