summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope/regionwidget.h
blob: 5f2aaa18d8cdb3d8a42dbc1706e6e4659f911c62 (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
#ifndef REGIONWIDGET_H
#define REGIONWIDGET_H

#include <tqframe.h>

/**
 * show a widget with a field rectangle, and a mini-region inside
 * 
 * text boxes allow the region to be resized and moved, along with
 * click-n-drag
 **/
class RegionWidget : public TQFrame
{
Q_OBJECT
  
public:
	RegionWidget(TQWidget *parent);
	RegionWidget(const TQSize &viewsize, TQWidget *parent);
	RegionWidget(int x, int y, int w, int h, const TQSize &viewsize, 
	             TQWidget *parent);
	RegionWidget(const TQRect &region, const TQSize &viewsize, TQWidget *parent);
	
	~RegionWidget();
	
	TQRect region() const;
	
public slots:
	void setX(int x);
	void setY(int y);
	void setWidth(int w);
	void setHeight(int h);
	
	void setRegion(const TQRect &region);
	
	void setViewSize(const TQSize &size);

signals:
	void changed();
	void changed(int x, int y, int w, int h);
	void changed(const TQRect &region);

protected:
	virtual void moved(int x, int y);
	virtual void resized(int w, int h);
};


#endif