summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h
Unidiff
Diffstat (limited to 'noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h b/noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h
new file mode 100644
index 0000000..d25583b
--- a/dev/null
+++ b/noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h
@@ -0,0 +1,39 @@
1#ifndef _REPEATER_HANDLER_H_
2#define _REPEATER_HANDLER_H_
3
4#include <qstring.h>
5#include <qvaluelist.h>
6#include <qxml.h>
7#include "KeyRepeater.h"
8#include "KeyNames.h"
9#include "KHUtil.h"
10
11class RepeaterHandler : public QXmlDefaultHandler
12{
13public:
14 void dispose(QXmlReader* parser, QXmlContentHandler* parent);
15
16 void setKeyRepeater(KeyRepeater* rep)
17 {
18 m_pRepeater = rep;
19 }
20
21 bool startElement(const QString& namespaceURI,
22 const QString& localName,
23 const QString& qName,
24 const QXmlAttributes& atts);
25 bool endElement(const QString& namespaceURI,
26 const QString& localName,
27 const QString& qName);
28private:
29 QXmlContentHandler* m_parent;
30 QXmlReader* m_parser;
31
32 KeyRepeater* m_pRepeater;
33
34 int m_code;
35 bool m_enable;
36
37};
38
39#endif /* _REPEATER_HANDLER_H_ */