summaryrefslogtreecommitdiffstats
path: root/src/DragWidget.cpp
blob: 395a56b719f8c15fe628a72e9dd5f61e93bd4b8f (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
#include "DragWidget.h"

DragWidget::DragWidget(TQWidget *parent, const char *name, WFlags f) : TQWidget(parent,name,f)
{
	dragP=TQPoint(0,0);
	drag=false;
	locked=false;
}

DragWidget::~DragWidget()
{
}

void DragWidget::mousePressEvent(TQMouseEvent *e)
{
	dragP=e->pos();
	gpress=e->globalPos();
	if (locked)
	{
		return;
	}
	drag=true;
}

void DragWidget::mouseReleaseEvent(TQMouseEvent *)
{
	drag=false;
}

void DragWidget::mouseMoveEvent(TQMouseEvent *e)
{
	if (!drag)
	{
		return;
	}
	TQPoint curr(e->globalPos().x()-dragP.x(),e->globalPos().y()-dragP.y());
	TQWidget::move(curr);
}

#include "DragWidget.moc"