summaryrefslogtreecommitdiffstats
path: root/src/DragWidget.h
blob: 0b2e9882e94ea2dcfc165cc9be9a0268b9d5cc37 (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
#ifndef KVKBDDRAGWIDGET_H
#define KVKBDDRAGWIDGET_H
#include <tqwidget.h>
#include <tqpoint.h>
#include <tqevent.h>

class DragWidget : public TQWidget
{
Q_OBJECT
  
public:
	DragWidget(TQWidget *parent=0, const char *name="", WFlags f=0);
	virtual ~DragWidget();

private:
	bool drag;

protected:
	void mouseMoveEvent ( TQMouseEvent * e );
	void mousePressEvent ( TQMouseEvent * e );
	void mouseReleaseEvent ( TQMouseEvent * e );
	TQPoint dragP;
	TQPoint gpress;
	bool locked;
};

#endif