summaryrefslogtreecommitdiff
path: root/core/settings/button/remapdlg.h
Unidiff
Diffstat (limited to 'core/settings/button/remapdlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/button/remapdlg.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/core/settings/button/remapdlg.h b/core/settings/button/remapdlg.h
new file mode 100644
index 0000000..8c9cc02
--- a/dev/null
+++ b/core/settings/button/remapdlg.h
@@ -0,0 +1,35 @@
1#ifndef __REMAPDLG_H__
2#define __REMAPDLG_H__
3
4#include <opie/odevicebutton.h>
5
6#include "remapdlgbase.h"
7
8class QListViewItem;
9
10
11class RemapDlg : public RemapDlgBase {
12 Q_OBJECT
13
14public:
15 RemapDlg ( const Opie::ODeviceButton *b, bool hold, QWidget* parent = 0, const char* name = 0 );
16 ~RemapDlg ( );
17
18 Opie::OQCopMessage message ( );
19
20public slots:
21 virtual void itemChanged ( QListViewItem * );
22 virtual void textChanged ( const QString & );
23
24private:
25 Opie::OQCopMessage m_msg;
26 Opie::OQCopMessage m_msg_preset;
27
28 QListViewItem *m_current;
29
30 QListViewItem *m_map_none;
31 QListViewItem *m_map_preset;
32 QListViewItem *m_map_custom;
33};
34
35#endif