blob: e42de2c0e345323638078dc76e98effb5cee13da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/****************************************************************************
KHotKeys
Copyright (C) 2003 Mike Pilone <mpilone@slac.com>
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
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
|