summaryrefslogtreecommitdiffstats
path: root/khotkeys/kcontrol/gesturerecorder.h
diff options
context:
space:
mode:
Diffstat (limited to 'khotkeys/kcontrol/gesturerecorder.h')
-rw-r--r--khotkeys/kcontrol/gesturerecorder.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/khotkeys/kcontrol/gesturerecorder.h b/khotkeys/kcontrol/gesturerecorder.h
new file mode 100644
index 000000000..e42de2c0e
--- /dev/null
+++ b/khotkeys/kcontrol/gesturerecorder.h
@@ -0,0 +1,48 @@
+/****************************************************************************
+
+ KHotKeys
+
+ Copyright (C) 2003 Mike Pilone <[email protected]>
+ Copyright (C) 2003 Lubos Lunak <[email protected]>
+
+ Distributed under the terms of the GNU General Public License version 2.
+
+****************************************************************************/
+
+#ifndef GESTURE_RECORDER_H
+#define GESTURE_RECORDER_H
+
+#include <tqframe.h>
+#include <tqstring.h>
+
+#include <gestures.h>
+
+class TQMouseEvent;
+
+namespace KHotKeys
+{
+
+class GestureRecorder : public TQFrame
+ {
+ Q_OBJECT
+
+ public:
+ GestureRecorder(TQWidget *parent, const char *name);
+ ~GestureRecorder();
+
+ protected:
+ void mousePressEvent(TQMouseEvent *);
+ void mouseReleaseEvent(TQMouseEvent *);
+ void mouseMoveEvent(TQMouseEvent *);
+
+ signals:
+ void recorded(const TQString &data);
+
+ private:
+ bool _mouseButtonDown;
+ Stroke stroke;
+ };
+
+} // namespace KHotKeys
+
+#endif