diff options
Diffstat (limited to 'khotkeys/kcontrol/gesturerecorder.h')
-rw-r--r-- | khotkeys/kcontrol/gesturerecorder.h | 48 |
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..707243d81 --- /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 <qframe.h> +#include <qstring.h> + +#include <gestures.h> + +class QMouseEvent; + +namespace KHotKeys +{ + +class GestureRecorder : public QFrame + { + Q_OBJECT + + public: + GestureRecorder(QWidget *parent, const char *name); + ~GestureRecorder(); + + protected: + void mousePressEvent(QMouseEvent *); + void mouseReleaseEvent(QMouseEvent *); + void mouseMoveEvent(QMouseEvent *); + + signals: + void recorded(const QString &data); + + private: + bool _mouseButtonDown; + Stroke stroke; + }; + +} // namespace KHotKeys + +#endif |