summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h
authoralwin <alwin>2005-02-28 09:40:30 (UTC)
committer alwin <alwin>2005-02-28 09:40:30 (UTC)
commit2b64a84d39eeed5681d0ee5068c7d11a01527750 (patch) (unidiff)
treec8693340dbc5ef5e2f9afa90b690829ddff2c4bd /noncore/applets/keyhelper/keyhelperapplet/config/RepeaterHandler.h
parent61fa699140c5efbb6ba0bf2a62f7e8fbf62976be (diff)
downloadopie-2b64a84d39eeed5681d0ee5068c7d11a01527750.zip
opie-2b64a84d39eeed5681d0ee5068c7d11a01527750.tar.gz
opie-2b64a84d39eeed5681d0ee5068c7d11a01527750.tar.bz2
other keymapping tool - not working this moment, I have to check it out
- the reason is that the config file is somewhat easier to understand than from zkbapplet and has a nice config tool. Please don't put it into any repositories this moment.
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_ */