summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/config/ModifiersHandler.h
blob: e2d878523b0aabeff545e9caeb15016d8be1be0e (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
47
48
#ifndef _MODIFIERS_HANDLER_H_
#define _MODIFIERS_HANDLER_H_

#include <qstring.h>
#include <qvaluelist.h>
#include <qxml.h>
#include "KeyModifiers.h"
#include "KeyMappings.h"
#include "KeyNames.h"
#include "KHUtil.h"

class ModifiersHandler : public QXmlDefaultHandler
{
public:
	void dispose(QXmlReader* parser, QXmlContentHandler* parent);

	void setKeyModifiers(KeyModifiers* mod)
	{
		m_pModifiers = mod;
	}
	void setKeyMappings(KeyMappings* map)
	{
		m_pMappings = map;
	}

	bool startElement(const QString& namespaceURI,
		const QString& localName,
		const QString& qName,
		const QXmlAttributes& atts);
	bool endElement(const QString& namespaceURI,
		const QString& localName,
		const QString& qName);
private:
	QXmlContentHandler* m_parent;
	QXmlReader* m_parser;

	KeyModifiers* m_pModifiers;
	KeyMappings* m_pMappings;

	QString m_type;
	int m_code;
	int m_mask;
	QValueList<int> m_release;
	bool m_mapping;
	bool m_toggle;
};

#endif /* _MODIFIERS_HANDLER_H_ */