summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h
blob: d25583b52be2801d80bf9c2a928c709b808f381c (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
#ifndef _REPEATER_HANDLER_H_
#define _REPEATER_HANDLER_H_

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

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

	void setKeyRepeater(KeyRepeater* rep)
	{
		m_pRepeater = rep;
	}

	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;

	KeyRepeater* m_pRepeater;

	int m_code;
	bool m_enable;

};

#endif /* _REPEATER_HANDLER_H_ */